@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;600;700;800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
/*======================================
  RESUME TYPOGRAPHY SYSTEM
======================================*/
/* ==============================
   Resume Design Tokens
============================== */
:root {
  --resume-heading: #11284b;
  --resume-text: #374151;
  --resume-muted: #6b7280;
  --resume-title-size: 1.1rem;
  --resume-subtitle-size: 0.92rem;
  --resume-meta-size: 0.74rem;
  --resume-body-size: 0.9rem;
  --resume-title-weight: 700;
  --resume-subtitle-weight: 500;
  --resume-meta-weight: 500;
  --resume-body-weight: 400;
  --resume-space-xs: 0.25rem;
  --resume-space-sm: 0.45rem;
  --resume-space-md: 0.8rem;
  --resume-space-lg: 1.4rem;
}

:root {
  /* Font Family */
  --resume-font: "Inter", "Segoe UI", sans-serif;
  /* Font Sizes */
  --fs-name: 1.625rem; /* 26px */
  --fs-title: 0.75rem; /* 12px */
  --fs-section: 0.875rem; /* 14px */
  --fs-heading: 0.75rem; /* 12px */
  --fs-subheading: 0.6875rem; /* 11px */
  --fs-body: 0.625rem; /* 10px */
  --fs-meta: 0.5625rem; /* 9px */
  /* Font Weights */
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
}

:root {
  --clr-blue: #1a91f0;
  --clr-blue-mid: #1170cd;
  --clr-blue-dark: #1a1c6a;
  --clr-white: #fff;
  --clr-bright: #eff2f9;
  --clr-dark: #1e2532;
  --clr-black: #000;
  --clr-grey: #656e83;
  --clr-green: #084c41;
  --clr-primary-gradient: linear-gradient(135deg, #1a91f0, #1170cd);
  --clr-secondary-gradient: linear-gradient(135deg, #ff9a9e, #fad0c4);
  --font-poppins: "Poppins", sans-serif;
  --font-manrope: "Manrope", sans-serif;
  --transition: all 300ms ease-in-out;
  --box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  font-size: 10px;
}

body {
  font-size: 1.6rem;
  font-family: var(--font-poppins);
  color: var(--clr-dark);
  overflow-x: hidden;
}

body::-webkit-scrollbar {
  display: none;
}

/* Chrome, Edge, Safari */
button,
img,
a {
  border: none;
  background: none;
  outline: none;
  text-decoration: none;
  cursor: pointer;
}

button,
a {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 4px;
  transition: var(--transition);
  font-family: var(--font-poppins);
}

img {
  max-width: 100%;
  display: block;
  transition: transform 0.5s ease;
}

img:hover {
  transform: scale(1.05);
}

a:hover,
button:hover {
  transform: translateY(-2px);
}

/* Text Styles */
.text-blue {
  color: var(--clr-blue);
}

.text-blue-mid {
  color: var(--clr-blue-mid);
}

.text-blue-dark {
  color: var(--clr-blue-dark);
}

.text-bright {
  color: var(--clr-bright);
}

.text-dark {
  color: var(--clr-dark);
}

.text-grey {
  color: var(--clr-grey);
}

.text-white {
  color: var(--clr-white);
}

/* Backgrounds */
.bg-primary {
  background: var(--clr-primary-gradient);
}

.bg-secondary {
  background: var(--clr-secondary-gradient);
}

.bg-dark {
  background-color: var(--clr-dark);
}

.bg-bright {
  background-color: var(--clr-bright);
}

.bg-white {
  background: var(--clr-white);
}

.bg-black {
  background-color: var(--clr-black);
}

.bg-green {
  background-color: var(--clr-green);
}

.text-center {
  text-align: center;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-lowercase {
  text-transform: lowercase;
}

.text-capitalize {
  text-transform: capitalize;
}

.fw-2 {
  font-weight: 200;
}

.fw-3 {
  font-weight: 300;
}

.fw-4 {
  font-weight: 400;
}

.fw-5 {
  font-weight: 500;
}

.fw-6 {
  font-weight: 600;
}

.fw-7 {
  font-weight: 700;
}

.fw-8 {
  font-weight: 800;
}

.fs-14 {
  font-size: 1.4rem;
}

.fs-18 {
  font-size: 1.8rem;
}

.fs-24 {
  font-size: 2.4rem;
}

.fs-37 {
  font-size: 3.7rem;
}

.ls-1 {
  letter-spacing: 0.1rem;
}

.ls-2 {
  letter-spacing: 0.2rem;
}

/* Utility Classes */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.6rem;
}

.box-shadow {
  box-shadow: var(--box-shadow);
}

.radius-4 {
  border-radius: 4px;
}

.transition {
  transition: var(--transition);
}

/* ===========================
   Navbar
=========================== */
.navbar {
  height: 80px;
  display: flex;
  align-items: center;
  background: #eff6f7;
  box-shadow: 0 8px 30px rgba(15, 77, 67, 0.04);
  border-bottom: 1px solid rgba(15, 77, 67, 0.05);
  position: relative;
  z-index: 100;
  animation: slideIn 1s ease-in-out;
}
.navbar .container {
  width: 100%;
  max-width: 100%;
  padding-inline: 42px;
}
.navbar .navbar-content {
  width: 100%;
}
@media screen and (max-width: 1000px) {
  .navbar .container {
    padding-inline: 28px;
  }
}

.brand-and-toggler {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 90px;
  width: 100%;
}

/* ===========================
   Center Title
=========================== */
.text-uppercase {
  grid-column: 2;
  justify-self: center;
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1.1;
  color: var(--clr-green);
  transition: color 0.25s ease;
}
.text-uppercase span {
  color: #6bb4a9;
  font-weight: 650;
}
.text-uppercase:hover {
  color: #2c5751;
}
.text-uppercase:hover span {
  color: #4fb894;
}
@media screen and (max-width: 1000px) {
  .text-uppercase {
    font-size: 16px;
    letter-spacing: 0.8px;
  }
}

/* ===========================
   Right Brand
=========================== */
.navbar .navbar-brand {
  grid-column: 3;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.navbar .navbar-brand img {
  width: 35px;
}
@media screen and (max-width: 1000px) {
  .navbar .navbar-brand img {
    display: block;
    width: 32px;
  }
}

.navbar .navbar-brand span {
  font-size: 17px;
  font-weight: 500;
  color: rgb(70, 60, 0);
  animation: fadeIn 1.5s ease-in-out;
}
@media screen and (max-width: 1000px) {
  .navbar .navbar-brand span {
    display: none;
  }
}

/* ===========================
   Left Spinner
=========================== */
.brand-and-toggler .spinner {
  grid-column: 1;
  justify-self: start;
  --size: 17px;
  --first-block-clr: #005bba;
  --second-block-clr: #fed500;
  width: 37px;
  height: 37px;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .brand-and-toggler .spinner {
    display: none;
  }
}

.spinner::before,
.spinner::after {
  content: "";
  position: absolute;
  box-sizing: border-box;
  width: var(--size);
  height: var(--size);
  left: 50%;
  top: 30%;
  background: var(--first-block-clr);
  animation: up 2.4s cubic-bezier(0, 0, 0.24, 1.21) infinite;
}

.spinner::after {
  background: var(--second-block-clr);
  left: calc(50% - var(--size));
  top: calc(50% - var(--size));
  animation: down 2.4s cubic-bezier(0, 0, 0.24, 1.21) infinite;
}

/* ===========================
   Animations
=========================== */
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes up {
  0%, 100% {
    transform: none;
  }
  25% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(-100%) translateY(-100%);
  }
  75% {
    transform: translateY(-100%);
  }
}
@keyframes down {
  0%, 100% {
    transform: none;
  }
  25% {
    transform: translateX(100%);
  }
  50% {
    transform: translateX(100%) translateY(100%);
  }
  75% {
    transform: translateY(100%);
  }
}
/* resume page */
#about-sc {
  padding: 64px 0;
  animation: fadeInUp 1s ease-in-out;
  background: radial-gradient(circle at 14% 18%, rgba(152, 220, 196, 0.22) 0%, transparent 30%), radial-gradient(circle at 88% 76%, rgba(194, 233, 221, 0.18) 0%, transparent 32%), linear-gradient(180deg, #edf8f4 0%, #f5fbf9 48%, #eef8f5 100%);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.cv-form-row-title {
  background: #183a4a;
  padding: 0.8rem 1.6rem;
  margin-bottom: 2rem;
  border-radius: 10px;
  animation: slideInLeft 1s ease-in-out;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.cv-form-row-title h3 {
  color: var(--clr-white);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 1.7rem;
}

.cv-form-blk {
  margin: 3rem 0;
}

.cv-form-row {
  background: linear-gradient(180deg, #fcfbf8 0%, #f7f5f1 100%);
  padding: 3rem 2rem 0 2rem;
  margin-bottom: 1rem;
  position: relative;
  border-radius: 18px;
  border: 1px solid rgba(15, 77, 67, 0.06);
  box-shadow: 0 10px 30px rgba(15, 77, 67, 0.05), 0 2px 8px rgba(15, 77, 67, 0.03);
}

textarea {
  resize: none;
}

.form-elem {
  margin-bottom: 3rem;
  position: relative;
}

.form-label {
  display: block;
  font-weight: 600;
  font-size: 14px;
  color: var(--clr-dark);
  margin-bottom: 0.65rem;
}

.form-control {
  width: 100%;
  height: 50px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  font-size: 14px;
  font-family: inherit;
  background: #ffffff;
  color: #1f2937;
  border: 1px solid rgba(15, 77, 67, 0.1);
  border-radius: 10px;
  outline: none;
  transition: all 0.25s ease;
  box-shadow: 0 1px 2px rgba(15, 77, 67, 0.03);
}

.form-control:hover {
  border-color: rgba(15, 77, 67, 0.18);
}

.form-control:focus {
  border-color: #16a34a;
  box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.1), 0 4px 12px rgba(22, 163, 74, 0.08);
}

/*=========================================
        Production Upload Input
=========================================*/
.upload-input {
  width: 100%;
}

.image-upload {
  display: none;
}

.upload-label {
  width: 100%;
  min-height: 50px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 14px;
  background: #fff;
  border: 1px solid rgba(15, 77, 67, 0.1);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 1px 2px rgba(15, 77, 67, 0.03);
}

.upload-label:hover {
  border-color: rgba(15, 77, 67, 0.18);
}

.upload-label:has(.image-upload:focus) {
  border-color: #16a34a;
  box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.1), 0 4px 12px rgba(22, 163, 74, 0.08);
}

.upload-btn {
  flex-shrink: 0;
  padding: 8px 18px;
  border-radius: 10px;
  background: #0f684d;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.25s ease;
}

.upload-label:hover .upload-btn {
  background: #0d5a42;
}

.upload-label:hover .upload-btn {
  background: #0d5a42;
}

.upload-file-name {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #6b7280;
  font-size: 14px;
}

.form-text {
  color: #ca0b00;
  font-size: 12px;
  position: absolute;
  letter-spacing: 0.5px;
  top: calc(100% + 2px);
  left: 0;
  width: 100%;
}

.cols-3,
.cols-2 {
  display: grid;
}

.repeater-add-btn {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px 0 24px 10px;
  border: none;
  border-radius: 10px;
  background: #0f684d;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(15, 104, 77, 0.12);
  transition: background-color 0.25s ease, box-shadow 0.25s ease, transform 0.18s ease;
}

.repeater-add-btn:hover {
  background: #0d5a42;
  transform: translateY(-1px);
  box-shadow: 0 5px 12px rgba(15, 104, 77, 0.16);
}

.repeater-add-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(15, 104, 77, 0.1);
}

.repeater-remove-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 10;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 10px;
  background: #0f684d;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(15, 104, 77, 0.12);
  transition: background-color 0.25s ease, box-shadow 0.25s ease, transform 0.18s ease;
}

.repeater-remove-btn:hover {
  background: #0d5a42;
  transform: translateY(-1px);
  box-shadow: 0 5px 12px rgba(15, 104, 77, 0.16);
}

.repeater-remove-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(15, 104, 77, 0.1);
}

.resume-preview-section {
  padding: 12px;
  padding-bottom: 4rem;
  background: linear-gradient(180deg, #f8f7f5 0%, #f4f8f6 35%, #eef7f4 100%);
}

/* ==========================================================
   Resume Preview Header
========================================================== */
.preview-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  color: #0f6d57;
  font-weight: 600;
  transition: 0.25s ease;
}

.preview-back-icon {
  width: 14px;
  height: 14px;
  margin-right: 10px;
  object-fit: contain;
  transition: transform 0.25s ease;
}

.preview-back-btn:hover .preview-back-icon {
  transform: translateX(-3px);
}

.preview-back-btn:hover {
  color: #0b8b68;
}

.preview-header {
  margin-bottom: 1.75rem;
}
.preview-header .preview-header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 1.15rem 0 1.4rem;
}
.preview-header {
  /* ========================================
      Left Section
  ======================================== */
}
.preview-header .preview-header__info {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.preview-header .preview-header__icon {
  width: 52px;
  height: 52px;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9), 0 6px 18px rgba(16, 24, 40, 0.05);
}
.preview-header .preview-header__icon-img {
  width: 27px;
  height: 27px;
  display: block;
  object-fit: contain;
}
.preview-header .preview-header__text {
  display: flex;
  flex-direction: column;
}
.preview-header .preview-header__title {
  margin: 0;
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.2;
  color: #1f2937;
}
.preview-header .preview-header__subtitle {
  margin-top: 0.35rem;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.5;
  color: #64748b;
}
.preview-header {
  /* ========================================
      Right Section
  ======================================== */
}
.preview-header .preview-header__actions {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.preview-header .preview-header__btn {
  font-size: 14px;
  font-weight: 500;
  height: 42px;
  padding: 0 1.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.25s ease;
}
.preview-header .preview-header__btn-icon {
  width: 16px;
  height: 16px;
  display: block;
  object-fit: contain;
  flex-shrink: 0;
}
.preview-header {
  /* Secondary Button */
}
.preview-header .preview-header__btn--secondary {
  background: #fff;
  color: #29303a;
  border: 1px solid #dbe4ea;
}
.preview-header .preview-header__btn--secondary:hover {
  background: #f8fafc;
  transform: translateY(-1px);
}
.preview-header {
  /* Primary Button */
}
.preview-header .preview-header__btn--primary {
  background: var(--clr-green);
  color: #fff;
  border: none;
}
.preview-header .preview-header__btn--primary:hover {
  background: #0b8b68;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(8, 76, 65, 0.18);
}
.preview-header {
  /* ========================================
      Responsive
  ======================================== */
}
@media screen and (max-width: 1000px) {
  .preview-header .preview-header__content {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1rem 1.25rem;
  }
  .preview-header .preview-header__info {
    width: 100%;
    align-items: center;
  }
  .preview-header .preview-header__icon {
    width: 54px;
    height: 54px;
  }
  .preview-header .preview-header__icon-img {
    width: 24px;
    height: 24px;
  }
  .preview-header .preview-header__title {
    font-size: 1.5rem;
  }
  .preview-header .preview-header__subtitle {
    font-size: 0.9rem;
  }
  .preview-header .preview-header__actions {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 0.75rem;
  }
  .preview-header .preview-header__btn {
    height: 44px;
    padding: 0 1.25rem;
    gap: 0.55rem;
  }
}

/* ==========================================================
   NEW RESUME CONFIRMATION MODAL
========================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  display: none;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  background: rgba(15, 23, 42, 0.42);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999;
  animation: fadeOverlay 0.25s ease;
}

.modal-overlay.active {
  display: flex;
}

.modal-card {
  width: min(550px, 90vw);
  background: #ffffff;
  border-radius: 28px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 32px 80px rgba(15, 23, 42, 0.18), 0 10px 30px rgba(15, 23, 42, 0.08);
  animation: modalScale 0.28s ease;
}

/* ======================
   CONTENT
====================== */
.modal-content {
  padding: 2rem 2rem 1.75rem;
}

.modal-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 2rem;
  border-radius: 50%;
  background: #edf8f3;
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-icon img {
  width: 46px;
  height: 46px;
  margin-left: 12px;
  object-fit: contain;
}

.modal-card h3 {
  font-size: 2.8rem;
  font-weight: 600;
  color: #162033;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.modal-card p {
  max-width: 520px;
  margin: auto;
  font-size: 1.7rem;
  line-height: 1.9;
  color: #4d5566;
}

/* ======================
   FOOTER
====================== */
.modal-actions {
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 2.2rem 3rem;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  background: #fff;
}

/* ======================
   BUTTONS
====================== */
.modal-btn {
  min-width: 210px;
  height: 55px;
  border-radius: 16px;
  font-size: 1.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}

.modal-btn:focus-visible {
  outline: 3px solid rgba(16, 185, 129, 0.25);
  outline-offset: 3px;
}

/* Cancel */
.modal-actions .modal-btn-primary {
  background: #11835d;
  color: #fff;
  border: none;
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(22, 163, 74, 0.25);
}

.modal-actions .modal-btn-primary:hover {
  background: #edf8f3;
  color: var(--clr-primary);
  border: 1.7px solid #11835d;
}

.modal-actions .modal-btn-secondary {
  background: #fff;
  color: var(--clr-primary);
  border: 1.7px solid #11835d;
}

.modal-actions .modal-btn-secondary:hover {
  background: #11835d;
  color: #fff;
  border: none;
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(22, 163, 74, 0.25);
}

/* ======================
   ANIMATION
====================== */
@keyframes modalScale {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes fadeOverlay {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* ==========================================
   Project Component
========================================== */
.project-item {
  padding-bottom: 1.4rem;
  margin-bottom: 1.4rem;
  border-bottom: 1px solid #edf1f6;
}
.project-item:last-child {
  margin-bottom: 0;
}

.project-link {
  width: fit-content;
  font-weight: 500;
  font-size: 0.95rem;
  color: #2563eb;
  text-decoration: none;
  word-break: break-word;
  transition: color 0.2s ease;
}
.project-link:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

/* =====================================
   Achievement Component
===================================== */
.achievement-item {
  padding-bottom: 1.4rem;
  margin-bottom: 1.4rem;
  border-bottom: 1px solid #edf1f6;
}
.achievement-item:last-child {
  margin-bottom: 0;
}

/* preview section */
.achievement-description,
.education-description,
.experience-description,
.project-description {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #4b5563;
}

.achievement-title,
.education-college,
.experience-role,
.project-title {
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--resume-heading);
}

.education-item,
.experience-item {
  display: flex;
  flex-direction: column;
  gap: var(--resume-space-sm);
  margin-bottom: 1.5rem;
}
.education-item:last-child,
.experience-item:last-child {
  margin-bottom: 0;
}

.education-meta,
.experience-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 0.15rem;
}

.education-degree,
.experience-company {
  font-size: 1.18rem;
  font-weight: 600;
  color: var(--resume-text);
  line-height: 1.4;
}

.education-location,
.experience-location {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--resume-muted);
  font-weight: 500;
}

.education-date,
.experience-date {
  font-size: 0.92rem;
  font-weight: var(--resume-meta-weight);
  color: var(--resume-muted);
  white-space: nowrap;
}

.skills-items {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.skill-item {
  padding-bottom: 0.55rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.skill-item:last-child {
  border: none;
}

/* ==========================================
   GUIDED TEMPLATE (STATE A)
========================================== */
.placeholder {
  color: rgba(255, 255, 255, 0.68);
  font-style: normal;
  font-weight: 400;
  letter-spacing: normal;
}

/* Shared placeholder card */
.placeholder-item {
  transition: opacity 0.2s ease;
}

/* Primary title */
.placeholder-item .achievement-title,
.placeholder-item .education-college,
.placeholder-item .experience-role,
.placeholder-item .project-title {
  opacity: 0.72;
  font-weight: 600;
}

/* Secondary title */
.placeholder-item .education-degree,
.placeholder-item .experience-company,
.placeholder-item .project-link {
  opacity: 0.62;
  font-weight: 500;
}

/* Meta */
.placeholder-item .education-location,
.placeholder-item .education-date,
.placeholder-item .experience-location,
.placeholder-item .experience-date {
  opacity: 0.55;
}

/* Description */
.placeholder-item .achievement-description,
.placeholder-item .education-description,
.placeholder-item .experience-description,
.placeholder-item .project-description {
  opacity: 0.48;
  font-style: italic;
  line-height: 1.55;
}

/* Sidebar placeholders */
/* Sidebar Skill Placeholder */
#skills_dsp .placeholder-item .preview-item-val {
  color: rgba(255, 255, 255, 0.62);
  font-weight: 400;
}

.preview-item-val.placeholder {
  opacity: 0.68;
}

#fullname_dsp.placeholder {
  font-style: italic;
  font-weight: 500;
}

#designation_dsp.placeholder {
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.18em;
}

#summary_dsp.placeholder {
  line-height: 1.5;
}

.preview-workspace {
  padding: 1rem 1.5rem;
  margin-top: 0rem;
  background: linear-gradient(180deg, #edf6f3 0%, #f7faf8 100%);
  border: 1px solid rgba(8, 76, 65, 0.06);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: auto;
}

.resume-paper {
  width: max-content;
  flex-shrink: 0;
  min-height: 297mm;
  padding: 0.75rem;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08), 0 3px 10px rgba(15, 23, 42, 0.05);
  border: 1px solid rgba(15, 23, 42, 0.05);
}

.resume-paper:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.1), 0 8px 20px rgba(15, 23, 42, 0.06);
}

.preview-cnt {
  display: grid;
  grid-template-columns: 32% 68%;
  width: 794px;
  min-height: 1123px;
  overflow: hidden;
  border-radius: 10px;
  background: #fff;
  animation: zoomIn 0.45s ease;
}

@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.preview-cnt-l {
  padding: 2.5rem 2.25rem;
  position: relative;
  background: #001f3e;
  color: var(--clr-white);
}

.preview-cnt-l .preview-blk:first-child {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 2rem;
  margin-bottom: 2.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.preview-cnt-l::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background: rgba(255, 255, 255, 0.08);
}

.preview-cnt-r {
  padding: 2.5rem 2.25rem;
  background: #fbfcfd;
}

.preview-cnt-l .preview-blk:nth-child(1) {
  text-align: center;
}

.preview-image {
  width: 105px;
  height: 105px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.95);
  margin: 0 auto 1.25rem;
  overflow: hidden;
}

.preview-image img {
  display: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.preview-image img.has-image {
  display: block;
}

.preview-image {
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.04);
}

.preview-image:hover {
  transform: scale(1.1);
}

.preview-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.preview-item-name {
  margin-top: 1.4rem;
  margin-bottom: 0.45rem;
}
.preview-item-name .preview-item-val {
  font-size: var(--resume-fs-body);
  font-weight: 400;
  opacity: 0.94;
  line-height: 1.08;
  letter-spacing: -0.02em;
  text-align: center;
}

.sidebar-summary {
  margin-top: 0.5rem;
  line-height: 1.6;
  opacity: 0.9;
}

#designation_dsp.placeholder {
  letter-spacing: 0.08em;
  font-weight: 500;
}

#fullname_dsp.placeholder {
  font-style: normal;
  font-weight: 500;
  opacity: 0.75;
}

#designation_dsp {
  display: block;
  margin-top: 0.65rem;
  font-size: var(--resume-fs-meta);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.82;
  font-weight: 600;
}

.preview-item-name::after {
  position: absolute;
  content: "";
  bottom: -10px;
  width: 50px;
  height: 1.5px;
  background-color: rgba(255, 255, 255, 0.5);
  left: 50%;
  transform: translateX(-50%);
}

.preview-blk {
  margin-bottom: 2.3rem;
}
.preview-blk:last-child {
  margin-bottom: 0;
}

.preview-blk:last-child {
  margin-bottom: 0;
}

.preview-blk-title {
  margin-bottom: 1.25rem;
  padding-bottom: 0.45rem;
}

.preview-blk-title h3 {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.preview-cnt-l .preview-blk-title {
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}
.preview-cnt-l .preview-blk-title h3 {
  color: rgba(255, 255, 255, 0.85);
}

.preview-cnt-r .preview-blk-title {
  border-bottom: 1px solid #e8edf3;
}
.preview-cnt-r .preview-blk-title h3 {
  color: #0f2746;
}

.preview-blk-list .preview-item {
  margin-bottom: 0.65rem;
  font-size: 12px;
  line-height: 1.45;
  word-break: break-word;
}

.preview-cnt-r .preview-blk-title {
  color: var(--clr-dark);
}

.preview-cnt-r .preview-blk-list .preview-item {
  margin-bottom: 1.75rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.05);
}

.preview-cnt-r .preview-blk-list .preview-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border: none;
}

.achievements-items.preview-blk-list .preview-item span:first-child,
.educations-items.preview-blk-list .preview-item span:first-child,
.experiences-items.preview-blk-list .preview-item span:first-child {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 0.4rem;
  display: block;
}

.educations-items.preview-blk-list .preview-item span:nth-child(2),
.experiences-items.preview-blk-list .preview-item span:nth-child(2) {
  margin-top: 0.25rem;
  margin-bottom: 0.35rem;
  font-weight: 600;
}

.educations-items.preview-blk-list .preview-item span:nth-child(3),
.experiences-items.preview-blk-list .preview-item span:nth-child(3) {
  font-style: italic;
  margin-right: 1rem;
}

.educations-items.preview-blk-list .preview-item span:nth-child(4),
.educations-items.preview-blk-list .preview-item span:nth-child(5),
.experiences-items.preview-blk-list .preview-item span:nth-child(4),
.experiences-items.preview-blk-list .preview-item span:nth-child(5) {
  margin-right: 1rem;
  background-color: var(--clr-green);
  color: var(--clr-white);
  padding: 0 1rem;
  border-radius: 0.6rem;
}

.educations-items.preview-blk-list .preview-item span:nth-child(6),
.experiences-items.preview-blk-list .preview-item span:nth-child(6) {
  font-size: 13.5px;
  display: block;
  opacity: 0.8;
  margin-top: 1rem;
}

.projects-items.preview-blk-list .preview-item span {
  display: block;
}

@media screen and (min-width: 768px) {
  .cols-3 {
    grid-template-columns: repeat(3, 1fr);
    column-gap: 2rem;
  }
  .cols-2 {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 2rem;
  }
}
@media screen and (min-width: 992px) {
  .cv-form-row {
    padding: 3rem 3rem 0rem 3rem;
  }
  .cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
.print-btn-sc {
  margin: 2rem 0 6rem 0;
}
.print-btn-sc button {
  position: relative;
  top: 20px;
  background-color: var(--clr-green);
  color: white;
  font-size: 9px;
  padding: 2px 8px;
  border-radius: 999px;
  font-weight: 600;
  opacity: 0.92;
}
@media screen and (max-width: 1000px) {
  .print-btn-sc button {
    position: relative;
    top: 30px;
    right: 16px;
  }
}
.print-btn-sc button:hover {
  background-color: teal;
  transition: 0.4s ease;
  color: white;
  font-size: 15px;
  border-radius: 0px 30px 30px 30px;
  padding: 17px 50px;
}

/* print section */
@media print {
  body * {
    visibility: hidden;
  }
  .non_print_area {
    display: none;
  }
  .print_area,
  .print_area * {
    visibility: visible;
  }
  .print_area {
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    overflow: hidden;
  }
}
/* Footer */
.footer {
  padding: 2.8rem 0;
  background: linear-gradient(180deg, #112b44 0%, #0f253d 100%);
  color: rgba(255, 255, 255, 0.88);
  overflow: hidden;
}

.footer-content p {
  margin: 0;
  font-size: 1.9rem;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 400;
}
@media screen and (max-width: 1000px) {
  .footer-content p {
    font-size: 1.2rem;
  }
}

.footer-year {
  color: #1ec99b;
  font-weight: 500;
}

@media screen and (max-width: 1000px) {
  .preview-workspace {
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 1rem;
    -webkit-overflow-scrolling: touch;
  }
  .resume-paper {
    flex-shrink: 0;
    padding: 0.75rem;
  }
  .preview-cnt {
    width: 794px;
    min-height: 1123px;
  }
}

/*# sourceMappingURL=resume.css.map */
