/* ==========================================================================
   VIJOBS.IN - Exact Shine.com Replica Stylesheet
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Outfit:wght@600;700;800&display=swap');

:root {
  --brand-navy: #053B82;
  --brand-orange: #FF5722;
  --brand-orange-hover: #E64A19;
  --brand-orange-light: #FFF0EB;
  --brand-red: #D91A2A;

  /* Soft warm orange/cream tint background replacing Shine yellow background */
  --bg-hero-shine: #FFF8F3;
  --bg-card: #FFFFFF;
  --bg-subtle: #F8FAFC;

  --text-dark: #1A1A1A;
  --text-muted: #666666;
  --text-light: #94A3B8;

  --border-color: #E2E8F0;
  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Outfit', sans-serif;
}

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

body {
  font-family: var(--font-main);
  color: var(--text-dark);
  background-color: #FFFFFF;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ==========================================================================
   HEADER / NAVBAR
   ========================================================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #FFFFFF;
  border-bottom: none;
  transition: box-shadow 0.25s ease;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  width: 100%;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-shrink: 0;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  margin: 0 !important;
  padding: 0;
  flex-shrink: 0;
}

.logo-img {
  height: 48px;
  max-height: 48px;
  max-width: 100%;
  width: auto;
  display: block;
  object-fit: contain;
  flex-shrink: 0;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), filter 0.25s ease;
}

.logo-link:hover .logo-img {
  transform: scale(1.04);
  filter: drop-shadow(0 4px 12px rgba(255, 87, 34, 0.3));
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.mobile-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
  border-radius: 8px;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #333333;
  transition: color 0.2s ease;
}

.nav-item:hover,
.nav-dropdown-wrapper:hover .nav-item,
.nav-dropdown-wrapper.active .nav-item {
  color: var(--brand-orange);
}

.nav-item svg {
  width: 18px;
  height: 18px;
  fill: #777777;
  transition: fill 0.2s ease, stroke 0.2s ease;
}

.nav-item:hover svg,
.nav-dropdown-wrapper:hover .nav-item svg,
.nav-dropdown-wrapper.active .nav-item svg {
  fill: var(--brand-orange);
  stroke: var(--brand-orange);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.btn-register-shine {
  background-color: var(--brand-orange);
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 24px;
  border-radius: 24px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.2s ease;
}

.btn-register-shine:hover {
  background-color: var(--brand-orange-hover);
}

.btn-login-shine {
  background-color: #FFFFFF;
  color: var(--text-dark);
  font-size: 14px;
  font-weight: 700;
  padding: 9px 24px;
  border-radius: 24px;
  border: 1.5px solid var(--brand-orange);
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.2s ease;
}

.btn-login-shine:hover {
  background-color: var(--brand-orange-light);
}

.btn-recruiter-shine {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, var(--brand-navy) 0%, #123B7A 100%);
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 700;
  padding: 9px 20px;
  border-radius: 24px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(5, 59, 130, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

/* Continuous diagonal light sweep, per manager's spec */
.btn-recruiter-shine::before {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 40%;
  height: 100%;
  background: linear-gradient(115deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-20deg);
  animation: btnRecruiterShineSweep 3.2s linear infinite;
  pointer-events: none;
}

@keyframes btnRecruiterShineSweep {
  from { left: -60%; }
  to { left: 160%; }
}

@media (prefers-reduced-motion: reduce) {
  .btn-recruiter-shine::before {
    animation: none;
    display: none;
  }
}

.btn-recruiter-shine:hover {
  color: #FFFFFF;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(5, 59, 130, 0.4);
  background: linear-gradient(135deg, #123B7A 0%, var(--brand-navy) 100%);
}

/* ==========================================
   HEADER RESPONSIVENESS ACROSS ALL SCREENS
   ========================================== */
@media (max-width: 1024px) {
  .nav-menu {
    gap: 16px;
  }

  .nav-left {
    gap: 20px;
  }

  .btn-register-shine,
  .btn-login-shine {
    padding: 8px 18px;
    font-size: 13px;
  }
}

@media (max-width: 860px) {
  .mobile-menu-toggle {
    display: flex;
  }

  .nav-menu {
    display: none;
  }

  .logo-img {
    height: 38px;
    max-height: 38px;
  }

  .nav-right {
    gap: 8px;
  }

  .btn-register-shine,
  .btn-login-shine {
    padding: 7px 14px;
    font-size: 12.5px;
  }
}

@media (max-width: 520px) {
  .navbar {
    height: 60px;
  }

  .container {
    padding: 0 12px;
  }

  .logo-img {
    height: 32px;
    max-height: 32px;
  }

  .nav-left {
    gap: 8px;
  }

  .nav-right {
    gap: 6px;
  }

  .btn-register-shine {
    padding: 6px 12px;
    font-size: 12px;
  }

  .btn-login-shine {
    padding: 5px 12px;
    font-size: 12px;
  }
}

@media (max-width: 380px) {
  .logo-img {
    height: 28px;
    max-height: 28px;
  }

  .btn-register-shine {
    padding: 5px 8px;
    font-size: 11px;
  }

  .btn-login-shine {
    padding: 4px 8px;
    font-size: 11px;
  }
}

/* Nav Mega Dropdown */
.nav-dropdown-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-dropdown-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 0;
  font-family: inherit;
  display: flex;
  align-items: center;
  gap: 6px;
}

.dropdown-chevron {
  width: 14px;
  height: 14px;
  margin-left: 2px;
  transition: transform 0.25s ease;
}

.nav-dropdown-wrapper:hover .dropdown-chevron,
.nav-dropdown-wrapper.active .dropdown-chevron {
  transform: rotate(180deg);
}

.mega-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: -10px;
  width: 580px;
  background: #FFFFFF;
  border-radius: 18px;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.05);
  padding: 22px;
  z-index: 1200;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px) scale(0.98);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  transform-origin: top left;
}

.nav-dropdown-wrapper:hover .mega-dropdown-menu,
.nav-dropdown-wrapper.active .mega-dropdown-menu,
.mega-dropdown-menu.show-menu {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) scale(1) !important;
  display: block !important;
}

.mega-dropdown-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 20px;
}

.mega-col-header {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #64748B;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
  padding-bottom: 6px;
  border-bottom: 1px solid #F1F5F9;
}

.mega-menu-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mega-menu-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 12px;
  transition: all 0.2s ease;
  text-decoration: none;
}

.mega-menu-item:hover {
  background: #F8FAFC;
  transform: translateX(2px);
}

.menu-item-icon {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

.icon-orange {
  background: #FFF0EB;
}

.icon-blue {
  background: #E0F2FE;
}

.icon-purple {
  background: #F3E8FF;
}

.icon-green {
  background: #DCFCE7;
}

.icon-navy {
  background: #E2E8F0;
}

.menu-item-title {
  font-size: 13.5px;
  font-weight: 700;
  color: #0F172A;
  display: flex;
  align-items: center;
  gap: 6px;
}

.menu-item-sub {
  font-size: 11.5px;
  color: #64748B;
  margin-top: 1px;
  line-height: 1.3;
}

.badge-pop {
  background: #FF5722;
  color: #FFFFFF;
  font-size: 9px;
  font-weight: 800;
  padding: 1px 5px;
  border-radius: 5px;
}

.badge-hot {
  background: #0284C7;
  color: #FFFFFF;
  font-size: 9px;
  font-weight: 800;
  padding: 1px 5px;
  border-radius: 5px;
}

.badge-new {
  background: #16A34A;
  color: #FFFFFF;
  font-size: 9px;
  font-weight: 800;
  padding: 1px 5px;
  border-radius: 5px;
}

.mega-col-emp {
  background: #F8FAFC;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid #F1F5F9;
}

.mega-banner-cta {
  margin-top: 14px;
  background: linear-gradient(135deg, #053B82 0%, #0A2540 100%);
  border-radius: 12px;
  padding: 12px 14px;
  color: #FFFFFF;
}

.mega-cta-title {
  font-size: 12.5px;
  font-weight: 700;
}

.mega-cta-sub {
  font-size: 11px;
  color: #94A3B8;
  margin: 2px 0 8px 0;
}

.btn-mega-cta {
  display: inline-block;
  background: #FF5722;
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 16px;
  transition: background 0.2s ease;
}

.btn-mega-cta:hover {
  background: #E64A19;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  background:
    radial-gradient(ellipse 70% 50% at 50% 75%, rgba(255, 145, 80, 0.75) 0%, rgba(255, 120, 60, 0.35) 40%, rgba(255, 255, 255, 0) 70%),
    linear-gradient(180deg, #FFFFFF 0%, #FFF8F3 30%, #FFE9D8 70%, #FFFFFF 100%);
  padding: 32px 0 20px 0;
  text-align: center;
  position: relative;
  overflow: visible;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 800;
  color: #1A1A1A;
  margin-bottom: 6px;
  letter-spacing: -0.5px;
}

.hero-subtitle {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 24px;
}

/* Floating Search Bar */
.search-container {
  max-width: 840px;
  margin: 0 auto 20px auto;
}

.search-box {
  background: #FFFFFF;
  border-radius: 40px;
  padding: 6px 6px 6px 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
}

.search-field {
  flex: 1;
  padding: 10px 16px;
  border-right: 1px solid #E2E8F0;
}

.search-field:last-of-type {
  border-right: none;
}

.search-field input,
.search-field select {
  width: 100%;
  border: none;
  outline: none;
  font-size: 14px;
  font-weight: 500;
  color: #222222;
  background: transparent;
}

.search-field input::placeholder {
  color: #999999;
}

/* Custom Select Experience Component */
.custom-select-wrapper {
  position: relative;
  width: 100%;
}

.custom-select-trigger {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  font-size: 14px;
  font-weight: 500;
  color: #666666;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  padding: 0;
  text-align: left;
  font-family: inherit;
}

.select-chevron {
  transition: transform 0.25s ease;
}

.custom-select-wrapper.active .select-chevron {
  transform: rotate(180deg);
}

.custom-select-options {
  position: absolute;
  top: calc(100% + 18px);
  left: -16px;
  right: -16px;
  background: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.14), 0 0 0 1px rgba(0, 0, 0, 0.05);
  padding: 8px;
  z-index: 1050;
  animation: selectDropdownSlide 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  max-height: 220px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--brand-orange) #F1F1F1;
}

.custom-select-options::-webkit-scrollbar {
  width: 6px;
}

.custom-select-options::-webkit-scrollbar-track {
  background: #F1F1F1;
  border-radius: 10px;
}

.custom-select-options::-webkit-scrollbar-thumb {
  background: var(--brand-orange);
  border-radius: 10px;
}

@keyframes selectDropdownSlide {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.custom-select-options.hidden {
  display: none;
}

.custom-option {
  padding: 10px 16px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: #334155;
  transition: background 0.15s ease, color 0.15s ease;
}

.custom-option:hover {
  background: #FFF5EE;
  color: var(--brand-orange);
}

.custom-option.selected {
  background: var(--brand-orange);
  color: #FFFFFF;
}

/* Generic city/location autocomplete dropdown (js/city-autocomplete.js) */
.city-ac-wrap {
  position: relative;
  width: 100%;
}

.city-ac-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.14), 0 0 0 1px rgba(0, 0, 0, 0.06);
  padding: 6px;
  z-index: 1050;
  max-height: 240px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--brand-orange) #F1F1F1;
}

.city-ac-menu.hidden {
  display: none;
}

.city-ac-menu::-webkit-scrollbar {
  width: 6px;
}

.city-ac-menu::-webkit-scrollbar-track {
  background: #F1F1F1;
  border-radius: 10px;
}

.city-ac-menu::-webkit-scrollbar-thumb {
  background: var(--brand-orange);
  border-radius: 10px;
}

.city-ac-item {
  padding: 9px 14px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: #334155;
  transition: background 0.15s ease, color 0.15s ease;
}

.city-ac-item:hover,
.city-ac-item.is-active {
  background: #FFF5EE;
  color: var(--brand-orange);
}

.city-ac-item.is-custom {
  font-style: italic;
  color: var(--brand-orange);
  border-top: 1px solid #F1F1F1;
  margin-top: 4px;
  padding-top: 10px;
}

.city-ac-item.is-custom:hover,
.city-ac-item.is-custom.is-active {
  background: var(--brand-orange);
  color: #FFFFFF;
}

.search-btn-shine {
  background: #FFFDF0;
  color: #1A1A1A;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 36px;
  border-radius: 28px;
  border: 1.5px solid var(--brand-orange);
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.search-btn-shine:hover {
  background: var(--brand-orange);
  color: #FFFFFF;
}

/* Walkin Drive Pill Banner */
.walkin-banner {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #EBF3FB;
  border: 1.5px solid #C5D7E8;
  border-radius: 40px;
  padding: 8px 22px;
  font-size: 15px;
  font-weight: 600;
  color: #1F2837;
  margin-bottom: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
  transition: transform 0.2s ease;
}

.walkin-banner:hover {
  transform: translateY(-1px);
}

.walkin-icon-svg {
  width: 22px;
  height: 22px;
  fill: #6B3B3B;
  display: flex;
  align-items: center;
}

.live-badge {
  background: #1F2837;
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.walkin-arrow {
  color: var(--brand-orange);
  font-size: 18px;
  font-weight: bold;
  margin-left: 2px;
}

/* Trusted Enterprises Header & Logos */
.trusted-header {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #7A8CA4;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.enterprise-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 44px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.enterprise-logos img {
  height: 40px;
  width: auto;
  object-fit: contain;
  opacity: 0.95;
  transition: all 0.2s ease;
}

.enterprise-logos img:hover {
  opacity: 1;
  transform: scale(1.08);
}

.enterprise-logo-boxed {
  height: 34px !important;
  border-radius: 6px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}

/* Quick Search Popular Category Chips */
.hero-quick-chips-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
  margin-bottom: 24px;
  position: relative;
  z-index: 10;
}

.chips-label {
  font-size: 13px;
  font-weight: 700;
  color: #64748B;
  letter-spacing: 0.2px;
}

.hero-chips-flex {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.quick-chip-btn {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(203, 213, 225, 0.8);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 12.5px;
  font-weight: 600;
  color: #334155;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.quick-chip-btn:hover {
  background: #FFFFFF;
  border-color: #0B66C3;
  color: #0B66C3;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(11, 102, 195, 0.16);
}

/* Hero Character Illustration */
.hero-illustration {
  position: relative;
  display: block;
  width: 100%;
  line-height: 0;
  animation: heroFloatBob 5s ease-in-out infinite;
  transform-origin: bottom center;
  z-index: 2;
  margin-top: -20px;
}

.hero-illustration img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 10px 40px rgba(14, 165, 233, 0.2));
  transition: filter 0.4s ease;
  -webkit-mask-image: radial-gradient(ellipse 88% 92% at 50% 55%, black 30%, rgba(0,0,0,0.95) 50%, rgba(0,0,0,0.6) 70%, transparent 88%);
  mask-image: radial-gradient(ellipse 88% 92% at 50% 55%, black 30%, rgba(0,0,0,0.95) 50%, rgba(0,0,0,0.6) 70%, transparent 88%);
}

.hero-illustration:hover img {
  filter: drop-shadow(0 30px 60px rgba(14, 165, 233, 0.4));
}


.badge-hotspot {
  position: absolute;
  border-radius: 16px;
  cursor: pointer;
  z-index: 10;
  text-decoration: none;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
  -webkit-tap-highlight-color: transparent;
}

.badge-hotspot:hover, .badge-hotspot:focus, .badge-hotspot:active {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
  transform: none !important;
}

.hs-featured { top: 12%; left: 10.5%; width: 19.5%; height: 26%; }
.hs-courses  { top: 43%; left: 3%;    width: 19.5%; height: 26%; }
.hs-resume   { top: 41%; left: 24%;   width: 18%;   height: 23%; }
.hs-postjob  { top: 7%;  right: 7%;   width: 17%;   height: 26%; }
.hs-express  { top: 38%; right: 23%;  width: 17.5%; height: 24%; }
.hs-dbaccess { top: 48%; right: 2%;   width: 20%;   height: 25%; }

/* ==========================================================================
   2026 ULTRA-PREMIUM 3D LAPTOP SHOWCASE & FLOATING BADGES SYSTEM
   ========================================================================== */
.hero-illustration-wrapper {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 10px 0 30px 0;
  line-height: normal;
  font-size: initial;
}

.laptop-showcase-container {
  position: relative;
  width: 100%;
  max-width: 1060px;
  height: 500px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* SVG Connecting Lines Overlay */
.laptop-lines-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

/* ==========================================================================
   2026 ULTRA-PREMIUM DUAL-DEVICE ECOSYSTEM SHOWCASE (IPAD PRO + IPHONE 16 PRO)
   ========================================================================== */
.hero-illustration-wrapper {
  position: relative;
  width: 100%;
  max-width: 1140px;
  margin: -45px auto 0 auto;
  padding: 0;
  line-height: normal;
  font-size: initial;
}

.dual-device-showcase-container {
  position: relative;
  width: 100%;
  max-width: 1100px;
  height: 520px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dual-devices-group {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1200px;
  margin-top: -45px;
}

/* 1. Sleek Ultra-Thin Laptop Frame (Replaces iPad) */
.laptop-device-frame {
  width: 480px;
  height: 295px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  transform: rotateY(-8deg) rotateX(4deg) scale(0.98);
  transform-origin: center right;
  transition: transform 0.4s ease;
}

.laptop-screen-display {
  width: 100%;
  height: 275px;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border: 10px solid #0f172a;
  border-radius: 16px 16px 2px 2px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.35);
}

.laptop-screen-glare {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.45) 0%, rgba(255, 255, 255, 0) 40%);
  pointer-events: none;
}

.laptop-header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 2;
}

.laptop-logo-img {
  height: 42px;
  width: auto;
  object-fit: contain;
}

.laptop-recruiter-badge {
  background: #0f172a;
  color: #ffffff;
  font-size: 10.5px;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 12px;
  letter-spacing: 0.5px;
}

.laptop-card-preview {
  background: #ffffff;
  border-radius: 14px;
  padding: 16px 18px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  border: 1px solid #e2e8f0;
  z-index: 2;
}

.laptop-card-title {
  font-size: 15px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 12px;
}

.laptop-stats-row {
  display: flex;
  gap: 14px;
}

.laptop-stat-box {
  flex: 1;
  background: #f1f5f9;
  border-radius: 10px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-size: 16px;
  font-weight: 800;
  color: #ff5722;
}

.stat-lbl {
  font-size: 10.5px;
  font-weight: 600;
  color: #64748b;
}

.laptop-slim-base {
  width: 520px;
  height: 12px;
  background: linear-gradient(180deg, #cbd5e1 0%, #94a3b8 100%);
  border-radius: 0 0 12px 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-top: -1px;
}

.laptop-slim-notch {
  width: 54px;
  height: 4px;
  background: #475569;
  border-radius: 0 0 4px 4px;
}

.laptop-shadow {
  position: absolute;
  bottom: -15px;
  left: 5%;
  right: 5%;
  height: 18px;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.35) 0%, transparent 75%);
  border-radius: 50%;
  z-index: 1;
}

/* 2. iPhone 16 Pro Frame */
.iphone-device-frame {
  width: 200px;
  height: 390px;
  background: linear-gradient(145deg, #1e293b 0%, #090d16 100%);
  border-radius: 36px;
  padding: 10px;
  box-shadow: -15px 25px 60px rgba(15, 23, 42, 0.4), 0 0 0 2px rgba(255, 255, 255, 0.2);
  position: relative;
  margin-left: -50px;
  z-index: 5;
  transform: rotateY(10deg) rotateX(4deg) translateY(10px);
  transform-origin: center left;
}

.iphone-dynamic-island {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 72px;
  height: 18px;
  background: #000000;
  border-radius: 12px;
  z-index: 10;
}

.iphone-screen-display {
  width: 100%;
  height: 100%;
  background: #ffffff;
  border-radius: 28px;
  padding: 38px 12px 14px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.iphone-screen-glare {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.45) 0%, rgba(255, 255, 255, 0) 40%);
  pointer-events: none;
}

.iphone-logo-img {
  height: 32px;
  width: auto;
  object-fit: contain;
  margin-bottom: 6px;
}

.iphone-app-title {
  font-size: 13px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 6px;
}

.iphone-search-chip {
  background: #f1f5f9;
  border: 1px solid #cbd5e1;
  border-radius: 14px;
  padding: 5px 10px;
  font-size: 10.5px;
  font-weight: 600;
  color: #475569;
  width: 100%;
  text-align: center;
  margin-bottom: 12px;
}

.iphone-job-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 10px;
  width: 100%;
  text-align: left;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.job-mini-title {
  font-size: 11px;
  font-weight: 800;
  color: #0f172a;
}

.job-mini-tag {
  font-size: 9.5px;
  font-weight: 600;
  color: #64748b;
  margin: 3px 0 8px 0;
}

.btn-mini-apply {
  background: linear-gradient(135deg, #ff5722 0%, #e64a19 100%);
  color: #ffffff;
  font-size: 10px;
  font-weight: 800;
  padding: 5px 10px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 3px 8px rgba(255, 87, 34, 0.3);
}

/* Floor Shadow */
.ipad-shadow, .iphone-shadow {
  position: absolute;
  bottom: -15px;
  left: 10%;
  right: 10%;
  height: 16px;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.3) 0%, transparent 75%);
  border-radius: 50%;
  z-index: 1;
}

/* Floating Pill Badges (Light Theme Glassmorphism & Cyberpunk Neon Style) */
.laptop-badge {
  position: absolute;
  z-index: 10;
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1.5px solid rgba(255, 255, 255, 0.95);
  border-radius: 30px;
  padding: 8px 18px 8px 10px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08), 0 0 20px rgba(0, 240, 255, 0.18), inset 0 0 12px rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  user-select: none;
}

.laptop-badge:hover {
  transform: translateY(-6px) scale(1.05);
  background: rgba(255, 255, 255, 0.96);
  border-color: #00f0ff;
  box-shadow: 0 18px 45px rgba(0, 240, 255, 0.28), 0 0 25px rgba(0, 240, 255, 0.4);
}

.badge-icon-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.icon-bg-orange {
  background: linear-gradient(135deg, #ff5722 0%, #ff9800 100%);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(255, 87, 34, 0.4);
}

.icon-bg-blue {
  background: linear-gradient(135deg, #0284c7 0%, #00f0ff 100%);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(0, 240, 255, 0.4);
}

.icon-bg-navy {
  background: linear-gradient(135deg, #4f46e5 0%, #818cf8 100%);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(79, 70, 229, 0.4);
}

.icon-bg-teal {
  background: linear-gradient(135deg, #0d9488 0%, #2dd4bf 100%);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(13, 148, 136, 0.4);
}

.icon-bg-purple {
  background: linear-gradient(135deg, #9333ea 0%, #f43f5e 100%);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(147, 51, 234, 0.4);
}

.icon-bg-green {
  background: linear-gradient(135deg, #059669 0%, #10b981 100%);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(5, 150, 105, 0.4);
}

.badge-text-wrap {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.badge-main-text {
  font-size: 13.5px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
  letter-spacing: -0.2px;
}

.badge-sub-text {
  font-size: 11px;
  font-weight: 600;
  color: #475569;
  margin-top: 2px;
}

/* Badge Floating Positions */
.badge-top-left {
  top: 15px;
  left: 15px;
  animation: floatPill1 5s ease-in-out infinite;
}

.badge-mid-left {
  top: 105px;
  left: 15px;
  animation: floatPill2 6s ease-in-out infinite;
}

.badge-top-right {
  top: 15px;
  right: 15px;
  animation: floatPill3 5.5s ease-in-out infinite;
}

.badge-mid-right {
  top: 175px;
  right: 15px;
  animation: floatPill4 6.5s ease-in-out infinite;
}

.badge-bot-right {
  bottom: 40px;
  right: 35px;
  animation: floatPill5 5.2s ease-in-out infinite;
}

.badge-bot-left {
  bottom: 165px;
  left: 35px;
  animation: floatPill6 5.8s ease-in-out infinite;
}

@keyframes floatPill1 { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
@keyframes floatPill2 { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(-9px); } }
@keyframes floatPill3 { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes floatPill4 { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
@keyframes floatPill5 { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes floatPill6 { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }

/* Mobile Responsiveness for Laptop Showcase — the desktop illustration (laptop
   + iPhone + 6 floating badges) is built entirely from fixed-pixel widths and
   absolute positions, so instead of restructuring it for small screens (which
   changes how it looks), we scale the whole thing down as one unit with
   `zoom`. That shrinks both the visuals AND the box they occupy on the page,
   so it keeps the exact desktop arrangement at every size, just smaller. */
@media (max-width: 992px) {
  .hero-illustration-wrapper {
    zoom: 0.82;
  }
}

@media (min-width: 993px) and (max-width: 1120px) {
  .hero-illustration-wrapper {
    zoom: 0.78;
  }
}

@media (max-width: 760px) {
  .hero-illustration-wrapper {
    zoom: 0.6;
  }
}

@media (max-width: 560px) {
  .hero-illustration-wrapper {
    zoom: 0.44;
  }
}

@media (max-width: 400px) {
  .hero-illustration-wrapper {
    zoom: 0.36;
  }
}

/* ==========================================================================
   HERO MAN SECTION — Man image centered with floating cards & badges
   (Exact replica of reference design with man.png)
   ========================================================================== */

.hero-man-wrapper {
  position: relative;
  width: 100%;
  max-width: 1160px;
  height: 500px;
  margin: -10px auto 10px auto;
  padding: 0;
  overflow: visible;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-man-scene {
  position: relative;
  width: 1100px;
  height: 500px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  flex-shrink: 0;
  transform: scale(var(--scene-scale, 1));
  transform-origin: center center;
  transition: transform 0.2s ease;
}

/* Background Orbital SVG Arc & Constellation Network */
.hero-orbit-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: visible;
}

.pulse-flare {
  animation: flarePulse 8s ease-in-out infinite;
  transform-origin: center;
}

.pulse-flare-delay {
  animation: flarePulse 9.5s ease-in-out infinite 2s;
  transform-origin: center;
}

@keyframes flarePulse {
  0%, 100% {
    opacity: 0.75;
    transform: translateY(0px) scale(1, 1);
  }
  50% {
    opacity: 1;
    transform: translateY(-8px) scale(1.18, 1.06);
  }
}

/* ── Center composite composition ── */
.hero-center-composite {
  position: relative;
  width: 750px;
  height: 500px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 3;
  transform: translateY(-60px);
}

/* 1. Office Backdrop Card */
.hero-office-backdrop {
  position: absolute;
  left: 10px;
  top: 110px;
  width: 410px;
  height: 240px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.15);
  border: 1.5px solid rgba(255, 255, 255, 0.8);
  z-index: 2;
}

.office-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: brightness(1.05) saturate(0.9);
}

.office-glass-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.05) 0%,
    rgba(255,255,255,0.15) 60%,
    rgba(255,255,255,0.55) 100%
  );
  pointer-events: none;
}

/* 2. Profile Card (Alex Chen style) */
.hero-profile-card {
  position: absolute;
  left: 80px;
  bottom: 105px;
  width: 290px;
  background: #ffffff;
  border-radius: 14px;
  padding: 28px 15px 28px;
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.14), 0 2px 8px rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(226, 232, 240, 0.8);
  z-index: 6;
  animation: floatProfileCard 5.5s ease-in-out infinite;
  text-align: left;
}

@keyframes floatProfileCard {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-7px); }
}

.profile-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.profile-avatar-img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  flex-shrink: 0;
  border: 2.5px solid #ffffff;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

.profile-card-info {
  display: flex;
  flex-direction: column;
}

.profile-card-name {
  font-size: 13.5px;
  font-weight: 800;
  color: #0F172A;
  line-height: 1.2;
}

.profile-card-role {
  font-size: 11px;
  font-weight: 500;
  color: #64748B;
  margin-top: 1px;
}

.profile-card-tabs {
  display: flex;
  gap: 8px;
  border-bottom: 1px solid #E2E8F0;
  padding-bottom: 6px;
  margin-bottom: 8px;
}

.pctab {
  font-size: 10.5px;
  font-weight: 600;
  color: #64748B;
  cursor: pointer;
  padding-bottom: 4px;
  position: relative;
}

.pctab.active {
  color: #FF5722;
}

.pctab.active::after {
  content: '';
  position: absolute;
  bottom: -7px;
  left: 0;
  right: 0;
  height: 2px;
  background: #FF5722;
  border-radius: 2px;
}

.profile-card-skills-label {
  font-size: 11px;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 6px;
}

.profile-card-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.skill-chip {
  background: #F1F5F9;
  border: 1px solid #E2E8F0;
  border-radius: 14px;
  padding: 2.5px 8px;
  font-size: 10px;
  font-weight: 600;
  color: #334155;
}

/* 3. Man Image */
.hero-man-img-wrap {
  position: relative;
  height: 480px;
  z-index: 3;
  margin-left: 240px;
  display: flex;
  align-items: flex-end;
}

.hero-man-img {
  height: 480px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.16));
}

/* 4. Stats Card (Hire Verified Talent in India) */
.hero-stats-card {
  position: absolute;
  right: 10px;
  bottom: 140px;
  width: 270px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: 16px;
  padding: 13px 15px;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.12), 0 2px 8px rgba(15, 23, 42, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.95);
  z-index: 6;
  text-align: left;
  animation: floatStatsCard 6s ease-in-out infinite 0.4s;
}

@keyframes floatStatsCard {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-9px); }
}

.stats-card-title {
  font-size: 12.5px;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 10px;
  line-height: 1.3;
}

.stats-card-row {
  display: flex;
  gap: 10px;
}

.stats-card-box {
  flex: 1;
  background: #F8FAFC;
  border-radius: 10px;
  padding: 8px 10px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.stats-card-num {
  font-size: 16px;
  font-weight: 800;
  color: #FF5722;
  line-height: 1;
}

.stats-card-lbl {
  font-size: 9.5px;
  font-weight: 600;
  color: #64748B;
  margin-top: 3px;
}

/* ── Floating Pill Badges around Hero ── */
.man-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1.5px solid rgba(255, 255, 255, 0.95);
  border-radius: 28px;
  padding: 8px 14px 8px 8px;
  display: flex;
  align-items: center;
  gap: 9px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08), inset 0 0 10px rgba(255, 255, 255, 0.8);
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  user-select: none;
  white-space: nowrap;
  text-align: left;
}

.man-badge:hover {
  transform: translateY(-5px) scale(1.04);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.14);
}

.man-badge-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.man-badge-text {
  display: flex;
  flex-direction: column;
}

.man-badge-title {
  font-size: 12px;
  font-weight: 800;
  color: #0F172A;
  line-height: 1.2;
  display: flex;
  align-items: center;
}

.man-badge-tag {
  font-size: 9px;
  font-weight: 800;
  padding: 1.5px 6px;
  border-radius: 8px;
  letter-spacing: 0.3px;
  margin-left: 6px;
  display: inline-block;
}

.tag-green {
  background: #DCFCE7;
  color: #15803D;
  border: 1px solid #BBF7D0;
}

.man-badge-sub {
  font-size: 9.5px;
  font-weight: 500;
  color: #64748B;
  margin-top: 1px;
}

/* Badge Precise Positions (Brought Closer to Center) */
.man-badge-top-left {
  top: 40px;
  left: 80px;
  animation: manBadgeFloat1 5s ease-in-out infinite;
}

.man-badge-mid-left {
  top: 185px;
  left: 15px;
  animation: manBadgeFloat2 6s ease-in-out infinite 0.5s;
}

.man-badge-bot-left {
  bottom: 85px;
  left: 60px;
  animation: manBadgeFloat3 5.5s ease-in-out infinite 1s;
}

.man-badge-top-right {
  top: 40px;
  right: 90px;
  animation: manBadgeFloat4 5.2s ease-in-out infinite 0.3s;
}

.man-badge-resume-right {
  right: 25px;
  top: 205px;
  animation: manBadgeFloat5 6.5s ease-in-out infinite 0.8s;
}

.man-badge-bot-right {
  bottom: 75px;
  right: 75px;
  animation: manBadgeFloat6 5.8s ease-in-out infinite 1.3s;
}

@keyframes manBadgeFloat1 { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
@keyframes manBadgeFloat2 { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@keyframes manBadgeFloat3 { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
@keyframes manBadgeFloat4 { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes manBadgeFloat5 { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes manBadgeFloat6 { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@keyframes manBadgeFloat7 { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

.man-badge-affiliate {
  bottom: 60px;
  right: 450px;
  animation: manBadgeFloat7 6s ease-in-out infinite 1.8s;
}

/* ── Universal Responsive Scaling (Exact Laptop Composition Across All Devices) ── */
@media (max-width: 1180px) {
  .hero-man-wrapper { height: 460px; }
  .hero-man-scene { --scene-scale: 0.90; }
}

@media (max-width: 1024px) {
  .hero-man-wrapper { height: 410px; }
  .hero-man-scene { --scene-scale: 0.80; }
}

@media (max-width: 860px) {
  .hero-man-wrapper { height: 350px; }
  .hero-man-scene { --scene-scale: 0.68; }
}

@media (max-width: 680px) {
  .hero-man-wrapper { height: 280px; }
  .hero-man-scene { --scene-scale: 0.54; }
}

@media (max-width: 520px) {
  .hero-man-wrapper { height: 230px; }
  .hero-man-scene { --scene-scale: 0.44; }
}

@media (max-width: 420px) {
  .hero-man-wrapper { height: 195px; }
  .hero-man-scene { --scene-scale: 0.38; }
}

@media (max-width: 360px) {
  .hero-man-wrapper { height: 170px; }
  .hero-man-scene { --scene-scale: 0.33; }
}

.hero-float-badge {
  box-shadow: 0 16px 36px -6px rgba(14, 165, 233, 0.18), 0 0 25px rgba(255, 255, 255, 0.9), inset 0 1px 2px rgba(255, 255, 255, 1);
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-align: left;
  user-select: none;
}


.hero-float-badge::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 26px;
  padding: 1.5px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(14, 165, 233, 0.4) 50%, rgba(255, 255, 255, 0.8) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.hero-float-badge:hover {
  transform: translateY(-8px) scale(1.05) !important;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(224, 242, 254, 0.88) 100%);
  border-color: #38BDF8;
  box-shadow: 0 0 35px rgba(14, 165, 233, 0.4), 0 20px 40px -5px rgba(2, 132, 199, 0.3), inset 0 0 15px rgba(255, 255, 255, 1);
  z-index: 20;
}

/* Floating positions on desktop - EXACT 3D PERSPECTIVE ARC FROM REFERENCE SCREENSHOT */
.float-pos-left-1 {
  top: 185px;
  left: 210px;
  transform: rotateY(18deg) rotateX(4deg) rotateZ(-2deg);
  animation: floatArcLeft1 5.5s ease-in-out infinite;
}

.float-pos-left-2 {
  top: 65px;
  left: 80px;
  transform: rotateY(22deg) rotateX(6deg) rotateZ(-4deg);
  animation: floatArcLeft2 6.5s ease-in-out infinite 0.6s;
}

.float-pos-left-3 {
  bottom: 95px;
  left: 10px;
  transform: rotateY(26deg) rotateX(8deg) rotateZ(-6deg);
  animation: floatArcLeft3 6s ease-in-out infinite 1.2s;
}

.float-pos-right-1 {
  top: 185px;
  right: 210px;
  transform: rotateY(-18deg) rotateX(4deg) rotateZ(2deg);
  animation: floatArcRight1 5.8s ease-in-out infinite 0.3s;
}

.float-pos-right-2 {
  top: 65px;
  right: 80px;
  transform: rotateY(-22deg) rotateX(6deg) rotateZ(4deg);
  animation: floatArcRight2 6.2s ease-in-out infinite 0.9s;
}

.float-pos-right-3 {
  bottom: 45px;
  right: 10px;
  transform: rotateY(-26deg) rotateX(8deg) rotateZ(6deg);
  animation: floatArcRight3 5.4s ease-in-out infinite 1.5s;
}

/* Arc Floating Keyframes preserving 3D perspective tilt */
@keyframes floatArcLeft1 {
  0%, 100% { transform: translateY(0px) rotateY(18deg) rotateX(4deg) rotateZ(-2deg); }
  50% { transform: translateY(-10px) rotateY(18deg) rotateX(4deg) rotateZ(-2deg); }
}

@keyframes floatArcLeft2 {
  0%, 100% { transform: translateY(0px) rotateY(22deg) rotateX(6deg) rotateZ(-4deg); }
  50% { transform: translateY(-12px) rotateY(22deg) rotateX(6deg) rotateZ(-4deg); }
}

@keyframes floatArcLeft3 {
  0%, 100% { transform: translateY(0px) rotateY(26deg) rotateX(8deg) rotateZ(-6deg); }
  50% { transform: translateY(-10px) rotateY(26deg) rotateX(8deg) rotateZ(-6deg); }
}

@keyframes floatArcRight1 {
  0%, 100% { transform: translateY(0px) rotateY(-18deg) rotateX(4deg) rotateZ(2deg); }
  50% { transform: translateY(-10px) rotateY(-18deg) rotateX(4deg) rotateZ(2deg); }
}

@keyframes floatArcRight2 {
  0%, 100% { transform: translateY(0px) rotateY(-22deg) rotateX(6deg) rotateZ(4deg); }
  50% { transform: translateY(-12px) rotateY(-22deg) rotateX(6deg) rotateZ(4deg); }
}

@keyframes floatArcRight3 {
  0%, 100% { transform: translateY(0px) rotateY(-26deg) rotateX(8deg) rotateZ(6deg); }
  50% { transform: translateY(-10px) rotateY(-26deg) rotateX(8deg) rotateZ(6deg); }
}

/* Badge Icon styles */
.float-badge-icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.8), 0 2px 6px rgba(0, 0, 0, 0.04);
}

.icon-bg-orange {
  background: linear-gradient(135deg, #FFF0EB 0%, #FFE0D6 100%);
  color: #FF5722;
}

.icon-bg-blue {
  background: linear-gradient(135deg, #E0F2FE 0%, #BAE6FD 100%);
  color: #0284C7;
}

.icon-bg-purple {
  background: linear-gradient(135deg, #F3E8FF 0%, #E9D5FF 100%);
  color: #9333EA;
}

.icon-bg-green {
  background: linear-gradient(135deg, #DCFCE7 0%, #BBF7D0 100%);
  color: #16A34A;
}

.icon-bg-coral {
  background: linear-gradient(135deg, #FFEDD5 0%, #FED7AA 100%);
  color: #EA580C;
}

.icon-bg-navy {
  background: linear-gradient(135deg, #E2E8F0 0%, #CBD5E1 100%);
  color: #0F172A;
}

/* Badge Content */
.float-badge-title {
  font-size: 14px;
  font-weight: 800;
  color: #0F172A;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.float-badge-sub {
  font-size: 11px;
  font-weight: 500;
  color: #475569;
  margin-top: 1px;
  white-space: nowrap;
}

/* Shiny Pill Tags */
.float-tag {
  font-size: 9.5px;
  font-weight: 800;
  padding: 2.5px 8px;
  border-radius: 12px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  display: inline-block;
}

.tag-pop {
  background: #FF5722;
  color: #FFFFFF;
}

.tag-fast {
  background: #0284C7;
  color: #FFFFFF;
}

.tag-boost {
  background: #9333EA;
  color: #FFFFFF;
}

.tag-new {
  background: #EA580C;
  color: #FFFFFF;
}

.tag-skills {
  background: #16A34A;
  color: #FFFFFF;
}

.tag-hire {
  background: #0F172A;
  color: #FFFFFF;
}

/* Mobile & Tablet Responsiveness */
@media (max-width: 1024px) {
  .float-pos-left-1 {
    left: 5px;
    top: 10px;
  }

  .float-pos-right-1 {
    right: 5px;
    top: 10px;
  }

  .float-pos-left-2 {
    left: -5px;
    top: 100px;
  }

  .float-pos-right-2 {
    right: -5px;
    top: 100px;
  }

  .float-pos-left-3 {
    left: 10px;
    bottom: 20px;
  }

  .float-pos-right-3 {
    right: 10px;
    bottom: 20px;
  }
}

@media (max-width: 768px) {
  .floating-service-badges {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    display: flex;
    overflow-x: auto;
    gap: 12px;
    padding: 12px 16px 20px 16px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 10px;
  }

  .hero-float-badge {
    position: relative;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    animation: none !important;
    flex-shrink: 0;
    scroll-snap-align: start;
  }
}

/* ==========================================================================
   PROMOTIONAL BANNERS CAROUSEL SECTION (EXACT SHINE.COM REPLICA)
   ========================================================================== */
.promo-carousel-section {
  padding: 40px 0 60px 0;
  background: #FFFFFF;
}

.promo-marquee-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
  mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}

.promo-marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: marqueeInfinite 28s linear infinite;
}

.promo-marquee-wrapper:hover .promo-marquee-track {
  animation-play-state: paused;
}

.promo-banner-card {
  flex: 0 0 640px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
}

.promo-banner-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.promo-banner-card img {
  width: 100%;
  height: 260px;
  display: block;
  border-radius: 16px;
}

/* ==========================================================================
   EXPLORE JOBS SECTION (EXACT SHINE.COM REPLICA)
   ========================================================================== */
.explore-jobs-section {
  padding: 60px 0 80px 0;
  background: #FFFFFF;
}

.explore-pill-container {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

.explore-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #F1F5F9;
  border-radius: 20px;
  padding: 8px 24px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.2px;
  color: #1E293B;
  text-transform: uppercase;
}

.pill-dot-left,
.pill-dot-right {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #CBD5E1;
}

.tab-switcher-container {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.tab-switcher-box {
  display: inline-flex;
  background: #E2E8F0;
  border-radius: 30px;
  padding: 4px;
  border: 1px solid #CBD5E1;
}

.tab-btn {
  padding: 10px 44px;
  border-radius: 26px;
  border: none;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  background: transparent;
  color: #475569;
}

.tab-btn.active {
  background: #FFFFFF;
  color: #0F172A;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.explore-cards-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(2, 160px);
  gap: 20px;
}

.explore-card {
  background: #FFFFFF;
  border: 1.5px solid #E2E8F0;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
  transition: all 0.25s ease;
  cursor: pointer;
}

.explore-card:hover {
  transform: translateY(-4px);
  border-color: var(--brand-orange);
  box-shadow: 0 12px 28px rgba(5, 59, 130, 0.08);
}

.explore-card-tall {
  grid-row: span 2;
  height: 100%;
}

.explore-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.explore-card-title {
  font-size: 15px;
  font-weight: 700;
  color: #0F172A;
  text-align: center;
}

/* BY WORK MODE GRID (3 Columns - Exact match to user screenshot) */
.workmode-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.workmode-card {
  background: #FFFFFF;
  border: 1.5px solid #E2E8F0;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 40px 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
  transition: all 0.25s ease;
  cursor: pointer;
}

.workmode-card:hover {
  transform: translateY(-4px);
  border-color: var(--brand-orange);
  box-shadow: 0 12px 28px rgba(5, 59, 130, 0.08);
}

.workmode-subtitle {
  font-size: 13px;
  font-weight: 500;
  color: #64748B;
  text-align: center;
}

.hidden {
  display: none !important;
}

/* ==========================================================================
   COOL PLACES TO WORK (INFINITE MARQUEE LOOP - EXACT SHINE REPLICA)
   ========================================================================== */
.cool-places-section-shine {
  padding: 60px 0 0 0;
  background: var(--bg-hero-shine);
  text-align: center;
  overflow: hidden;
}

.cool-marquee-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
  margin-bottom: 40px;
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.cool-marquee-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: marqueeInfinite 24s linear infinite;
}

.cool-marquee-wrapper:hover .cool-marquee-track {
  animation-play-state: paused;
}

@keyframes marqueeInfinite {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.cool-logo-pill-card {
  background: #FFFFFF;
  border-radius: 14px;
  padding: 6px 20px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(226, 232, 240, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 64px;
  min-width: 155px;
  flex-shrink: 0;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
}

.cool-logo-pill-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
  border-color: rgba(226, 232, 240, 0.9);
}

.cool-logo-pill-card img {
  max-height: 48px;
  max-width: 145px;
  width: auto;
  object-fit: contain;
}

.cool-places-illustration {
  display: flex;
  justify-content: center;
  line-height: 0;
  margin-top: 16px;
}

.cool-places-illustration img {
  max-width: 680px;
  width: 100%;
  height: auto;
  display: block;
}

/* ==========================================================================
   TOP STARTUPS HIRING SECTION (EXACT SHINE.COM REPLICA)
   ========================================================================== */
.top-startups-section {
  padding: 60px 0 80px 0;
  background: #FFFFFF;
}

.startups-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.startup-card {
  background: #FFFFFF;
  border-radius: 20px;
  border: 1.5px solid #E2E8F0;
  padding: 36px 20px 24px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.startup-card:hover {
  transform: translateY(-4px);
  border-color: var(--brand-orange);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
}

.startup-logo-circle {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: #FFFFFF;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  padding: 10px;
}

.startup-logo-circle img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.startup-title {
  font-size: 19px;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 4px;
}

.startup-category {
  font-size: 13px;
  font-weight: 500;
  color: #64748B;
  margin-bottom: 24px;
}

.btn-startup-view {
  display: inline-block;
  padding: 6px 30px;
  border-radius: 20px;
  border: 1.5px solid #EAB308;
  background: #FFFFFF;
  color: #B45309;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.startup-card:hover .btn-startup-view {
  background: var(--brand-orange);
  border-color: var(--brand-orange);
  color: #FFFFFF;
}

/* ==========================================================================
   COMPANY LOGOS MARQUEE (auto-scroll, replaces startups-grid)
   ========================================================================== */
.companies-marquee-wrapper {
  overflow: hidden;
  width: 100%;
  padding: 12px 0 40px;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.companies-marquee-wrapper:hover .companies-marquee-track {
  animation-play-state: paused;
}

.companies-marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: companiesScroll 28s linear infinite;
}

@keyframes companiesScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.company-logo-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  cursor: pointer;
  transition: transform 0.25s ease;
}

.company-logo-card:hover {
  transform: translateY(-4px);
}

.company-logo-img-wrap {
  width: 160px;
  height: 100px;
  border-radius: 16px;
  background: #FFFFFF;
  border: 1.5px solid #E2E8F0;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 12px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.company-logo-card:hover .company-logo-img-wrap {
  border-color: var(--brand-orange);
  box-shadow: 0 8px 24px rgba(255, 87, 34, 0.12);
}

.company-logo-img-wrap img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.company-logo-name {
  font-size: 13px;
  font-weight: 700;
  color: #334155;
  text-align: center;
  letter-spacing: 0.1px;
}

/* ==========================================================================
   APP DOWNLOAD BANNER (EXACT MATCH TO USER SCREENSHOT WITH WAVE BACKGROUND)
   ========================================================================== */
.app-download-section {
  padding: 90px 0;
  position: relative;
  overflow: hidden;
  background: #FFFFFF;
}

.app-wave-wrapper {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  z-index: 1;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.app-wave-img {
  width: 100%;
  max-width: 1440px;
  height: auto;
  opacity: 0.9;
  /* Converts Shine yellow wave to brand orange wave tint */
  filter: sepia(100%) hue-rotate(-30deg) saturate(400%) opacity(0.65);
}

.app-banner-card-shine {
  background: linear-gradient(90deg, #FFFFFF 48%, #FFF4EC 65%, #FFEADB 100%);
  border-radius: 24px;
  padding: 44px 50px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.07);
  border: 1px solid rgba(226, 232, 240, 0.8);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
  overflow: hidden;
  min-height: 290px;
}

.app-banner-left {
  max-width: 55%;
  z-index: 3;
}

.app-banner-right {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  z-index: 2;
  overflow: hidden;
}

/* Full height absolute cover completely eliminates any top/bottom/side box borders */
.app-graphic-img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: right center;
  mix-blend-mode: multiply;
}

.app-logo-img {
  height: 40px;
  width: auto;
  margin-bottom: 20px;
  display: block;
}

.app-title-text {
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 4px;
}

.app-subtitle-text {
  font-size: 14px;
  font-weight: 500;
  color: #64748B;
  margin-bottom: 28px;
}

.app-stats-row {
  display: flex;
  align-items: center;
  gap: 24px;
}

.stat-box {
  display: flex;
  flex-direction: column;
}

.stat-val {
  font-size: 18px;
  font-weight: 800;
  color: #0F172A;
  display: flex;
  align-items: center;
}

.star-orange {
  color: var(--brand-orange);
  margin-left: 4px;
  font-size: 16px;
}

.stat-lbl {
  font-size: 11px;
  font-weight: 600;
  color: #94A3B8;
  margin-top: 2px;
}

.stat-avatars {
  display: flex;
  align-items: center;
}

.stat-divider {
  width: 1px;
  height: 28px;
  background: #E2E8F0;
}

.store-circles {
  display: flex;
  align-items: center;
  gap: 12px;
}

.store-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease;
}

.store-circle:hover {
  transform: translateY(-2px);
}

.store-apple {
  background: #00A3FF;
}

.store-play {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
}

.app-graphic-img {
  max-height: 280px;
  width: auto;
  display: block;
}

/* ==========================================================================
   TRENDING BLOGS
   ========================================================================== */
.blogs-section {
  padding: 60px 0;
  background: #FFFFFF;
}

.blogs-grid-shine {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.blog-item-card {
  background: #FFFFFF;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #E2E8F0;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
}

.blog-item-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.blog-thumb {
  height: 150px;
  overflow: hidden;
}

.blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-category-tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--brand-orange);
  margin-bottom: 6px;
}

.blog-item-title {
  font-size: 14px;
  font-weight: 700;
  color: #1A1A1A;
  line-height: 1.4;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-read-link {
  margin-top: auto;
  font-size: 13px;
  font-weight: 700;
  color: var(--brand-orange);
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */
.faq-section {
  padding: 60px 0;
  background: var(--bg-subtle);
  border-top: 1px solid #E2E8F0;
}

.faq-header {
  text-align: center;
  margin-bottom: 36px;
}

.faq-title {
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 800;
  color: #0B192C;
  margin-bottom: 8px;
}

.faq-subtitle {
  font-size: 15px;
  color: #64748B;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.faq-item:hover {
  border-color: var(--brand-orange);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 18px 22px;
  background: none;
  border: none;
  text-align: left;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  color: #0B192C;
  cursor: pointer;
}

.faq-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #F1F5F9;
  color: #0B192C;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.faq-icon svg {
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  background: var(--brand-orange);
  color: #FFFFFF;
}

.faq-item.active .faq-icon svg {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 22px 18px;
}

.faq-answer.hidden {
  display: none;
}

.faq-answer p {
  font-size: 14px;
  line-height: 1.6;
  color: #64748B;
}

/* ==========================================================================
   APP DOWNLOAD BANNER
   ========================================================================== */
.app-download-section {
  padding: 60px 0;
}

.app-banner-card {
  background: linear-gradient(135deg, #0B192C 0%, #1E3E62 100%);
  border-radius: 20px;
  padding: 44px 50px;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.app-banner-title {
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 10px;
}

.app-banner-title span {
  color: var(--brand-orange);
}

.app-banner-desc {
  font-size: 15px;
  color: #CBD5E1;
  margin-bottom: 24px;
  max-width: 480px;
}

.app-store-btns {
  display: flex;
  gap: 14px;
}

.app-btn {
  background: #FFFFFF;
  color: #0B192C;
  padding: 10px 22px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
}

/* ==========================================================================
   JOBS MATRIX & LINKS ACCORDION (EXACT SHINE REPLICA)
   ========================================================================== */
.jobs-matrix-section {
  padding: 50px 0;
  background: #F8FAFC;
  border-top: 1px solid #E2E8F0;
}

.matrix-tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 28px;
  overflow-x: auto;
  scrollbar-width: none;
}

.matrix-tabs::-webkit-scrollbar {
  display: none;
}

.matrix-tab {
  background: #FFFFFF;
  padding: 10px 20px;
  border-radius: 24px;
  border: 1.5px solid #E2E8F0;
  font-size: 13px;
  font-weight: 700;
  color: #475569;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.matrix-tab.active {
  background: var(--brand-navy);
  color: #FFFFFF;
  border-color: var(--brand-navy);
}

.matrix-links-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: opacity 0.2s ease;
}

.matrix-links-grid.hidden {
  display: none;
}

.matrix-main-links,
.matrix-extra-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.matrix-extra-links {
  margin-top: 16px;
  padding-top: 20px;
  border-top: 1px dashed #CBD5E1;
  animation: fadeIn 0.3s ease-in-out;
}

.matrix-extra-links.hidden {
  display: none;
}

.btn-view-all-matrix {
  background: none;
  border: none;
  color: var(--brand-orange);
  font-weight: 700;
  font-size: 13.5px;
  cursor: pointer;
  padding: 0;
  margin-top: 2px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s ease, transform 0.2s ease;
}

.btn-view-all-matrix:hover {
  color: var(--brand-navy);
  transform: translateX(2px);
}

.matrix-links-grid ul {
  list-style: none;
}

.matrix-links-grid li {
  margin-bottom: 14px;
}

.matrix-links-grid a {
  font-size: 13px;
  color: #475569;
  font-weight: 500;
  transition: color 0.2s ease;
}

.matrix-links-grid a:hover {
  color: var(--brand-orange);
}

/* ==========================================================================
   MAIN DARK NAVY FOOTER & PARTNER MARQUEE (EXACT SHINE REPLICA)
   ========================================================================== */
.footer-shine-dark {
  background: #1A2E50;
  color: #FFFFFF;
  padding: 50px 0 0 0;
}

.footer-shine-columns {
  display: grid;
  grid-template-columns: 1.3fr repeat(4, 1fr);
  gap: 28px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col-accordions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-accordion-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  user-select: none;
  transition: all 0.25s ease;
}

.footer-accordion-item:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--brand-orange);
}

.accordion-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.footer-accordion-item.active .accordion-arrow {
  transform: rotate(180deg);
}

.footer-accordion-content {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 14px 18px;
  margin-top: -4px;
  margin-bottom: 8px;
  transition: all 0.3s ease;
}

.footer-accordion-content.hidden {
  display: none;
}

.footer-accordion-content ul {
  list-style: none;
}

.footer-accordion-content li {
  margin-bottom: 10px;
}

.footer-accordion-content li:last-child {
  margin-bottom: 0;
}

.footer-accordion-content a {
  font-size: 13px;
  color: #94A3B8;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-accordion-content a:hover {
  color: var(--brand-orange);
}

.footer-col-title {
  font-size: 15px;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 20px;
}

.footer-links-list {
  list-style: none;
}

.footer-links-list li {
  margin-bottom: 12px;
}

.footer-links-list a {
  font-size: 13px;
  color: #94A3B8;
  transition: color 0.2s ease;
}

.footer-links-list a:hover {
  color: #FFFFFF;
}

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: #94A3B8;
  line-height: 1.6;
}

.footer-contact-list li a {
  color: #94A3B8;
  transition: color 0.2s ease;
}

.footer-contact-list li a:hover {
  color: #FFFFFF;
}

.footer-contact-icon {
  flex-shrink: 0;
  font-size: 15px;
  line-height: 1.5;
}

/* App Banner & Partner Sites Marquee Row */
.footer-bottom-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 36px 0;
  gap: 32px;
}

.footer-app-banner {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex: 0 0 460px;
}

.footer-app-title {
  font-size: 18px;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 4px;
}

.footer-app-desc {
  font-size: 12px;
  color: #94A3B8;
}

.btn-footer-app {
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 10px;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 13px;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.btn-footer-app:hover {
  background: var(--brand-orange);
  border-color: var(--brand-orange);
}

.footer-partners-container {
  flex: 1;
  overflow: hidden;
  text-align: center;
}

.partner-header-lbl {
  font-size: 12px;
  font-weight: 700;
  color: #94A3B8;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.partner-marquee-wrapper {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.partner-marquee-track {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: marqueePartner 18s linear infinite;
}

.partner-marquee-wrapper:hover .partner-marquee-track {
  animation-play-state: paused;
}

@keyframes marqueePartner {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.partner-card {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 8px 20px;
  height: 48px;
  min-width: 125px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  flex-shrink: 0;
}

.partner-card img {
  max-height: 30px;
  max-width: 105px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

/* Sub-Footer Bottom Bar */
.sub-footer-bar {
  background: #0D1A30;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.sub-footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: #94A3B8;
}

.sub-footer-left {
  display: flex;
  align-items: center;
}

.sub-footer-center {
  display: flex;
  gap: 12px;
}

.sub-footer-center a {
  color: #94A3B8;
  transition: color 0.2s ease;
}

.sub-footer-center a:hover {
  color: #FFFFFF;
}

.sub-footer-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons a {
  opacity: 0.8;
  transition: opacity 0.2s ease, transform 0.2s ease;
  display: flex;
  align-items: center;
}

.social-icons a:hover {
  opacity: 1;
  transform: translateY(-2px);
}

/* ==========================================================================
   MODALS
   ========================================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(4px);
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.modal-overlay.active {
  opacity: 1 !important;
  pointer-events: auto !important;
  display: flex !important;
}

.modal-box {
  background: #FFFFFF;
  border-radius: 16px;
  width: 100%;
  max-width: 400px;
  padding: 30px;
  position: relative;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 87, 34, 0.45) transparent;
}

.modal-box::-webkit-scrollbar {
  width: 8px;
}

.modal-box::-webkit-scrollbar-track {
  background: transparent;
}

.modal-box::-webkit-scrollbar-thumb {
  background-color: rgba(255, 87, 34, 0.45);
  border-radius: 20px;
  border: 2px solid #FFFFFF;
  background-clip: padding-box;
}

.modal-box::-webkit-scrollbar-thumb:hover {
  background-color: rgba(255, 87, 34, 0.75);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 22px;
  color: #999999;
  cursor: pointer;
}

.modal-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: #1A1A1A;
  text-align: center;
  margin-bottom: 4px;
}

.modal-sub {
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 14px;
}

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 4px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  font-size: 13px;
  outline: none;
  font-family: inherit;
}

.form-group textarea {
  resize: vertical;
  min-height: 70px;
}

.btn-modal-secondary {
  width: 100%;
  padding: 11px;
  background: transparent;
  color: #666666;
  border: 1px solid #E2E8F0;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 8px;
}

.resume-selected-plan-note {
  background: #FFF5EE;
  border: 1px solid #FFD9C2;
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 13px;
  color: #7A2E00;
  margin-bottom: 18px;
  text-align: center;
}

.resume-success-state {
  text-align: center;
  padding: 20px 10px 10px;
}

.resume-success-icon {
  font-size: 44px;
  margin-bottom: 12px;
}

/* Resume Order Form — Tag Picker (dropdown-or-custom, converts to a badge) */
.resume-tag-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 6px;
}

.resume-tag-badges:empty {
  display: none;
}

.resume-tag-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #FFF5EE;
  color: var(--brand-orange);
  border: 1px solid #FFD9C2;
  border-radius: 20px;
  padding: 4px 6px 4px 12px;
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1.4;
}

.resume-tag-remove {
  background: none;
  border: none;
  color: var(--brand-orange);
  font-size: 15px;
  line-height: 1;
  cursor: pointer;
  padding: 2px 6px;
  border-radius: 50%;
}

.resume-tag-remove:hover {
  background: rgba(255, 87, 34, 0.15);
}

.resume-tag-picker-wrapper {
  position: relative;
  width: 100%;
}

.resume-tag-picker-options {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.14);
  padding: 6px;
  z-index: 20;
  max-height: 180px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 87, 34, 0.45) transparent;
}

.resume-tag-picker-options::-webkit-scrollbar {
  width: 6px;
}

.resume-tag-picker-options::-webkit-scrollbar-track {
  background: transparent;
}

.resume-tag-picker-options::-webkit-scrollbar-thumb {
  background-color: rgba(255, 87, 34, 0.45);
  border-radius: 20px;
}

.resume-tag-picker-options.hidden {
  display: none;
}

.resume-tag-picker-options .custom-option {
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 13px;
  color: #334155;
}

.resume-tag-picker-options .custom-option:hover {
  background: #FFF5EE;
  color: var(--brand-orange);
}

.resume-tag-picker-empty {
  padding: 8px 12px;
  font-size: 12.5px;
  color: #94A3B8;
}

.btn-modal-action {
  width: 100%;
  padding: 12px;
  background: var(--brand-orange);
  color: #FFFFFF;
  border: none;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 8px;
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }

  .hero-title {
    font-size: 30px;
    padding: 0 12px;
  }

  .hero-subtitle {
    padding: 0 16px;
  }

  .search-box {
    flex-direction: column;
    border-radius: 20px;
    padding: 16px;
  }

  .search-field {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #E2E8F0;
  }

  .enterprise-logos {
    gap: 20px 28px;
  }

  .enterprise-logos img {
    height: 30px;
  }

  .search-btn-shine {
    width: 100%;
  }
}

/* ==========================================================================
   MOBILE NAVIGATION — must match the breakpoint that makes .mobile-menu-toggle
   visible (860px, see the max-width:860px block above) exactly, or there's a
   dead zone where the hamburger button shows but tapping it does nothing
   (this happened before: toggle appeared up to 860px, but this block only
   activated at 600px, so 601-860px had a visibly-broken hamburger).
   ========================================================================== */
@media (max-width: 860px) {
  .mobile-menu-toggle {
    display: flex;
  }

  .navbar {
    flex-wrap: wrap;
    height: auto;
    padding: 14px 20px;
    box-sizing: border-box;
  }

  .nav-left {
    width: 100%;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0;
  }

  .nav-menu,
  .nav-right {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .nav-menu {
    order: 3;
    gap: 2px;
    margin-top: 16px;
  }

  .nav-right {
    gap: 10px;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid #E2E8F0;
  }

  /* When open, the whole navbar becomes one fixed, independently-scrollable
     panel — it no longer relies on the sticky header growing taller (which
     was what blocked page scroll), and nav-menu/nav-right stay in their
     normal document order inside it, so they scroll together as one list. */
  body.mobile-nav-open .navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: #FFFFFF;
    z-index: 1001;
    align-content: flex-start;
    padding-bottom: 40px;
  }

  body.mobile-nav-open .nav-menu,
  body.mobile-nav-open .nav-right {
    display: flex;
  }

  .nav-item {
    padding: 10px 4px;
    width: 100%;
  }

  .nav-dropdown-wrapper {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .nav-dropdown-btn {
    width: 100%;
    justify-content: space-between;
  }

  /* Higher specificity than ".nav-dropdown-wrapper:hover .mega-dropdown-menu"
     is required here: touch devices keep a tapped element's :hover state
     "stuck" until something else is tapped, so a plain ".mega-dropdown-menu"
     rule loses to that hover rule and the menu refuses to visually close
     even after the "active" class is removed. */
  .nav-dropdown-wrapper:not(.active) .mega-dropdown-menu {
    display: none !important;
  }

  .nav-dropdown-wrapper.active .mega-dropdown-menu {
    display: block !important;
    position: static !important;
    width: 100%;
    box-shadow: none;
    border: 1px solid #E2E8F0;
    padding: 14px;
    margin-top: 8px;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .mega-dropdown-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .btn-register-shine,
  .btn-login-shine,
  .btn-recruiter-shine,
  .btn-nav-logout {
    width: 100%;
    display: block;
    text-align: center;
    box-sizing: border-box;
  }

  .btn-recruiter-shine {
    padding: 9px 28px;
    font-size: 14px;
    font-weight: 700;
    color: #FFFFFF;
    justify-content: center;
  }

  .nav-user-profile {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================================
   ULTRA-PREMIUM AESTHETIC & INTERACTIVE ENHANCEMENTS
   ========================================================================== */

/* 1. Hero Character Gentle Floating Animation */
@keyframes heroFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }
}

.hero-illustration img {
  animation: heroFloat 4s ease-in-out infinite;
}

/* 2. Floating Search Box Ambient Focus Glow */
.search-box {
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.search-box:focus-within {
  border-color: var(--brand-orange);
  box-shadow: 0 12px 35px rgba(255, 87, 34, 0.14), 0 0 0 4px rgba(255, 87, 34, 0.08);
}

/* 3. Explore Job Cards Enhanced Hover Elevation & Icon Scale */
.explore-card {
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.25s ease, box-shadow 0.25s ease;
}

.explore-card-icon {
  transition: transform 0.25s ease;
}

.explore-card:hover {
  border-color: var(--brand-orange);
  box-shadow: 0 12px 28px rgba(5, 59, 130, 0.08);
  transform: translateY(-4px);
}

.explore-card:hover .explore-card-icon {
  transform: scale(1.12);
}

/* 4. Top Startup Cards Accent Glow */
.startup-card {
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.startup-card:hover {
  border-color: var(--brand-orange);
  box-shadow: 0 14px 32px rgba(255, 87, 34, 0.12);
  transform: translateY(-4px);
}

/* 5. Trending Blogs Smooth Thumbnail Zoom */
.blog-item-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.blog-thumb {
  overflow: hidden;
}

.blog-thumb img {
  transition: transform 0.4s ease;
}

.blog-item-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.blog-item-card:hover .blog-thumb img {
  transform: scale(1.08);
}

/* 6. Footer Top Premium Brand Gradient Accent Line */
.footer-shine-dark {
  position: relative;
}

/* Featured Profile Modal & Plan Cards */
.modal-box-large {
  max-width: 660px;
  padding: 32px;
}

.featured-badge-shine {
  background: var(--brand-orange-light);
  color: var(--brand-orange);
  font-size: 11px;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 20px;
  letter-spacing: 0.8px;
  display: inline-block;
}

.featured-modal-header {
  text-align: center;
  margin-bottom: 24px;
}

.featured-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 24px;
}

.benefit-card {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 14px;
  text-align: center;
}

.benefit-icon {
  font-size: 22px;
  margin-bottom: 6px;
}

.benefit-title {
  font-size: 13px;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 4px;
}

.benefit-desc {
  font-size: 11px;
  color: #64748B;
  line-height: 1.3;
}

.plans-section-title {
  font-size: 13px;
  font-weight: 800;
  color: #0F172A;
  text-align: center;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.plan-card {
  border: 1.5px solid #E2E8F0;
  border-radius: 16px;
  padding: 20px 12px;
  text-align: center;
  position: relative;
  transition: all 0.25s ease;
  background: #FFFFFF;
}

.plan-card-popular {
  border-color: var(--brand-orange);
  box-shadow: 0 10px 25px rgba(255, 87, 34, 0.12);
}

.popular-ribbon {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand-orange);
  color: #FFFFFF;
  font-size: 9px;
  font-weight: 800;
  padding: 2px 10px;
  border-radius: 10px;
  white-space: nowrap;
}

.plan-duration {
  font-size: 12.5px;
  font-weight: 700;
  color: #64748B;
}

.plan-price {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: #0F172A;
  margin: 6px 0;
}

.plan-feat {
  font-size: 11px;
  color: #475569;
  margin-bottom: 14px;
  min-height: 30px;
}

.btn-plan-select {
  width: 100%;
  padding: 8px;
  border-radius: 20px;
  border: 1px solid #CBD5E1;
  background: #FFFFFF;
  color: #334155;
  font-size: 11.5px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-plan-select:hover {
  border-color: var(--brand-orange);
  color: var(--brand-orange);
}

/* Current-plan-aware states — set by JS when a logged-in candidate has
   already purchased one of these plan tiers before (resume writing plans,
   same pattern as .pp-btn-current/.pp-btn-disabled for job packages). */
.btn-plan-current {
  background: #16A34A !important;
  border-color: #16A34A !important;
  color: #FFFFFF !important;
  cursor: default;
}

.btn-plan-current:hover {
  color: #FFFFFF;
}

.btn-plan-disabled {
  background: #F1F5F9 !important;
  border-color: #E2E8F0 !important;
  color: #94A3B8 !important;
  cursor: not-allowed;
}

.btn-plan-disabled:hover {
  border-color: #E2E8F0;
  color: #94A3B8;
}

.btn-plan-popular {
  background: var(--brand-orange);
  color: #FFFFFF;
  border: none;
}

.btn-plan-popular:hover {
  background: var(--brand-orange-hover);
  color: #FFFFFF;
}

/* ==========================================================================
   RECRUITER HIRING PACKAGES MODAL
   ========================================================================== */
.pkg-modal-box {
  max-width: 780px;
  max-height: 90vh;
  overflow-y: auto;
  overflow-x: hidden;
  border-radius: 24px;
  box-shadow: 0 25px 70px rgba(15, 23, 42, 0.3);
  box-sizing: border-box;
}

.pkg-modal-header {
  text-align: center;
  margin-bottom: 26px;
}

.pkg-plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: start;
}

.pkg-plan-card {
  background: #FFFFFF;
  border: 1.5px solid #E2E8F0;
  border-radius: 20px;
  padding: 26px 20px;
  text-align: center;
  position: relative;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease, border-color 0.25s ease;
}

.pkg-plan-card:hover {
  transform: translateY(-6px);
  border-color: var(--brand-navy);
  box-shadow: 0 16px 36px rgba(5, 59, 130, 0.12);
}

.pkg-plan-card-popular {
  border-color: var(--brand-navy);
  background: #FFFFFF;
  box-shadow: 0 14px 34px rgba(5, 59, 130, 0.18);
  transform: scale(1.04);
}

.pkg-plan-card-popular:hover {
  transform: scale(1.04) translateY(-6px);
}

.pkg-ribbon {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand-orange);
  color: #FFFFFF;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 4px 14px;
  border-radius: 12px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(255, 87, 34, 0.35);
}

.pkg-plan-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: rgba(5, 59, 130, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.pkg-plan-duration {
  font-size: 13px;
  font-weight: 800;
  color: #64748B;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 6px;
}

.pkg-plan-price {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
  color: var(--brand-navy);
  margin-bottom: 18px;
}

.pkg-feat-list {
  list-style: none;
  text-align: left;
  margin-bottom: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pkg-feat-list li {
  position: relative;
  padding-left: 26px;
  font-size: 13.5px;
  font-weight: 600;
  color: #334155;
}

.pkg-feat-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--brand-orange-light);
  color: var(--brand-orange);
  font-size: 11px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pkg-btn-select {
  width: 100%;
  padding: 12px;
  border-radius: 14px;
  border: 1.5px solid #CBD5E1;
  background: #FFFFFF;
  color: var(--brand-navy);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.pkg-btn-select:hover {
  border-color: var(--brand-navy);
  background: var(--brand-navy);
  color: #FFFFFF;
}

.pkg-btn-popular {
  background: var(--brand-orange);
  border: none;
  color: #FFFFFF;
  box-shadow: 0 8px 20px rgba(255, 87, 34, 0.35);
}

.pkg-btn-popular:hover {
  background: var(--brand-orange-hover);
  color: #FFFFFF;
}

.pkg-gst-note {
  text-align: left;
  font-size: 10.5px;
  font-weight: 600;
  color: #94A3B8;
  margin-top: 8px;
}

@media (max-width: 600px) {
  .pkg-plans-grid {
    grid-template-columns: 1fr;
  }

  .pkg-plan-card-popular {
    transform: none;
  }

  .pkg-plan-card-popular:hover {
    transform: translateY(-6px);
  }
}

/* ==========================================================================
   DEDICATED PACKAGES PAGE (packages.html)
   ========================================================================== */
.packages-page-hero {
  padding: 24px 0 8px;
  text-align: center;
  background: #FFFFFF;
}

.packages-page-hero .featured-badge-shine {
  margin-bottom: 14px;
}

.packages-page-title {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 800;
  color: #0B192C;
  margin: 6px 0 12px;
}

.packages-page-subtitle {
  font-size: 15.5px;
  color: #64748B;
  max-width: 560px;
  margin: 0 auto;
}

.packages-plans-section {
  padding: 4px 0 90px;
  background: #FFFFFF;
}

.packages-plans-section .pkg-plans-grid {
  max-width: 980px;
  margin: 0 auto;
}

/* ---- Pricing cards (mockup-matched layout) ---- */
.pp-plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1040px;
  margin: 0 auto;
}

.pp-card {
  background: #FFFFFF;
  border: 1.5px solid #E2E8F0;
  border-radius: 20px;
  padding: 28px 24px;
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.05);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease, border-color 0.25s ease;
  display: flex;
  flex-direction: column;
}

.pp-card:hover {
  transform: translateY(-6px);
  border-color: var(--brand-navy);
  box-shadow: 0 0 0 4px rgba(5, 59, 130, 0.12), 0 16px 36px rgba(5, 59, 130, 0.16);
}

.pp-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.pp-icon-circle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pp-duration {
  font-size: 14px;
  font-weight: 800;
}

.pp-price {
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 8px;
}

.pp-price-underline {
  width: 46px;
  height: 3px;
  border-radius: 2px;
  margin-bottom: 22px;
}

.pp-feat-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
  flex: 1;
}

.pp-feat-list li {
  position: relative;
  padding-left: 28px;
  font-size: 13.5px;
  font-weight: 600;
  color: #334155;
  line-height: 1.4;
}

.pp-feat-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pp-btn {
  width: 100%;
  padding: 13px;
  border-radius: 12px;
  border: none;
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: filter 0.2s ease, transform 0.2s ease;
}

.pp-btn:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

/* Current-plan-aware states for the Starter/Growth/Enterprise ladder — set
   by main.js when an employer already has an active job package. */
.pp-btn-current {
  background: #16A34A !important;
  cursor: default;
}

.pp-btn-current:hover {
  filter: none;
  transform: none;
}

.pp-btn-disabled {
  background: #CBD5E1 !important;
  color: #64748B !important;
  cursor: not-allowed;
}

.pp-btn-disabled:hover {
  filter: none;
  transform: none;
}

.pp-gst {
  text-align: center;
  font-size: 11.5px;
  color: #94A3B8;
  margin-top: 14px;
}

.pp-card-navy .pp-icon-circle,
.pp-card-navy .pp-feat-list li::before {
  background: rgba(5, 59, 130, 0.1);
  color: var(--brand-navy);
}

.pp-card-navy .pp-duration {
  color: var(--brand-navy);
}

.pp-card-navy .pp-price-underline,
.pp-card-navy .pp-btn {
  background: var(--brand-navy);
}

.pp-card-orange .pp-icon-circle,
.pp-card-orange .pp-feat-list li::before {
  background: var(--brand-orange-light);
  color: var(--brand-orange);
}

.pp-card-orange .pp-duration {
  color: var(--brand-orange);
}

.pp-card-orange .pp-price-underline,
.pp-card-orange .pp-btn {
  background: var(--brand-orange);
}

.pp-card-red .pp-icon-circle,
.pp-card-red .pp-feat-list li::before {
  background: rgba(217, 26, 42, 0.1);
  color: var(--brand-red);
}

.pp-card-red .pp-duration {
  color: var(--brand-red);
}

.pp-card-red .pp-price-underline,
.pp-card-red .pp-btn {
  background: var(--brand-red);
}

.pp-card-purple .pp-icon-circle,
.pp-card-purple .pp-feat-list li::before {
  background: #F3E8FF;
  color: #7C3AED;
}

.pp-card-purple .pp-duration {
  color: #7C3AED;
}

.pp-card-purple .pp-price-underline,
.pp-card-purple .pp-btn {
  background: #7C3AED;
}

.pp-card-green .pp-icon-circle,
.pp-card-green .pp-feat-list li::before {
  background: #DCFCE7;
  color: #16A34A;
}

.pp-card-green .pp-duration {
  color: #16A34A;
}

.pp-card-green .pp-price-underline,
.pp-card-green .pp-btn {
  background: #16A34A;
}

.pp-tagline {
  font-size: 13.5px;
  font-weight: 800;
  color: #0F172A;
  margin: -8px 0 10px;
}

.pp-desc {
  font-size: 12.5px;
  color: #64748B;
  line-height: 1.55;
  margin-bottom: 18px;
}

/* ---- Premium add-on packages (own grid, sits above the footer) ---- */
.pp-addon-section {
  max-width: 1040px;
  margin: 44px auto 0;
}

.pp-addon-heading {
  text-align: center;
  font-size: 22px;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 6px;
}

.pp-addon-sub {
  text-align: center;
  font-size: 13.5px;
  color: #64748B;
  margin-bottom: 26px;
}

.pp-addon-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (max-width: 700px) {
  .pp-addon-grid {
    grid-template-columns: 1fr;
  }
}

/* ---- Bottom "why choose us" features bar ---- */
.pp-features-bar {
  max-width: 1040px;
  margin: 40px auto 0;
  background: #FFFFFF;
  border: 1.5px solid #E2E8F0;
  border-radius: 20px;
  padding: 26px 10px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.pp-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 0 20px;
  border-left: 1px solid #E2E8F0;
}

.pp-feature-item:first-child {
  border-left: none;
}

.pp-feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pp-feature-title {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  color: #0F172A;
  margin-bottom: 4px;
}

.pp-feature-desc {
  font-size: 12.5px;
  color: #64748B;
  line-height: 1.4;
}

@media (max-width: 600px) {
  .pp-plans-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }

  .pp-features-bar {
    grid-template-columns: 1fr;
  }

  .pp-feature-item {
    border-left: none !important;
    border-top: 1px solid #E2E8F0;
    padding-top: 16px;
  }

  .pp-feature-item:first-child {
    border-top: none;
    padding-top: 0;
  }
}

/* ==========================================================================
   APNA EMPLOYER JOB POSTING PORTAL (EXACT 1:1 REPLICA OF employer.apna.co/post-job#basic)
   ========================================================================== */
.apna-employer-body {
  background-color: #F8FAFC;
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #1E293B;
  margin: 0;
  padding: 0;
}

.apna-header {
  background: #FFFFFF;
  border-bottom: 1px solid #E2E8F0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.apna-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.apna-header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 20px;
}

.apna-logo-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.apna-logo-img {
  height: 36px;
  width: auto;
}

.apna-badge {
  background: #EFF6FF;
  color: #2563EB;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 6px;
  letter-spacing: 0.5px;
}

/* STEPPER NAVIGATION (APNA TABS) */
.apna-stepper {
  display: flex;
  align-items: center;
  gap: 10px;
}

.stepper-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all 0.25s ease;
  opacity: 0.6;
}

.stepper-tab:hover {
  opacity: 0.9;
  background: #F1F5F9;
}

.stepper-tab.active {
  opacity: 1;
  background: #EFF6FF;
}

.tab-num {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #CBD5E1;
  color: #475569;
  font-size: 12.5px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stepper-tab.active .tab-num {
  background: #2563EB;
  color: #FFFFFF;
}

.tab-text {
  font-size: 13px;
  font-weight: 700;
  color: #334155;
}

.stepper-tab.active .tab-text {
  color: #1D4ED8;
}

.stepper-divider {
  width: 16px;
  height: 2px;
  background: #E2E8F0;
}

.apna-support-contact {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  padding: 8px 16px;
  border-radius: 10px;
}

.support-icon {
  font-size: 18px;
}

.support-title {
  font-size: 11px;
  color: #64748B;
  font-weight: 600;
}

.support-phone {
  font-size: 13px;
  color: #0F172A;
  font-weight: 800;
}

/* MAIN GRID LAYOUT */
.apna-main-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 32px;
  padding-top: 28px;
  padding-bottom: 60px;
  align-items: start;
}

/* STEP CARDS */
.apna-step-card {
  background: #FFFFFF;
  border-radius: 16px;
  border: 1px solid #E2E8F0;
  padding: 32px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.03);
  display: none;
}

.apna-step-card.active {
  display: block;
  animation: apnaFadeIn 0.25s ease;
}

@keyframes apnaFadeIn {
  from {
    opacity: 0;
    transform: translateY(5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.card-title-bar {
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid #F1F5F9;
}

.card-step-badge {
  color: #2563EB;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
  display: inline-block;
  margin-bottom: 6px;
}

.card-heading {
  font-size: 22px;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 4px;
}

.card-subheading {
  font-size: 13.5px;
  color: #64748B;
}

.apna-form-body {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.apna-field {
  display: flex;
  flex-direction: column;
}

.apna-field-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.apna-label {
  font-size: 13.5px;
  font-weight: 700;
  color: #334155;
  margin-bottom: 8px;
}

.req-star {
  color: #EF4444;
}

.apna-input,
.apna-select {
  width: 100%;
  padding: 13px 16px;
  border-radius: 10px;
  border: 1.5px solid #CBD5E1;
  font-size: 14px;
  font-family: inherit;
  color: #0F172A;
  background: #FFFFFF;
  box-sizing: border-box;
  transition: all 0.2s ease;
}

.apna-input:focus,
.apna-select:focus {
  outline: none;
  border-color: #2563EB;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

/* SUGGESTION CHIPS */
.suggestion-chips-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}

.suggestion-label {
  font-size: 11.5px;
  color: #64748B;
  font-weight: 600;
}

.chip-btn {
  background: #F1F5F9;
  border: none;
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 12px;
  color: #334155;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.chip-btn:hover {
  background: #E2E8F0;
  color: #0F172A;
}

/* OPTION PILLS */
.option-pills-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.option-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 10px;
  border: 1.5px solid #E2E8F0;
  background: #FFFFFF;
  cursor: pointer;
  transition: all 0.2s ease;
}

.option-pill input {
  display: none;
}

.option-pill.active {
  border-color: #2563EB;
  background: #EFF6FF;
}

.pill-icon {
  font-size: 18px;
}

.pill-title {
  font-size: 13.5px;
  font-weight: 700;
  color: #334155;
}

.option-pill.active .pill-title {
  color: #1D4ED8;
}

.segmented-pills {
  display: flex;
  background: #F1F5F9;
  padding: 4px;
  border-radius: 10px;
  gap: 4px;
}

.seg-btn {
  flex: 1;
  text-align: center;
  padding: 10px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  color: #64748B;
  cursor: pointer;
  transition: all 0.2s ease;
}

.seg-btn input {
  display: none;
}

.seg-btn.active {
  background: #FFFFFF;
  color: #0F172A;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

/* SKILLS TAG CLOUD */
.skills-tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.tag-pill {
  padding: 7px 16px;
  border-radius: 20px;
  border: 1px solid #CBD5E1;
  background: #F8FAFC;
  color: #475569;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  user-select: none;
  transition: all 0.2s ease;
}

.tag-pill.active {
  background: #2563EB;
  color: #FFFFFF;
  border-color: #2563EB;
}

.add-skill-box {
  display: flex;
  gap: 10px;
}

.btn-apna-add {
  background: #0F172A;
  color: #FFFFFF;
  border: none;
  border-radius: 10px;
  padding: 0 20px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  white-space: nowrap;
}

/* ASSET CARDS GRID */
.asset-checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.asset-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border: 1.5px solid #E2E8F0;
  border-radius: 10px;
  cursor: pointer;
}

.asset-card input {
  accent-color: #2563EB;
  width: 16px;
  height: 16px;
}

.asset-icon {
  font-size: 18px;
}

.asset-label {
  font-size: 13px;
  font-weight: 700;
  color: #334155;
}

/* PERKS GRID */
.perks-checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.perk-card {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #334155;
  cursor: pointer;
  background: #F8FAFC;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid #E2E8F0;
}

.perk-card input {
  accent-color: #10B981;
}

/* CARD FOOTER BUTTONS */
.card-action-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid #F1F5F9;
}

.btn-apna-next {
  background: #2563EB;
  color: #FFFFFF;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.25);
}

.btn-apna-next:hover {
  background: #1D4ED8;
  transform: translateY(-1px);
}

.btn-apna-back {
  background: #F1F5F9;
  color: #475569;
  text-decoration: none;
  padding: 12px 22px;
  border-radius: 10px;
  font-size: 13.5px;
  font-weight: 700;
}

.btn-apna-publish {
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
  color: #FFFFFF;
  border: none;
  padding: 16px 36px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
  transition: all 0.2s ease;
}

.btn-apna-publish:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.4);
}

/* RIGHT STICKY PREVIEW COLUMN */
.apna-preview-column {
  position: sticky;
  top: 96px;
}

.preview-tag-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.preview-live-badge {
  background: #FF5722;
  color: #FFFFFF;
  font-size: 10px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}

.preview-subtitle {
  font-size: 12px;
  color: #64748B;
  font-weight: 600;
}

.apna-job-preview-card {
  background: #FFFFFF;
  border-radius: 16px;
  border: 2px solid #E2E8F0;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.preview-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.company-logo-avatar {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
  color: #FFFFFF;
  font-size: 20px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.prev-title-text {
  font-size: 17px;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 2px;
}

.prev-company-text {
  font-size: 13px;
  color: #64748B;
}

.preview-tags-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.badge-tag {
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
}

.salary-badge {
  background: #ECFDF5;
  color: #059669;
}

.location-badge {
  background: #F1F5F9;
  color: #475569;
}

.mode-badge {
  background: #EFF6FF;
  color: #2563EB;
}

.preview-metrics-box {
  display: flex;
  gap: 14px;
  padding: 12px 0;
  border-top: 1px dashed #E2E8F0;
  border-bottom: 1px dashed #E2E8F0;
  margin-bottom: 16px;
}

.metric-cell {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #475569;
  font-weight: 600;
}

.preview-section-hdr {
  font-size: 11px;
  font-weight: 800;
  color: #94A3B8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.preview-skills-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.sk-tag {
  background: #F1F5F9;
  color: #334155;
  font-size: 11.5px;
  padding: 4px 10px;
  border-radius: 12px;
  font-weight: 500;
}

.preview-perks-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 20px;
}

.pk-item {
  font-size: 12px;
  color: #059669;
  font-weight: 600;
}

.btn-apna-apply-preview {
  width: 100%;
  background: #2563EB;
  color: #FFFFFF;
  border: none;
  padding: 12px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  cursor: not-allowed;
  opacity: 0.9;
}

.cta-guarantee {
  display: block;
  text-align: center;
  font-size: 11px;
  color: #94A3B8;
  margin-top: 8px;
}

.apna-guarantee-box {
  background: #FFFFFF;
  border-radius: 14px;
  border: 1px solid #E2E8F0;
  padding: 20px;
  margin-top: 20px;
}

.g-box-title {
  font-size: 13.5px;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 10px;
}

.g-box-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.g-box-list li {
  font-size: 12.5px;
  color: #475569;
  margin-bottom: 8px;
}

/* AFFILIATE PROGRAM FLOATING BADGE */
.aff-float-badge {
  position: fixed;
  left: 20px;
  bottom: 24px;
  z-index: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--brand-navy) 0%, #0A4DA8 100%);
  color: #FFFFFF;
  padding: 12px 18px;
  border-radius: 30px;
  box-shadow: 0 12px 30px -8px rgba(5, 59, 130, 0.5);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.aff-float-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px -8px rgba(5, 59, 130, 0.6);
}

.aff-float-icon {
  font-size: 20px;
  line-height: 1;
}

.aff-float-text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.aff-float-title {
  font-size: 13px;
  font-weight: 800;
}

.aff-float-sub {
  font-size: 11px;
  color: #CFE0FF;
}

@media (max-width: 560px) {
  .aff-float-badge {
    left: 12px;
    bottom: 12px;
    padding: 10px 14px;
  }

  .aff-float-sub {
    display: none;
  }
}

/* TOAST POPUP */
.toast-popup {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  background: #10B981;
  color: #FFFFFF;
  padding: 14px 24px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 10px;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.toast-popup.active {
  transform: translateY(0);
  opacity: 1;
}

.toast-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
}

@media (max-width: 992px) {
  .apna-main-grid {
    grid-template-columns: 1fr;
  }

  .apna-preview-column {
    position: static;
  }

  .apna-stepper {
    display: none;
  }
}

/* ==========================================================================
   AUTHENTICATION MODALS SYSTEM (Candidate vs Employer Role Switching)
   ========================================================================== */
.auth-modal-box {
  width: 100%;
  max-width: 480px;
  max-height: 86vh;
  overflow-y: auto;
  overflow-x: hidden;
  background: #FFFFFF;
  border-radius: 24px;
  padding: 28px 24px 28px 28px;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.22);
  position: relative;
  box-sizing: border-box;
}

.auth-modal-box::-webkit-scrollbar {
  width: 6px;
}

.auth-modal-box::-webkit-scrollbar-track {
  background: transparent;
  margin: 20px 0;
}

.auth-modal-box::-webkit-scrollbar-thumb {
  background: #CBD5E1;
  border-radius: 10px;
}

.auth-modal-box::-webkit-scrollbar-thumb:hover {
  background: #94A3B8;
}

.auth-role-switcher {
  display: flex;
  background: #F1F5F9;
  border-radius: 30px;
  padding: 4px;
  margin-bottom: 20px;
  border: 1px solid #E2E8F0;
}

.role-tab {
  flex: 1;
  padding: 10px 16px;
  border-radius: 26px;
  border: none;
  background: transparent;
  font-size: 13.5px;
  font-weight: 700;
  color: #64748B;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.role-tab.active {
  background: #FFFFFF;
  color: #0F172A;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.role-tab-icon {
  font-size: 15px;
}

.modal-header-text {
  margin-bottom: 20px;
  text-align: left;
}

.modal-title {
  font-size: 22px;
  font-weight: 800;
  color: #0F172A;
  margin: 0 0 6px 0;
  letter-spacing: -0.3px;
}

.modal-sub {
  font-size: 13.5px;
  color: #64748B;
  margin: 0;
}

.login-method-toggle {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
  border-bottom: 1.5px solid #F1F5F9;
  padding-bottom: 12px;
}

.method-btn {
  background: transparent;
  border: none;
  font-size: 13.5px;
  font-weight: 700;
  color: #64748B;
  cursor: pointer;
  padding: 4px 8px;
  position: relative;
  transition: color 0.2s ease;
}

.method-btn.active {
  color: var(--brand-orange);
}

.method-btn.active::after {
  content: '';
  position: absolute;
  bottom: -13.5px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--brand-orange);
  border-radius: 3px 3px 0 0;
}

.form-group {
  margin-bottom: 16px;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

@media (max-width: 560px) {
  .form-grid-2 {
    grid-template-columns: 1fr;
  }
}

.input-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #334155;
  margin-bottom: 8px;
}

.label-flex-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.forgot-pass-link {
  font-size: 12.5px;
  font-weight: 700;
  color: #0066CC;
  text-decoration: none;
}

.forgot-pass-link:hover {
  text-decoration: underline;
}

.input-icon-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.input-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  pointer-events: none;
}

.input-icon-prefix {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  font-size: 13.5px;
  font-weight: 700;
  color: #334155;
  pointer-events: none;
}

.input-icon-wrapper .auth-input,
.input-icon-wrapper input,
.input-icon-wrapper select,
.form-group .auth-input,
.form-group input.auth-input,
.form-group select.auth-input {
  width: 100% !important;
  padding: 12px 14px 12px 44px !important;
  border: 1.5px solid #E2E8F0 !important;
  border-radius: 12px !important;
  font-size: 14px !important;
  color: #0F172A !important;
  background: #F8FAFC !important;
  outline: none !important;
  transition: all 0.2s ease !important;
  box-sizing: border-box !important;
  appearance: none !important;
  -webkit-appearance: none !important;
}

.input-icon-wrapper select.auth-input {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2064748B' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 14px center !important;
  padding-right: 36px !important;
}

.input-icon-wrapper .auth-input.input-has-prefix,
.input-icon-wrapper input.input-has-prefix {
  padding-left: 54px !important;
}

.auth-input:focus {
  border-color: var(--brand-orange) !important;
  background: #FFFFFF !important;
  box-shadow: 0 0 0 4px rgba(255, 87, 34, 0.12) !important;
}

.pwd-toggle-btn {
  position: absolute;
  right: 12px;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 4px;
  color: #64748B;
}

.btn-send-otp {
  position: absolute;
  right: 8px;
  background: var(--brand-orange);
  color: #FFFFFF;
  border: none;
  border-radius: 8px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease;
}

.btn-send-otp:hover {
  background: #E64A19;
}

.otp-input-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 10px;
}

.otp-digit {
  width: 48px;
  height: 52px;
  text-align: center;
  font-size: 20px;
  font-weight: 800;
  border: 1.5px solid #CBD5E1;
  border-radius: 12px;
  outline: none;
}

.otp-digit:focus {
  border-color: var(--brand-orange);
  box-shadow: 0 0 0 4px rgba(255, 87, 34, 0.12);
}

.otp-timer-note {
  display: block;
  text-align: center;
  font-size: 12px;
  color: #64748B;
  margin-top: 8px;
}

.work-status-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.work-status-card {
  border: 1.5px solid #E2E8F0;
  border-radius: 12px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  background: #F8FAFC;
  transition: all 0.2s ease;
}

.work-status-card input[type="radio"] {
  display: none;
}

.work-status-card.active {
  border-color: var(--brand-orange);
  background: #FFF5EE;
}

.status-icon {
  font-size: 20px;
}

.status-info {
  display: flex;
  flex-direction: column;
}

.status-title {
  font-size: 13px;
  font-weight: 700;
  color: #0F172A;
}

.status-sub {
  font-size: 11px;
  color: #64748B;
}

.resume-upload-box {
  border: 2px dashed #CBD5E1;
  border-radius: 12px;
  padding: 16px;
  text-align: center;
  background: #F8FAFC;
  cursor: pointer;
  transition: all 0.2s ease;
}

.resume-upload-box:hover {
  border-color: var(--brand-orange);
  background: #FFF5EE;
}

.upload-box-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.upload-text {
  font-size: 13px;
  color: #334155;
}

.upload-hint {
  font-size: 11px;
  color: #94A3B8;
}

.hidden-file-input {
  display: none;
}

.optional-tag {
  font-weight: 400;
  color: #94A3B8;
  font-size: 12px;
}

.btn-auth-submit {
  width: 100%;
  background: linear-gradient(135deg, #FF5722 0%, #E64A19 100%);
  color: #FFFFFF;
  border: none;
  border-radius: 14px;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 6px 20px rgba(255, 87, 34, 0.35);
  transition: all 0.25s ease;
  margin-top: 8px;
}

.btn-auth-submit:hover {
  background: linear-gradient(135deg, #E64A19 0%, #D84315 100%);
  transform: translateY(-1px);
  box-shadow: 0 10px 25px rgba(255, 87, 34, 0.45);
}

.auth-footer-text {
  text-align: center;
  font-size: 13px;
  color: #64748B;
  margin-top: 18px;
}

.auth-switch-link {
  font-weight: 700;
  color: #0066CC;
  margin-left: 4px;
  text-decoration: none;
}

.auth-switch-link:hover {
  text-decoration: underline;
}

/* NOTIFICATION BELL — "Job Alerts" in the header nav-menu doubles as this
   for logged-in candidates & employers (see activateNotificationsNavItem in
   js/main.js); logged-out visitors see the unmodified Job Alerts link. */
.nav-item-notif {
  cursor: pointer;
}

.notif-bell-icon-wrap {
  position: relative;
  display: inline-flex;
}

.notif-bell-badge {
  position: absolute;
  top: -6px;
  right: -8px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 10px;
  background: var(--brand-red);
  color: #FFFFFF;
  font-size: 10px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.notif-bell-badge.hidden {
  display: none;
}

/* Positioned dynamically at open-time (see positionNotifDropdown in
   js/main.js) — top/left/width are set inline against #navJobAlerts's
   actual on-screen position, which varies by page layout. */
.notif-dropdown {
  position: fixed;
  max-height: 420px;
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: 14px;
  box-shadow: 0 20px 45px -18px rgba(15, 23, 42, 0.35);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  z-index: 900;
}

.notif-dropdown.hidden {
  display: none;
}

.notif-dropdown-hdr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border-color);
  font-size: 14px;
  font-weight: 800;
  color: var(--text-dark);
}

.notif-mark-all-btn {
  background: none;
  border: none;
  color: var(--brand-orange);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.notif-dropdown-list {
  overflow-y: auto;
  flex: 1;
}

.notif-item {
  padding: 12px 16px;
  border-bottom: 1px solid #F1F5F9;
  cursor: pointer;
  transition: background-color 0.15s ease;
}

.notif-item:hover {
  background: var(--bg-subtle);
}

.notif-item.unread {
  background: var(--brand-orange-light);
}

.notif-item.unread:hover {
  background: #FFE8DC;
}

.notif-item-title {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.notif-item-msg {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 4px;
}

.notif-item-time {
  font-size: 11px;
  color: var(--text-light);
}

.notif-empty {
  padding: 30px 16px;
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
}

/* User Account Badge in Nav when logged in */
.nav-user-profile {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #F1F5F9;
  border: 1px solid #E2E8F0;
  padding: 4px 12px 4px 6px;
  border-radius: 24px;
  cursor: pointer;
}

.user-avatar-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--brand-orange);
  color: #FFFFFF;
  font-weight: 800;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.user-avatar-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.profile-pic-upload-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.profile-pic-upload-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1.5px dashed #CBD5E1;
  border-radius: 10px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  color: #334155;
  background: #F8FAFC;
  transition: all 0.2s ease;
}

.profile-pic-upload-btn:hover {
  border-color: var(--brand-orange);
  color: var(--brand-orange);
  background: var(--brand-orange-light);
}

.profile-pic-preview {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #F1F5F9;
  border: 1.5px solid #E2E8F0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

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

.profile-pic-preview img.hidden {
  display: none;
}

.user-nav-details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
}

.user-nav-name {
  font-size: 12.5px;
  font-weight: 700;
  color: #0F172A;
}

.user-nav-role-badge {
  font-size: 10px;
  font-weight: 700;
  color: var(--brand-orange);
  text-transform: uppercase;
}

.nav-dashboard-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--brand-navy);
  text-decoration: none;
  padding: 6px 14px;
  background: #F1F5F9;
  border: 1px solid #E2E8F0;
  border-radius: 20px;
  transition: all 0.2s ease;
}

.nav-dashboard-link:hover {
  background: #FFF5EE;
  color: var(--brand-orange);
  border-color: rgba(255, 87, 34, 0.3);
}

.btn-nav-logout {
  background: #FEE2E2;
  color: #991B1B;
  border: 1px solid #FCA5A5;
  padding: 7px 16px;
  border-radius: 20px;
  font-size: 12.5px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-right: 4px;
}

.btn-nav-logout:hover {
  background: #EF4444;
  color: #FFFFFF;
  border-color: #EF4444;
}

/* Skill Badge Selector Components */
.skills-badge-input-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border: 1.5px solid #E2E8F0;
  border-radius: 12px;
  background: #F8FAFC;
  min-height: 46px;
  cursor: text;
  transition: all 0.2s ease;
  box-sizing: border-box;
}

.skills-badge-input-box:focus-within {
  border-color: var(--brand-orange);
  background: #FFFFFF;
  box-shadow: 0 0 0 4px rgba(255, 87, 34, 0.12);
}

.skills-badges-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}

.skill-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #FFF5EE;
  color: var(--brand-orange);
  border: 1px solid rgba(255, 87, 34, 0.3);
  font-size: 12.5px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  line-height: 1.2;
  animation: badgePopIn 0.2s ease;
}

@keyframes badgePopIn {
  from {
    opacity: 0;
    transform: scale(0.85);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.skill-badge-remove {
  background: none;
  border: none;
  color: var(--brand-orange);
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.skill-badge-remove:hover {
  color: #D84315;
}

.skills-inline-input {
  flex: 1;
  min-width: 130px;
  border: none;
  outline: none;
  background: transparent;
  font-size: 13.5px;
  color: #0F172A;
  padding: 4px 0;
}

.skills-dropdown-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: #FFFFFF;
  border-radius: 14px;
  border: 1px solid #E2E8F0;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.14);
  max-height: 180px;
  overflow-y: auto;
  z-index: 1100;
  padding: 6px;
}

.skills-dropdown-item {
  padding: 9px 12px;
  font-size: 13px;
  font-weight: 600;
  color: #334155;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.15s ease;
}

.skills-dropdown-item:hover {
  background: #FFF5EE;
  color: var(--brand-orange);
}

.quick-skills-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
}

.quick-lbl {
  font-size: 11.5px;
  font-weight: 700;
  color: #64748B;
}

.quick-skill-pill {
  background: #F1F5F9;
  color: #334155;
  border: 1px solid #E2E8F0;
  border-radius: 14px;
  padding: 2px 9px;
  font-size: 11.5px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.15s ease;
}

.quick-skill-pill:hover {
  background: #FFF5EE;
  color: var(--brand-orange);
  border-color: rgba(255, 87, 34, 0.4);
}

/* Reusable multi-select toggle pills (Languages, Assets & Docs, Job Preferences, etc.) */
.toggle-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.toggle-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #F8FAFC;
  color: #475569;
  border: 1.5px solid #E2E8F0;
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s ease;
  user-select: none;
}

.toggle-pill:hover {
  border-color: rgba(255, 87, 34, 0.4);
}

.toggle-pill.active {
  background: #FFF0EB;
  color: var(--brand-orange);
  border-color: var(--brand-orange);
  font-weight: 700;
}

/* "Not listed? Add your own" row — used wherever a toggle-pill list also
   accepts a free-text custom entry (e.g. Preferred Industry). */
.custom-add-row {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.custom-add-row .auth-input {
  flex: 1;
}

.btn-add-custom {
  flex-shrink: 0;
  background: #F8FAFC;
  color: var(--brand-orange);
  border: 1.5px solid var(--brand-orange);
  border-radius: 10px;
  padding: 0 16px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.15s ease;
}

.btn-add-custom:hover {
  background: var(--brand-orange-light);
}

.english-level-inline {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dashed #E2E8F0;
}

.english-level-inline label {
  font-size: 12.5px;
  font-weight: 700;
  color: #475569;
  white-space: nowrap;
}

border: none;
padding: 6px 12px;
border-radius: 16px;
font-size: 12px;
font-weight: 700;
cursor: pointer;
margin-left: 8px;
}

.btn-nav-logout:hover {
  background: #FCA5A5;
}

.otp-mail-icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #FFF5EE;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  border: 1px solid rgba(255, 87, 34, 0.25);
}

.btn-resend-link {
  background: none;
  border: none;
  color: var(--brand-orange);
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
}

.btn-resend-link:hover {
  color: #D84315;
}

/* ==========================================================================
   MOBILE-ONLY LAYOUT FIXES (phones, max-width 600px)
   Tablet/laptop breakpoints and layout are intentionally left untouched.
   ========================================================================== */
@media (max-width: 600px) {

  /* Explore Jobs cards */
  .explore-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: none;
  }

  .explore-card {
    min-height: 130px;
  }

  .workmode-cards-grid {
    grid-template-columns: 1fr;
  }

  /* Top Startups */
  .startups-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  /* Promo banners marquee */
  .promo-banner-card {
    flex: 0 0 86vw;
  }

  .promo-banner-card img {
    height: auto;
  }

  /* Jobs Matrix links */
  .matrix-main-links,
  .matrix-extra-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  /* Footer */
  .footer-shine-columns {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom-flex {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }

  .footer-app-banner {
    flex: 1 1 auto;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .btn-footer-app {
    align-self: stretch;
    text-align: center;
  }

  .sub-footer-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .sub-footer-center {
    flex-wrap: wrap;
  }

  /* Modals */
  .modal-overlay {
    padding: 16px;
  }

  .modal-box-large {
    padding: 24px 18px;
  }

  .featured-benefits-grid {
    grid-template-columns: 1fr;
  }

  .plans-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   REGISTER PAGE — full-page signup (split-screen), replaces the old
   register popup. Same form fields/IDs/JS as before, new presentation only.
   ========================================================================== */
.register-page-body {
  background: var(--bg-subtle);
  min-height: 100vh;
}

.register-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  background: #FFFFFF;
  border-bottom: 1px solid var(--border-color);
}

.register-top-bar .logo-link {
  margin-left: 0;
}

.register-top-bar .logo-img {
  height: 30px;
}

.register-top-bar-link {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text-muted);
}

.register-top-bar-link a {
  color: var(--brand-orange);
  text-decoration: none;
  margin-left: 6px;
}

.register-top-bar-link a:hover {
  text-decoration: underline;
}

.register-page-wrap {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: start;
  min-height: calc(100vh - 68px);
}

.register-brand-panel {
  position: sticky;
  top: 0;
  align-self: start;
  height: 100vh;
  background: linear-gradient(150deg, #04214A 0%, #053B82 55%, #FF5722 145%);
  color: #FFFFFF;
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  box-sizing: border-box;
}

.register-brand-panel::before,
.register-brand-panel::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.register-brand-panel::before {
  width: 320px;
  height: 320px;
  top: -120px;
  right: -100px;
}

.register-brand-panel::after {
  width: 240px;
  height: 240px;
  bottom: -90px;
  left: -70px;
  background: rgba(255, 87, 34, 0.2);
}

.register-brand-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.4px;
  width: fit-content;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.register-brand-panel h1 {
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
  max-width: 440px;
}

.register-brand-sub {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  max-width: 400px;
  margin-bottom: 34px;
  position: relative;
  z-index: 1;
}

.register-trust-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.register-trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
}

.register-trust-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.register-form-panel {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 48px 32px 64px;
}

.register-page-card {
  width: 100%;
  max-width: 580px;
  background: #FFFFFF;
  border-radius: 24px;
  padding: 36px 32px;
  box-shadow: 0 10px 40px rgba(15, 23, 42, 0.06);
  border: 1px solid var(--border-color);
}

/* Register page — step indicator */
.reg-stepper {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-bottom: 28px;
}

.reg-step-dot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.reg-step-dot span {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #F1F5F9;
  border: 2px solid var(--border-color);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  transition: all 0.2s ease;
}

.reg-step-dot label {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--text-light);
  white-space: nowrap;
}

.reg-step-dot.active span {
  background: var(--brand-orange);
  border-color: var(--brand-orange);
  color: #FFFFFF;
  box-shadow: 0 0 0 4px var(--brand-orange-light);
}

.reg-step-dot.active label {
  color: var(--brand-orange);
}

.reg-step-dot.done span {
  background: var(--brand-orange-light);
  border-color: var(--brand-orange);
  color: transparent;
  font-size: 0;
}

.reg-step-dot.done span::before {
  content: '✓';
  color: var(--brand-orange);
  font-size: 13px;
}

.reg-step-line {
  flex: 1;
  height: 2px;
  background: var(--border-color);
  margin: 14px 8px 0;
  min-width: 24px;
  max-width: 60px;
  transition: background 0.2s ease;
}

.reg-step-line.done {
  background: var(--brand-orange);
}

/* Register page — step navigation buttons */
.reg-step-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}

.reg-step-nav .btn-auth-submit {
  flex: 1;
}

.btn-reg-back {
  background: transparent;
  border: 1.5px solid var(--border-color);
  color: var(--text-muted);
  font-weight: 700;
  font-size: 13.5px;
  padding: 0 20px;
  height: 48px;
  border-radius: 12px;
  cursor: pointer;
  white-space: nowrap;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.btn-reg-back:hover {
  border-color: var(--brand-orange);
  color: var(--brand-orange);
}

@media (max-width: 480px) {
  .reg-step-dot label {
    display: none;
  }

  .reg-step-line {
    min-width: 16px;
  }
}

/* Register page — compact spacing so a step never feels like an endless
   scroll. Scoped to .register-page-card only, doesn't touch the login popup
   or anything else that reuses these same field/label classes. */
.register-page-card {
  padding: 28px 32px;
}

.register-page-card .modal-header-text {
  margin-bottom: 14px;
}

.register-page-card .modal-title {
  font-size: 19px;
}

.register-page-card .modal-sub {
  font-size: 13px;
}

.register-page-card .reg-stepper {
  margin-bottom: 20px;
}

.register-page-card .form-group {
  margin-bottom: 12px;
}

.register-page-card .input-label,
.register-page-card .form-group label {
  margin-bottom: 5px;
  font-size: 12.5px;
}

.register-page-card .auth-input {
  padding: 10px 14px 10px 44px !important;
}

.register-page-card .input-icon-wrapper .auth-input.input-has-prefix {
  padding-left: 44px !important;
}

.register-page-card .work-status-cards {
  gap: 8px;
}

.register-page-card .work-status-card {
  padding: 10px 12px;
}

.register-page-card .toggle-pill-row {
  gap: 6px;
}

.register-page-card .toggle-pill {
  padding: 5px 12px;
  font-size: 12.5px;
}

.register-page-card .english-level-inline {
  margin-top: 8px;
}

.register-page-card .quick-skills-row {
  margin-top: 8px;
}

@media (max-width: 980px) {
  .register-page-wrap {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .register-brand-panel {
    position: static;
    height: auto;
    padding: 32px 24px;
  }

  .register-brand-panel h1 {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .register-brand-badge {
    margin-bottom: 12px;
  }

  .register-brand-sub {
    font-size: 13.5px;
    margin-bottom: 18px;
  }

  .register-trust-list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px 18px;
  }

  .register-trust-item {
    font-size: 13px;
  }

  .register-form-panel {
    padding: 24px 14px 40px;
  }
}

@media (max-width: 560px) {
  .register-page-card {
    padding: 24px 18px;
    border-radius: 16px;
  }

  .register-top-bar {
    padding: 12px 16px;
    flex-wrap: wrap;
    gap: 8px;
  }

  .register-top-bar .logo-img {
    height: 26px;
  }

  .register-top-bar-link {
    font-size: 12.5px;
  }

  .register-brand-panel {
    padding: 24px 20px;
  }

  .register-brand-panel h1 {
    font-size: 19px;
  }

  .register-brand-panel::before,
  .register-brand-panel::after {
    display: none;
  }

  .register-trust-list {
    display: none;
  }

  .register-page-card .modal-title {
    font-size: 17px;
  }

  .reg-stepper {
    gap: 0;
  }

  .reg-step-line {
    min-width: 12px;
    margin: 14px 4px 0;
  }

  .work-status-cards {
    grid-template-columns: 1fr;
  }

  .reg-step-nav {
    flex-direction: column-reverse;
  }

  .btn-reg-back {
    width: 100%;
  }
}

/* ==========================================================================
   IMAGE CROPPER — shared modal used by window.openImageCropper() (see
   main.js) for any square image upload, e.g. employer registration's
   Company Logo field.
   ========================================================================== */
.img-cropper-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 20px;
}

.img-cropper-box {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 90vw;
}

.img-cropper-header {
  font-weight: 700;
  font-size: 16px;
  color: var(--text-dark, #1A1A1A);
}

.img-cropper-stage {
  position: relative;
  border-radius: 8px;
  background: #F1F5F9;
  overflow: hidden;
}

.img-cropper-image {
  display: block;
  max-width: none;
  user-select: none;
  pointer-events: none;
}

.img-cropper-crop-box {
  position: absolute;
  box-sizing: border-box;
  border: 2px solid var(--brand-orange, #FF5722);
  /* Darkens everything OUTSIDE the crop box without extra overlay elements —
     a huge shadow spread clipped by the stage's overflow:hidden. */
  box-shadow: 0 0 0 9999px rgba(0, 0, 0, 0.5);
  cursor: move;
  touch-action: none;
}

.img-cropper-handle {
  position: absolute;
  width: 16px;
  height: 16px;
  background: #FFFFFF;
  border: 2px solid var(--brand-orange, #FF5722);
  border-radius: 50%;
  touch-action: none;
}

.handle-tl { top: -9px; left: -9px; cursor: nwse-resize; }
.handle-tr { top: -9px; right: -9px; cursor: nesw-resize; }
.handle-bl { bottom: -9px; left: -9px; cursor: nesw-resize; }
.handle-br { bottom: -9px; right: -9px; cursor: nwse-resize; }

.img-cropper-hint {
  font-size: 12px;
  color: var(--text-muted, #64748B);
  text-align: center;
}

.img-cropper-actions {
  display: flex;
  gap: 10px;
  width: 100%;
}

.img-cropper-cancel,
.img-cropper-save {
  flex: 1;
  padding: 10px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  border: none;
}

.img-cropper-cancel {
  background: #F1F5F9;
  color: #334155;
}

.img-cropper-save {
  background: var(--brand-orange, #FF5722);
  color: #FFFFFF;
}