/* ========================================
   9HR India — Premium Corporate Styles
   ======================================== */
:root {
  --primary: #0861fb;
  --primary-dark: #0649c4;
  --primary-soft: rgba(8, 97, 251, 0.08);
  --dark: #09121b;
  --dark-soft: #13202e;
  --green: #059323;
  --green-dark: #047a1c;
  --green-soft: rgba(5, 147, 35, 0.1);
  --gold: #d4a017;
  --white: #ffffff;
  --off-white: #fefefe;
  --bg: #f5f8fc;
  --bg-alt: #eef3fa;
  --text: #1a2332;
  --text-muted: #5a6a7e;
  --border: rgba(9, 18, 27, 0.14);
  --shadow: 0 10px 40px rgba(9, 18, 27, 0.08);
  --shadow-lg: 0 20px 60px rgba(9, 18, 27, 0.12);
  --radius: 16px;
  --radius-sm: 10px;
  --nav-h: 80px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display: "Outfit", sans-serif;
  --font-body: "Plus Jakarta Sans", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--off-white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
  width: min(1200px, 92%);
  margin-inline: auto;
}

.section {
  padding: 100px 0;
  position: relative;
}

.section-alt { background: var(--bg); }

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(255,255,255,0.2));
  opacity: 0;
  transition: opacity var(--transition);
  z-index: -1;
}

.btn:hover::before { opacity: 1; }

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(8, 97, 251, 0.35);
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(8, 97, 251, 0.45);
  color: var(--white);
}

.btn-secondary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(5, 147, 35, 0.3);
}
.btn-secondary:hover {
  background: var(--green-dark);
  transform: translateY(-3px);
  color: var(--white);
}

.btn-outline {
  border: 2px solid var(--white);
  color: var(--white);
  background: transparent;
}
.btn-outline:hover {
  background: var(--white);
  color: var(--dark);
  transform: translateY(-3px);
}

.btn-outline-dark {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
}
.btn-outline-dark:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* ---- Navbar ---- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  z-index: 1000;
  transition: all var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 4px 30px rgba(9, 18, 27, 0.08);
  height: 70px;
}

.navbar .nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  width: min(1280px, 94%);
  margin-inline: auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1001;
}

.nav-logo img {
  height: 56px;
  width: auto;
  border-radius: 50%;
  transition: height var(--transition);
}

.navbar.scrolled .nav-logo img { height: 48px; }

.nav-brand {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--white);
  white-space: nowrap;
  transition: color var(--transition);
}

.navbar.scrolled .nav-brand {
  color: var(--dark);
}

.nav-brand .brand-9 { color: #0861fb; }
.nav-brand .brand-hr { color: #09121b; }
.nav-brand .brand-india { color: #059323; }

.navbar:not(.scrolled) .nav-brand .brand-9,
.navbar:not(.scrolled) .nav-brand .brand-hr,
.navbar:not(.scrolled) .nav-brand .brand-india {
  color: var(--white);
}

.navbar.scrolled .nav-brand .brand-9 { color: #0861fb; }
.navbar.scrolled .nav-brand .brand-hr { color: #09121b; }
.navbar.scrolled .nav-brand .brand-india { color: #059323; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-menu > li { position: relative; }

.nav-menu > li > a,
.nav-menu > li > .nav-drop-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 12px;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  border-radius: 8px;
  transition: all var(--transition);
  white-space: nowrap;
}

.navbar.scrolled .nav-menu > li > a,
.navbar.scrolled .nav-menu > li > .nav-drop-btn {
  color: var(--dark);
}

.nav-menu > li > a:hover,
.nav-menu > li > .nav-drop-btn:hover,
.nav-menu > li > a.active {
  color: var(--primary);
  background: var(--primary-soft);
}

.navbar:not(.scrolled) .nav-menu > li > a:hover,
.navbar:not(.scrolled) .nav-menu > li > .nav-drop-btn:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.15);
}

.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 260px;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition);
  padding: 10px;
  z-index: 100;
}

.nav-menu > li:hover > .dropdown,
.nav-menu > li.dropdown-open > .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  display: block;
  padding: 10px 14px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  border-radius: 8px;
}
.dropdown a:hover {
  background: var(--primary-soft);
  color: var(--primary);
}

.nav-cta {
  margin-left: 8px;
  padding: 10px 22px !important;
  background: var(--primary) !important;
  color: var(--white) !important;
  border-radius: 50px !important;
  font-size: 0.85rem !important;
}
.nav-cta:hover {
  background: var(--primary-dark) !important;
  transform: translateY(-2px);
  color: var(--white) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 28px;
  padding: 4px 0;
  z-index: 1001;
  cursor: pointer;
}

.hamburger span {
  display: block;
  height: 2.5px;
  width: 100%;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

.navbar.scrolled .hamburger span { background: var(--dark); }

.hamburger.active span:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
}
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
}

/* ---- Hero Slider ---- */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
}

.hero-slides { position: absolute; inset: 0; }

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-slide.active { opacity: 1; z-index: 1; }

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(9, 18, 27, 0.88) 0%,
    rgba(9, 18, 27, 0.65) 45%,
    rgba(8, 97, 251, 0.35) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  width: min(1200px, 92%);
  margin-inline: auto;
  padding-top: var(--nav-h);
}

.hero-text { max-width: 680px; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.8s 0.4s forwards;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 36px;
  max-width: 560px;
  opacity: 0;
  animation: fadeUp 0.8s 0.6s forwards;
}

.hero-text .btn-group {
  opacity: 0;
  animation: fadeUp 0.8s 0.8s forwards;
}

.hero-nav {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 10px;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: 2px solid transparent;
  transition: all var(--transition);
  cursor: pointer;
}
.hero-dot.active {
  background: var(--primary);
  border-color: var(--white);
  transform: scale(1.2);
}

.hero-arrows {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  transform: translateY(-50%);
  pointer-events: none;
}

.hero-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  pointer-events: all;
  transition: all var(--transition);
}
.hero-arrow:hover {
  background: var(--primary);
}

/* Page Hero (inner pages) */
.page-hero {
  position: relative;
  width: 100%;
  padding: 160px 0 80px;
  background-size: cover;
  background-position: center;
  text-align: center;
  overflow: hidden;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(9, 18, 27, 0.9), rgba(8, 97, 251, 0.7));
}

.page-hero .container { position: relative; z-index: 2; }

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}
.breadcrumb a { color: var(--white); }
.breadcrumb a:hover { color: var(--gold); }

/* ---- Cards ---- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: all var(--transition);
  border: 1.5px solid rgba(9, 18, 27, 0.16);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(8, 97, 251, 0.35);
}

.card-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bg-alt);
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
}

.card:hover .card-img img { transform: scale(1.06); }

.card-body { padding: 28px; }

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--primary-soft);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
  transition: all var(--transition);
}

.card:hover .card-icon {
  background: var(--primary);
  color: var(--white);
}

.card-body h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.card-body p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.card-link {
  font-weight: 600;
  color: var(--primary);
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.card-link:hover { gap: 10px; }

/* Icon-only cards */
.feature-card {
  text-align: center;
  padding: 36px 24px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1.5px solid rgba(9, 18, 27, 0.16);
  box-shadow: var(--shadow);
  transition: all var(--transition);
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}
.feature-card .card-icon { margin-inline: auto; }
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.feature-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

/* ---- About / Split ---- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.split-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 420px;
}

.split-content .section-title { text-align: left; }

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}

.mv-box {
  padding: 24px;
  border-radius: var(--radius-sm);
  background: var(--bg);
  border-left: 4px solid var(--primary);
}
.mv-box.vision { border-left-color: var(--green); }
.mv-box h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--dark);
}
.mv-box p { font-size: 0.9rem; color: var(--text-muted); margin: 0; }

/* ---- Process Timeline ---- */
.process-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  counter-reset: step;
}

.process-step {
  text-align: center;
  position: relative;
  padding: 24px 12px;
}

.process-step::before {
  counter-increment: step;
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
  margin: 0 auto 16px;
  position: relative;
  z-index: 1;
  box-shadow: 0 6px 20px rgba(8, 97, 251, 0.35);
}

.process-step h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--dark);
  margin-bottom: 6px;
}
.process-step p { font-size: 0.82rem; color: var(--text-muted); }

/* ---- Industries ---- */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
}

.industry-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--dark);
  transition: all var(--transition);
}
.industry-item:hover {
  border-color: var(--primary);
  background: var(--primary-soft);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.industry-item i {
  color: var(--primary);
  font-size: 1.2rem;
}

/* ---- Stats ---- */
.stats-bar {
  background: linear-gradient(135deg, var(--dark) 0%, #0d2a4a 50%, var(--primary-dark) 100%);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

.stats-bar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
  z-index: 1;
  text-align: center;
}

.stat-item h3 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 6px;
}
.stat-item h3 span { color: var(--gold); }
.stat-item p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  font-weight: 500;
}

/* ---- CTA Banner ---- */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, #0450d4 50%, var(--green) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: var(--white);
  margin-bottom: 14px;
}
.cta-banner p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
  font-size: 1.1rem;
}

/* ---- FAQ ---- */
.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all var(--transition);
}
.faq-item.active { border-color: var(--primary); box-shadow: var(--shadow); }

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  gap: 16px;
}
.faq-q i {
  color: var(--primary);
  transition: transform var(--transition);
  flex-shrink: 0;
}
.faq-item.active .faq-q i { transform: rotate(180deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.active .faq-a {
  max-height: 300px;
  padding: 0 24px 20px;
}
.faq-a p { color: var(--text-muted); font-size: 0.95rem; }

/* ---- Forms ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
}

.contact-info-card {
  background: linear-gradient(160deg, var(--dark), #0d2a4a);
  border-radius: var(--radius);
  padding: 40px;
  color: var(--white);
}

.contact-info-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 24px;
}

.contact-detail {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}
.contact-detail i {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(8, 97, 251, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7eb3ff;
  flex-shrink: 0;
}
.contact-detail h4 { font-size: 0.9rem; margin-bottom: 4px; opacity: 0.7; }
.contact-detail p, .contact-detail a {
  font-size: 0.95rem;
  color: var(--white);
  line-height: 1.5;
}
.contact-detail a:hover { color: var(--gold); }

.form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: var(--dark);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--bg);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px var(--primary-soft);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 120px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ---- Blog ---- */
.blog-meta {
  display: flex;
  gap: 16px;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.blog-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ---- Footer ---- */
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 70px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand img {
  height: 70px;
  margin-bottom: 16px;
  background: var(--white);
  border-radius: 50%;
  padding: 4px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer h4 {
  font-family: var(--font-display);
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}
.footer h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 36px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}

.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 0.9rem;
  transition: all var(--transition);
}
.footer-links a:hover {
  color: var(--primary);
  padding-left: 6px;
}

.footer-contact li {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.9rem;
  align-items: flex-start;
}
.footer-contact i {
  color: var(--primary);
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
}
.footer-bottom a {
  color: var(--primary);
  font-weight: 600;
}
.footer-bottom a:hover { color: var(--gold); }

/* ---- Floating Buttons ---- */
.float-btns {
  position: fixed;
  right: 20px;
  bottom: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.35rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  transition: all var(--transition);
  position: relative;
  animation: floatPulse 2.5s ease-in-out infinite;
}
.float-btn:hover {
  transform: scale(1.12);
  color: var(--white);
}
.float-btn::after {
  content: attr(data-tip);
  position: absolute;
  right: calc(100% + 12px);
  background: var(--dark);
  color: var(--white);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.float-btn:hover::after { opacity: 1; }

.float-whatsapp { background: #25d366; }
.float-call { background: var(--primary); }
.float-facebook { background: #1877f2; }
.float-instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}
.float-linkedin { background: #0a66c2; }
.float-youtube { background: #ff0000; }

.float-btn:nth-child(2) { animation-delay: 0.3s; }
.float-btn:nth-child(3) { animation-delay: 0.6s; }
.float-btn:nth-child(4) { animation-delay: 0.9s; }
.float-btn:nth-child(5) { animation-delay: 1.2s; }
.float-btn:nth-child(6) { animation-delay: 1.5s; }

/* ---- Animations ---- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes floatPulse {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes spark {
  0% { transform: translateY(0) scale(1); opacity: 1; }
  100% { transform: translateY(-80px) scale(0); opacity: 0; }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

@keyframes particleFloat {
  0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0.6; }
  25% { transform: translate(10px, -20px) rotate(90deg); opacity: 1; }
  50% { transform: translate(-5px, -40px) rotate(180deg); opacity: 0.4; }
  75% { transform: translate(-15px, -20px) rotate(270deg); opacity: 0.8; }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Sparks / Particles */
.particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  animation: particleFloat 6s ease-in-out infinite;
}

/* Check list */
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.95rem;
  color: var(--text);
}
.check-list i {
  color: var(--green);
  margin-top: 4px;
  flex-shrink: 0;
}

/* Values hex */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.value-card {
  padding: 32px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1.5px solid rgba(9, 18, 27, 0.16);
  box-shadow: var(--shadow);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.value-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--green));
}
.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.value-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 14px 0 10px;
  color: var(--dark);
}
.value-card p { font-size: 0.9rem; color: var(--text-muted); margin: 0; }

/* Tech grid */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

/* Service detail page */
.service-detail-img {
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 40px;
  max-height: 420px;
}
.service-detail-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.content-block { margin-bottom: 40px; }
.content-block h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--dark);
  margin-bottom: 16px;
}
.content-block p {
  color: var(--text-muted);
  margin-bottom: 12px;
}

/* Two-col benefits */
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.benefit-col {
  padding: 40px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.benefit-col.employers { border-top: 4px solid var(--primary); }
.benefit-col.candidates { border-top: 4px solid var(--green); }
.benefit-col h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 24px;
  color: var(--dark);
}

/* Navbar dark page variant (for pages without dark hero initially after scroll) */
.navbar.nav-light .nav-menu > li > a,
.navbar.nav-light .nav-menu > li > .nav-drop-btn,
.navbar.nav-light .hamburger span {
  color: var(--dark);
}
.navbar.nav-light .hamburger span { background: var(--dark); }

/* ---- Responsive ---- */
@media (max-width: 1200px) {
  .nav-menu { display: none; }
  .hamburger { display: flex; }

  .nav-menu.active {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: var(--white);
    padding: 100px 30px 40px;
    gap: 4px;
    overflow-y: auto;
    z-index: 1000;
    align-items: stretch;
  }

  .nav-menu.active > li > a,
  .nav-menu.active > li > .nav-drop-btn {
    color: var(--dark) !important;
    padding: 14px 16px;
    font-size: 1rem;
    border-bottom: 1px solid var(--border);
  }

  .nav-menu.active .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    display: none;
    padding: 0 0 0 16px;
    background: var(--bg);
    border-radius: 0;
    min-width: auto;
  }

  .nav-menu.active > li.dropdown-open > .dropdown {
    display: block;
  }

  .nav-menu.active .nav-cta {
    margin: 16px 0 0 !important;
    text-align: center;
    justify-content: center;
  }

  .process-timeline { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split-img img { min-height: 300px; }
  .contact-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .section { padding: 70px 0; }
  .hero { min-height: 560px; }
  .process-timeline { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .mv-grid { grid-template-columns: 1fr; }
  .float-btns { right: 12px; bottom: 16px; }
  .float-btn { width: 46px; height: 46px; font-size: 1.2rem; }
  .btn-group { flex-direction: column; }
  .btn-group .btn { justify-content: center; }
  .hero-arrows { display: none; }
  .nav-brand { font-size: 1.05rem; }
}

/* Print hide floats */
@media print {
  .float-btns, .navbar, .hamburger { display: none !important; }
}
