/* ===================================================
   ANVIKSHI SOLUTIONS — Premium Recruitment Website
   Design System & Styles
   =================================================== */

/* ---------- CUSTOM PROPERTIES ---------- */
:root {
  /* Colors — Recruited-style Electric Blue + Neon Green */
  --navy:        #0A0E3F;
  --navy-light:  #111566;
  --navy-mid:    #1B22E8;
  --blue-soft:   #E8EDFF;
  --blue-accent: #1B22E8;
  --orange:      #3DED97;
  --orange-dark: #2DD47F;
  --orange-glow: rgba(61, 237, 151, 0.25);
  --white:       #FFFFFF;
  --off-white:   #F5F6FF;
  --gray-100:    #F0F1FA;
  --gray-200:    #D8DAE8;
  --gray-400:    #8B8FA8;
  --gray-600:    #5A5E78;
  --gray-800:    #1A1D3A;

  /* Typography */
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --section-py:  120px;
  --container-w: 1200px;
  --radius:      16px;
  --radius-sm:   10px;

  /* Shadows */
  --shadow-sm:   0 2px 8px rgba(10,14,63,0.08);
  --shadow-md:   0 8px 30px rgba(10,14,63,0.12);
  --shadow-lg:   0 16px 48px rgba(10,14,63,0.16);
  --shadow-glow: 0 0 30px rgba(27,34,232,0.2);

  /* Transitions */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-800);
  background: var(--white);
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button, input, textarea { font-family: inherit; font-size: inherit; }

/* ---------- UTILITY ---------- */
.container {
  width: 100%;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 24px;
}

.section-tag {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--blue-accent);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 20px;
  text-transform: uppercase;
}
.section-title.light { color: var(--white); }

.section-subtitle {
  font-size: 17px;
  color: var(--gray-600);
  max-width: 560px;
  line-height: 1.8;
  text-align: center;
  margin: 0 auto;
}
.section-subtitle.light { color: rgba(255,255,255,0.7); }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.4s var(--ease-out);
  border: none;
  outline: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.btn-primary {
  background: var(--orange);
  color: var(--navy);
  box-shadow: 0 4px 16px rgba(61,237,151,0.3);
}
.btn-primary:hover {
  background: var(--orange-dark);
  box-shadow: 0 6px 24px rgba(61,237,151,0.45);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-orange {
  background: var(--orange);
  color: var(--navy);
  box-shadow: 0 4px 16px rgba(61,237,151,0.3);
}
.btn-orange:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(61,237,151,0.45);
}
.btn-full { width: 100%; }

/* ===================================================
   NAVBAR
   =================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.4s var(--ease-out);
  background: transparent;
}
/* Initial state: white text over dark hero video */
.navbar .logo-text { color: var(--white); }
.navbar .nav-links > li > a { color: rgba(255,255,255,0.85); }
.navbar .nav-links > li > a:hover { color: var(--orange); }
.navbar .hamburger span { background: var(--white); }
.navbar .dropdown-menu a { color: var(--navy); }
.navbar .dropdown-menu a:hover { color: var(--orange); }
.navbar.scrolled {
  background: var(--navy);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  padding: 10px 0;
}
.navbar.scrolled .logo-text,
.navbar.scrolled .nav-links > li > a,
.navbar.scrolled .hamburger span { color: var(--white); }

.navbar.scrolled .nav-links > li > a:hover { color: var(--orange); }
.navbar.scrolled .dropdown-menu a { color: var(--navy); }
.navbar.scrolled .dropdown-menu a:hover { color: var(--orange); background: var(--blue-soft); }
.nav-container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1001;
}
.logo-text {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 1.5px;
}
.logo-accent { color: var(--orange); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-800);
  transition: color 0.3s;
  position: relative;
}
.nav-links a:hover { color: var(--orange); }

/* Dropdown */
.nav-dropdown { position: relative; }
.dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}
.chevron { transition: transform 0.3s var(--ease-out); }
.nav-dropdown:hover .chevron,
.nav-dropdown.open .chevron { transform: rotate(180deg); }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 260px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.35s var(--ease-out);
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.dropdown-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  font-size: 14px;
  transition: background 0.25s;
}
.dropdown-menu a:hover { background: var(--blue-soft); }

.badge-soon, .badge-future {
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 20px;
  letter-spacing: 0.5px;
}
.badge-soon { background: #E8EDFF; color: var(--blue-accent); }
.badge-future { background: var(--blue-soft); color: var(--navy-mid); }

.nav-cta {
  padding: 10px 24px;
  background: var(--orange);
  color: var(--navy) !important;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.3s var(--ease-out);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.nav-cta:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1003;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  transition: all 0.35s var(--ease-out);
  border-radius: 2px;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===================================================
   HERO — Video Background
   =================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
  background: var(--navy);
}

/* Background Video */
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

/* Dark Gradient Overlay */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10,14,63,0.82) 0%, rgba(10,14,63,0.6) 50%, rgba(10,14,63,0.75) 100%);
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-tag {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(38px, 5.5vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
  text-transform: uppercase;
}
.hero-title.hero-title-sm {
  font-size: clamp(32px, 4.4vw, 48px);
}
.hero-subtitle {
  font-family: var(--font-heading);
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 500;
  color: var(--orange);
  margin-bottom: 20px;
  line-height: 1.4;
  text-transform: none;
}
.hero-desc {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  max-width: 480px;
  line-height: 1.8;
  margin-bottom: 36px;
}
.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero .btn-outline {
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.hero .btn-outline:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.hero-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-image img {
  transition: transform 0.6s var(--ease-out);
  max-width: 100%;
  width: 100%;
  filter: drop-shadow(0 8px 32px rgba(0,0,0,0.4));
}
.hero-image:hover img {
  transform: scale(1.05);
}

/* ===================================================
   ABOUT / PHILOSOPHY
   =================================================== */
.about {
  padding: var(--section-py) 0;
  background: var(--navy);
  text-align: center;
}
.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}
.about-card {
  background: var(--navy-light);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: center;
  transition: all 0.45s var(--ease-out);
}
.about-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.25);
  border-color: rgba(61,237,151,0.3);
}
.about-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(61,237,151,0.15);
  border-radius: 14px;
  color: var(--orange);
  margin: 0 auto 24px;
}
.about-card h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  text-transform: uppercase;
}
.about-card p {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

/* ===================================================
   THREE PILLARS
   =================================================== */
.pillars {
  padding: var(--section-py) 0;
  background: var(--off-white);
  text-align: center;
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}
.pillar-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 44px 32px 40px;
  text-align: center;
  transition: all 0.45s var(--ease-out);
}
.pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow);
  border-color: var(--blue-accent);
}
.pillar-live {
  border-color: rgba(61,237,151,0.4);
}
.pillar-live:hover {
  box-shadow: 0 0 30px rgba(61,237,151,0.2);
  border-color: var(--orange);
}

.pillar-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 20px;
}
.pillar-badge.live {
  background: rgba(61,237,151,0.15);
  color: #1A9D5C;
}
.pillar-badge.soon {
  background: #E8EDFF;
  color: var(--blue-accent);
}

.pillar-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue-soft);
  border-radius: 16px;
  color: var(--blue-accent);
  margin: 0 auto 24px;
}
.pillar-live .pillar-icon {
  background: rgba(61,237,151,0.12);
  color: var(--orange);
}
.pillar-card h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.pillar-card p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ===================================================
   INDUSTRIES — Marquee
   =================================================== */
.industries {
  padding: var(--section-py) 0;
  text-align: center;
  overflow: hidden;
}

/* Marquee shared */
.marquee-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
}
.marquee-wrapper::before,
.marquee-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.marquee-wrapper::before { left: 0; background: linear-gradient(to right, var(--white), transparent); }
.marquee-wrapper::after  { right: 0; background: linear-gradient(to left, var(--white), transparent); }

.marquee-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: marqueeScroll 35s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-track-reverse { animation-name: marqueeScrollReverse; }

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

.industry-card {
  flex: 0 0 auto;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 60px;
  padding: 24px 36px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.4s var(--ease-out);
  cursor: default;
}
.industry-card:hover {
  transform: translateY(-5px);
  border-color: var(--orange);
  box-shadow: var(--shadow-md);
}
.industry-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue-soft);
  border-radius: 50%;
  color: var(--blue-accent);
  flex-shrink: 0;
  transition: all 0.4s var(--ease-out);
}
.industry-card:hover .industry-icon {
  background: rgba(61,237,151,0.12);
  color: var(--orange);
}
.industry-card h3 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  white-space: nowrap;
}

/* ===================================================
   TESTIMONIALS — Marquee
   =================================================== */
.testimonials {
  padding: var(--section-py) 0;
  background: var(--off-white);
  text-align: center;
  overflow: hidden;
}
.testimonial-marquee::before { background: linear-gradient(to right, var(--off-white), transparent); }
.testimonial-marquee::after  { background: linear-gradient(to left, var(--off-white), transparent); }

.testimonial-card {
  flex: 0 0 360px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: left;
  transition: all 0.4s var(--ease-out);
  cursor: default;
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--orange);
}
.stars {
  color: #F5A623;
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.testimonial-text {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.testimonial-author strong {
  font-family: var(--font-heading);
  font-size: 16px;
  color: var(--navy);
}
.testimonial-author span {
  font-size: 13px;
  color: var(--gray-400);
}

/* Social Links */
.social-link {
  display: flex !important;
  align-items: center;
  gap: 10px;
}
.social-link svg {
  flex-shrink: 0;
  transition: transform 0.3s var(--ease-out), color 0.3s;
}
.social-link:hover svg {
  transform: translateY(-2px);
  color: var(--orange);
}

/* ===================================================
   PARTNERS
   =================================================== */
.partners {
  padding: var(--section-py) 0;
  background: var(--off-white);
  text-align: center;
}
.partners-row {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 48px;
}
.partner-logo {
  flex: 1 1 0;
  min-width: 250px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.partner-label {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-top: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.partner-logo img {
  height: 180px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.6);
  transition: all 0.4s var(--ease-out);
}
.partner-logo img:hover {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.05);
}

/* ===================================================
   JOB SEEKERS
   =================================================== */
.job-seekers {
  padding: var(--section-py) 0;
}
.job-seekers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.job-seekers-image img {
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  transition: transform 0.6s var(--ease-out);
}
.job-seekers-image:hover img {
  transform: scale(1.02);
}
.job-seekers-content .section-title { margin-bottom: 16px; }
.job-seekers-content .section-subtitle { margin-bottom: 32px; }
.redirect-note {
  margin-top: 12px;
  font-size: 13px;
  color: var(--gray-400);
  font-style: italic;
}

/* ===================================================
   EMPLOYERS
   =================================================== */
.employers {
  padding: var(--section-py) 0;
  background: var(--navy);
  text-align: center;
}
.employers-content {
  max-width: 640px;
  margin: 0 auto;
}
.employers-content .section-tag { color: var(--orange); }

/* ===================================================
   CONTACT
   =================================================== */
.contact {
  padding: var(--section-py) 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-details {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--gray-600);
  font-size: 15px;
}
.contact-item svg { color: var(--orange); flex-shrink: 0; }
.contact-item a {
  color: var(--gray-600);
  text-decoration: none;
  transition: color 0.3s;
}
.contact-item a:hover { color: var(--orange); }
.contact-serving {
  margin-top: 12px;
  font-size: 14px;
  color: var(--gray-400);
  font-style: italic;
  line-height: 1.6;
}

/* Form */
.contact-form {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 40px;
  border: 1px solid var(--gray-200);
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--gray-800);
  transition: border-color 0.3s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--blue-accent);
}
.form-group textarea { resize: vertical; }
.form-success {
  display: none;
  text-align: center;
  color: #2E7D32;
  font-weight: 600;
  margin-top: 16px;
}
.form-success.show { display: block; }

/* Form Messages (via form-handler.js) */
.form-message {
  margin-top: 20px;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  transition: opacity 0.4s, transform 0.4s;
  animation: fadeInUp 0.5s var(--ease-out);
}
.form-message-success {
  background: rgba(46,125,50,0.08);
  color: #2E7D32;
  border: 1px solid rgba(46,125,50,0.2);
}
.form-message-error {
  background: rgba(211,47,47,0.08);
  color: #C62828;
  border: 1px solid rgba(211,47,47,0.2);
}

/* Field Error */
.field-error {
  border-color: #C62828 !important;
  box-shadow: 0 0 0 3px rgba(198,40,40,0.1) !important;
}

/* Button Loading */
.btn-loading {
  opacity: 0.8;
  pointer-events: none;
}
.btn-spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: spinBtn 0.6s linear infinite;
  vertical-align: middle;
  margin-right: 6px;
}
@keyframes spinBtn {
  to { transform: rotate(360deg); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===================================================
   FOOTER
   =================================================== */
.footer {
  background: var(--navy);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-brand p {
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  margin-top: 16px;
  line-height: 1.7;
}
.footer-brand .logo-text { color: var(--white); }
.footer-links h4 {
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.footer-links a {
  display: block;
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  padding: 5px 0;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 60px;
  padding: 24px 0;
  text-align: center;
}
.footer-bottom p {
  color: rgba(255,255,255,0.35);
  font-size: 13px;
}
.footer-seo {
  margin-top: 8px;
  font-size: 12px;
  color: rgba(255,255,255,0.22);
  letter-spacing: 0.5px;
}

/* ===================================================
   SCROLL REVEAL ANIMATIONS
   =================================================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.reveal-right {
  transform: translateX(40px);
}
.reveal.visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* ===================================================
   RESPONSIVE
   =================================================== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .hero-desc { margin: 0 auto 36px; }
  .hero-btns { justify-content: center; }
  .hero-image { max-width: 480px; margin: 0 auto; }
  .about-grid { grid-template-columns: 1fr 1fr; }
  .pillars-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  :root { --section-py: 80px; }

  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  /* Mobile menu overlay */
  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--white);
    justify-content: center;
    align-items: center;
    gap: 28px;
    z-index: 1002;
    overflow-y: auto;
    padding: 80px 24px 40px;
  }
  .nav-links.mobile-open a {
    font-size: 20px;
    font-weight: 600;
    color: var(--navy) !important;
  }
  .nav-links.mobile-open > li > a {
    color: var(--navy) !important;
  }
  .nav-links.mobile-open > li {
    text-align: center;
    width: 100%;
  }
  .nav-links.mobile-open .nav-dropdown {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .nav-links.mobile-open .dropdown-trigger {
    justify-content: center;
  }
  /* Force logo & hamburger to navy over white mobile menu */
  .nav-links.mobile-open ~ .nav-cta { display: none; }
  .hamburger.active span { background: var(--navy) !important; }
  .navbar:has(.mobile-open) .logo-text,
  .navbar.menu-open .logo-text { color: var(--navy) !important; }
  .navbar:has(.mobile-open) .logo-accent,
  .navbar.menu-open .logo-accent { color: var(--orange) !important; }
  /* Dropdown collapsed by default in mobile; expand on .open */
  .nav-links.mobile-open .dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    padding: 8px 0 8px 16px;
    min-width: auto;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    visibility: hidden;
    pointer-events: none;
    transition: max-height 0.35s ease, opacity 0.3s ease;
  }
  .nav-links.mobile-open .nav-dropdown.open .dropdown-menu {
    max-height: 300px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .about-grid { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: 1fr; }

  .job-seekers-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .industries-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 32px; }
  .partners-row { gap: 20px; }
  .partner-placeholder { width: 110px; height: 50px; }
  .contact-form { padding: 24px; }
}

/* ===================================================
   JOBS PAGE
   =================================================== */
.jobs-section {
  padding: 80px 0;
  background-color: var(--off-white);
}
.jobs-filters {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 12px 24px;
  border: 2px solid var(--gray-200);
  background: var(--white);
  color: var(--gray-600);
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.filter-btn:hover {
  border-color: var(--orange);
  color: var(--orange);
}
.filter-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.jobs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}
.job-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.03);
  transition: all 0.4s var(--ease-out);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.03);
}
.job-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  border-color: rgba(255,107,53,0.1);
}
.job-category {
  display: inline-block;
  padding: 6px 12px;
  background: rgba(255, 107, 53, 0.1);
  color: var(--orange);
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
  align-self: flex-start;
}
.job-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 16px;
}
.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
}
.job-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--gray-500);
}
.job-meta svg {
  color: var(--orange);
}
.job-desc {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 32px;
  flex-grow: 1;
}
.card-actions {
  margin-top: auto;
  display: flex;
  gap: 12px;
}
.empty-jobs-msg {
  text-align: center;
  font-size: 18px;
  color: var(--gray-500);
  padding: 40px 0;
  grid-column: 1 / -1;
}

/* Modal Styling */
.job-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(14, 25, 50, 0.7);
  backdrop-filter: blur(5px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.job-modal-overlay.open {
  opacity: 1;
  visibility: visible;
}
.job-modal-content {
  background: var(--white);
  border-radius: 16px;
  width: 90%;
  max-width: 600px;
  max-height: 85vh;
  padding: 32px;
  position: relative;
  transform: translateY(20px);
  transition: all 0.3s ease;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}
.job-modal-overlay.open .job-modal-content {
  transform: translateY(0);
}
.job-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 32px;
  color: var(--gray-500);
  cursor: pointer;
  line-height: 1;
  padding: 4px;
}
.job-modal-close:hover {
  color: var(--navy);
}
.modal-formatted-content h4 {
  font-family: var(--font-heading);
  color: var(--navy);
  margin: 20px 0 8px;
  font-size: 16px;
}
.modal-formatted-content p, .modal-formatted-content ul {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.6;
}
.modal-formatted-content ul {
  padding-left: 20px;
  margin-bottom: 16px;
}
.job-modal-footer {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-200);
}
