/* ================================================================
   GIAN HEALTHCARE — Main Stylesheet
   White & Navy Corporate · Liquid Glass Design
================================================================ */

/* ---------- Variables ---------- */
:root {
  --primary: #1a4faa;
  --primary-dark: #0f2c6e;
  --primary-mid: #1e5fc4;
  --primary-light: #3b82f6;
  --accent: #1a4faa;
  --accent-bright: #3b82f6;

  /* Page background — medium blue-grey so cards read as raised glass */
  --bg: #dce5f0;
  --bg-alt: #d2dcea;
  --bg-subtle: #c8d4e5;

  /* Navy dark sections (hero, recruitment, footer) */
  --navy: #050d1f;
  --navy-2: #0a1628;
  --navy-3: #0f2c6e;

  /* Text on WHITE sections */
  --text-heading: #0f2c6e;
  --text-body: #334155;
  --text-muted: #64748b;
  --text-dim: #94a3b8;

  /* Text on DARK/NAVY sections */
  --text-light: #f8fafc;
  --text-light-dim: rgba(248, 250, 252, 0.65);

  /* Glass — clear version for white sections */
  --glass-clear-bg: rgba(255, 255, 255, 0.0);
  --glass-clear-border: rgba(15, 44, 110, 0.11);
  --glass-clear-shadow: 0 4px 24px rgba(15, 44, 110, 0.07);

  /* Glass — dark version for navy sections */
  --glass-dark-bg: rgba(10, 22, 40, 0.65);
  --glass-dark-border: rgba(255, 255, 255, 0.12);

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  --nav-height: 76px;

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; border: none; background: none; cursor: pointer; }

/* ---------- Hidden SVG Filters ---------- */
.svg-filters { position: absolute; width: 0; height: 0; pointer-events: none; overflow: hidden; }

/* ================================================================
   LIQUID GLASS CARD MIXIN — the core shine effect
   Applied to all cards on white/light backgrounds.
================================================================ */

/*
  The liquid glass illusion comes from four layers stacked:
  1. Gradient fill   — white-to-blue-tint gradient (the "body" of the glass)
  2. Backdrop blur   — frosted effect on whatever is behind
  3. Border          — bright white on top/left, subtle navy on bottom/right
  4. box-shadow      — outer depth + inset highlights that simulate glass thickness
  5. ::before shine  — translucent white gradient wash across the top half
  6. ::after glow    — soft radial catch-light in the top-left corner
*/

/* Shared shine pseudo-element — cards that use this must set position:relative; overflow:hidden */
.lg-shine::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 52%;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.78) 0%,
    rgba(255, 255, 255, 0.0) 100%
  );
  border-radius: inherit;
  pointer-events: none;
  z-index: 0;
}

/* Corner catch-light (top-left specular highlight) */
.lg-shine::after {
  content: '';
  position: absolute;
  top: -25%; left: -12%;
  width: 60%; height: 60%;
  background: radial-gradient(
    ellipse at 30% 30%,
    rgba(255, 255, 255, 0.65) 0%,
    rgba(255, 255, 255, 0.0) 65%
  );
  pointer-events: none;
  z-index: 0;
}

/* The glass card base — use on any card on a light section */
.glass-card-light {
  background: linear-gradient(
    155deg,
    rgba(255, 255, 255, 0.68) 0%,
    rgba(235, 244, 255, 0.46) 60%,
    rgba(220, 236, 255, 0.38) 100%
  );
  -webkit-backdrop-filter: blur(32px) saturate(220%) brightness(1.04);
  backdrop-filter: blur(32px) saturate(220%) brightness(1.04);
  border-top: 1.5px solid rgba(255, 255, 255, 1);
  border-left: 1px solid rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(15, 44, 110, 0.10);
  border-right: 1px solid rgba(15, 44, 110, 0.07);
  box-shadow:
    /* Liquid shadow — the floating depth layer below */
    0 28px 56px -10px rgba(15, 44, 110, 0.22),
    0 12px 24px -4px rgba(15, 44, 110, 0.15),
    /* Side depth */
    6px 8px 20px rgba(15, 44, 110, 0.09),
    -5px -5px 14px rgba(255, 255, 255, 0.92),
    /* Inner top shine — liquid glass signature */
    inset 0 2px 0 rgba(255, 255, 255, 1),
    inset 0 1px 14px rgba(255, 255, 255, 0.70),
    /* Glass thickness illusion */
    inset 0 -1.5px 0 rgba(15, 44, 110, 0.07),
    inset 2px 0 0 rgba(255, 255, 255, 0.80),
    inset -1px 0 0 rgba(15, 44, 110, 0.04),
    /* Inner ambient glow */
    inset 0 0 40px rgba(255, 255, 255, 0.48);
  position: relative;
  overflow: hidden;
}

/* Hover: glass lifts and catches more light */
.glass-card-light:hover {
  background: linear-gradient(
    155deg,
    rgba(255, 255, 255, 0.82) 0%,
    rgba(240, 248, 255, 0.60) 60%,
    rgba(228, 241, 255, 0.50) 100%
  );
  box-shadow:
    0 36px 72px -12px rgba(15, 44, 110, 0.26),
    0 16px 32px -6px rgba(15, 44, 110, 0.18),
    8px 10px 24px rgba(15, 44, 110, 0.10),
    -6px -6px 16px rgba(255, 255, 255, 0.96),
    inset 0 2px 0 rgba(255, 255, 255, 1),
    inset 0 1px 18px rgba(255, 255, 255, 0.80),
    inset 0 -1.5px 0 rgba(15, 44, 110, 0.08),
    inset 2px 0 0 rgba(255, 255, 255, 0.88),
    inset -1px 0 0 rgba(15, 44, 110, 0.05),
    inset 0 0 52px rgba(255, 255, 255, 0.55);
}

/* ================================================================
   GLASS UTILITIES — legacy helpers
================================================================ */
.glass {
  background: rgba(255, 255, 255, 0.46);
  -webkit-backdrop-filter: blur(28px) saturate(210%) brightness(1.04);
  backdrop-filter: blur(28px) saturate(210%) brightness(1.04);
  border-top: 1.5px solid rgba(255, 255, 255, 1);
  border-left: 1px solid rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(15, 44, 110, 0.08);
  border-right: 1px solid rgba(15, 44, 110, 0.06);
  border-radius: var(--radius);
  box-shadow:
    0 20px 44px -8px rgba(15, 44, 110, 0.18),
    0 6px 14px rgba(15, 44, 110, 0.10),
    -4px -4px 12px rgba(255, 255, 255, 0.90),
    inset 0 2px 0 rgba(255, 255, 255, 1),
    inset 0 1px 12px rgba(255, 255, 255, 0.65),
    inset 0 0 28px rgba(255, 255, 255, 0.38);
}

.glass-strong {
  background: linear-gradient(155deg, rgba(255,255,255,0.72), rgba(232,242,255,0.50));
  -webkit-backdrop-filter: blur(32px) saturate(220%) brightness(1.04);
  backdrop-filter: blur(32px) saturate(220%) brightness(1.04);
  border-top: 1.5px solid rgba(255,255,255,1);
  border-left: 1px solid rgba(255,255,255,0.95);
  border-bottom: 1px solid rgba(15,44,110,0.10);
  border-right: 1px solid rgba(15,44,110,0.07);
  border-radius: var(--radius);
  box-shadow:
    0 28px 56px -10px rgba(15, 44, 110, 0.22),
    0 10px 22px -4px rgba(15, 44, 110, 0.14),
    -5px -5px 14px rgba(255, 255, 255, 0.92),
    inset 0 2px 0 rgba(255, 255, 255, 1),
    inset 0 1px 16px rgba(255, 255, 255, 0.72),
    inset 0 -1px 0 rgba(15, 44, 110, 0.07),
    inset 0 0 40px rgba(255, 255, 255, 0.50);
}

/* Glass for DARK/NAVY sections (hero, recruitment, footer) */
.glass-dark {
  background: rgba(10, 22, 40, 0.42);
  -webkit-backdrop-filter: blur(32px) saturate(200%);
  backdrop-filter: blur(32px) saturate(200%);
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  border-left: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(0, 0, 0, 0.20);
  border-right: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: var(--radius);
  box-shadow:
    0 24px 48px rgba(0,0,0,0.30),
    0 8px 20px rgba(0,0,0,0.18),
    inset 0 1.5px 0 rgba(255,255,255,0.28),
    inset 0 1px 16px rgba(255,255,255,0.08),
    inset 0 0 40px rgba(255,255,255,0.06);
}

/* ================================================================
   LIQUID GLASS BUTTONS
================================================================ */
.liquid-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: var(--radius-full);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform var(--transition), filter var(--transition);
  border: none;
  outline: none;
}

.liquid-btn svg { width: 18px; height: 18px; transition: transform var(--transition); }
.liquid-btn:hover svg { transform: translateX(3px); }

.liquid-btn .btn-glass-shell {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-full);
  pointer-events: none;
  transition: box-shadow var(--transition);
}

.liquid-btn .btn-distort {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-full);
  pointer-events: none;
  overflow: hidden;
  -webkit-backdrop-filter: blur(12px) saturate(150%);
  backdrop-filter: blur(12px) saturate(150%);
}

.liquid-btn .btn-text {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Primary — solid navy blue */
.liquid-btn.primary {
  background: linear-gradient(145deg, rgba(30, 95, 196, 0.95), rgba(15, 44, 110, 1));
  color: #fff;
}
.liquid-btn.primary .btn-glass-shell {
  box-shadow:
    /* Liquid shadow layer — floating depth below button */
    0 16px 36px -4px rgba(15, 44, 110, 0.55),
    0 6px 16px rgba(26, 79, 170, 0.40),
    /* Inner shine */
    inset 0 1.5px 0 rgba(255,255,255,0.32),
    inset 0 1px 10px rgba(255,255,255,0.14),
    inset 0 -1px 0 rgba(0,0,0,0.20);
}
.liquid-btn.primary:hover { transform: scale(1.04) translateY(-2px); filter: brightness(1.1); }
.liquid-btn.primary:hover .btn-glass-shell {
  box-shadow:
    0 22px 44px -4px rgba(15, 44, 110, 0.65),
    0 10px 22px rgba(26,79,170,0.50),
    inset 0 1.5px 0 rgba(255,255,255,0.35),
    inset 0 1px 14px rgba(255,255,255,0.18),
    inset 0 -1px 0 rgba(0,0,0,0.22);
}
.liquid-btn.primary:active { transform: scale(0.98) translateY(1px); filter: brightness(0.95); }

/* Secondary — clear glass outline (on dark sections) */
.liquid-btn.secondary {
  background: rgba(255, 255, 255, 0.10);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.32);
  box-shadow:
    0 12px 28px -4px rgba(0,0,0,0.30),
    inset 0 1.5px 0 rgba(255,255,255,0.40),
    inset 0 1px 10px rgba(255,255,255,0.10);
}
.liquid-btn.secondary:hover { transform: scale(1.04) translateY(-2px); background: rgba(255,255,255,0.18); box-shadow: 0 18px 36px -4px rgba(0,0,0,0.38), inset 0 1.5px 0 rgba(255,255,255,0.45), inset 0 1px 14px rgba(255,255,255,0.14); }
.liquid-btn.secondary:active { transform: scale(0.98); }

/* Accent — solid navy (for white sections) */
.liquid-btn.accent {
  background: linear-gradient(145deg, var(--primary), var(--primary-dark));
  color: #fff;
  box-shadow:
    0 14px 32px -4px rgba(15, 44, 110, 0.50),
    0 4px 12px rgba(26,79,170,0.30),
    inset 0 1.5px 0 rgba(255,255,255,0.22),
    inset 0 1px 10px rgba(255,255,255,0.10);
}
.liquid-btn.accent:hover { transform: scale(1.04) translateY(-2px); filter: brightness(1.1); box-shadow: 0 22px 44px -4px rgba(15,44,110,0.60), 0 8px 20px rgba(26,79,170,0.38), inset 0 1.5px 0 rgba(255,255,255,0.28), inset 0 1px 14px rgba(255,255,255,0.14); }
.liquid-btn.accent:active { transform: scale(0.97); }

/* Outline — navy border, clear bg (on white sections) */
.liquid-btn.outline-navy {
  background: rgba(255,255,255,0.35);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  color: var(--primary-dark);
  border: 1.5px solid rgba(15, 44, 110, 0.30);
  box-shadow:
    0 8px 22px -4px rgba(15, 44, 110, 0.20),
    inset 0 1.5px 0 rgba(255,255,255,0.95),
    inset 0 1px 8px rgba(255,255,255,0.55);
}
.liquid-btn.outline-navy:hover { background: rgba(255,255,255,0.55); border-color: rgba(15,44,110,0.45); transform: scale(1.04) translateY(-2px); box-shadow: 0 14px 30px -4px rgba(15,44,110,0.28), inset 0 1.5px 0 rgba(255,255,255,1), inset 0 1px 12px rgba(255,255,255,0.65); }

/* White — for dark sections */
.liquid-btn.white-btn {
  background: rgba(255,255,255,0.88);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  backdrop-filter: blur(20px) saturate(160%);
  color: var(--primary-dark);
  font-weight: 700;
  border: 1.5px solid rgba(255,255,255,0.95);
  box-shadow:
    0 16px 36px -4px rgba(0,0,0,0.28),
    0 4px 14px rgba(0,0,0,0.16),
    inset 0 1.5px 0 rgba(255,255,255,1),
    inset 0 1px 10px rgba(255,255,255,0.80);
}
.liquid-btn.white-btn:hover { transform: scale(1.04) translateY(-2px); background: rgba(255,255,255,0.96); box-shadow: 0 24px 48px -4px rgba(0,0,0,0.34), 0 8px 20px rgba(0,0,0,0.20), inset 0 1.5px 0 rgba(255,255,255,1), inset 0 1px 14px rgba(255,255,255,0.90); }

/* ================================================================
   NAVIGATION
================================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: background var(--transition), box-shadow var(--transition), border-color var(--transition);
}

/* On hero (dark background) — transparent */
.navbar.at-top {
  background: transparent;
  border-bottom: 1px solid transparent;
}

/* Scrolled off hero — white glass */
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(15, 44, 110, 0.1);
  box-shadow: 0 2px 20px rgba(15, 44, 110, 0.1);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
}

/* Logo */
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; flex-shrink: 0; }
.logo img { height: 52px; width: auto; display: block; }
.at-top .logo img { filter: brightness(1.15) drop-shadow(0 1px 6px rgba(255,255,255,0.25)); }
.scrolled .logo img { filter: none; }
.logo-icon svg { width: 46px; height: 46px; filter: drop-shadow(0 0 6px rgba(26,79,170,0.3)); }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }

/* Logo name changes colour with scroll */
.at-top .logo-name { color: #fff; }
.scrolled .logo-name { color: var(--primary-dark); }
.logo-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: color var(--transition);
}

.at-top .logo-tagline { color: rgba(255,255,255,0.55); }
.scrolled .logo-tagline { color: var(--text-muted); }
.logo-tagline {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 400;
  transition: color var(--transition);
}

/* Nav Links */
.nav-links { display: flex; align-items: center; gap: 4px; margin-left: auto; }

.nav-link {
  position: relative;
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}

/* Underline indicator */
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 14px; right: 14px;
  height: 2px;
  background: linear-gradient(90deg, #6B35C4, #9B5FE8, #7040D0);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

/* Colours adapt to nav state */
.at-top .nav-link { color: rgba(255,255,255,0.75); }
.at-top .nav-link:hover, .at-top .nav-link.active { color: #fff; background: rgba(255,255,255,0.1); }
.at-top .nav-link::after { background: #fff; }

.scrolled .nav-link { color: var(--text-body); }
.scrolled .nav-link:hover, .scrolled .nav-link.active { color: var(--primary-dark); background: rgba(15,44,110,0.06); }

.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }

/* Login button */
.btn-login {
  display: flex; align-items: center; gap: 7px;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.88rem; font-weight: 600;
  transition: all var(--transition);
  flex-shrink: 0;
}
.btn-login svg { width: 16px; height: 16px; }

.at-top .btn-login {
  color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.08);
}
.at-top .btn-login:hover { color: #fff; background: rgba(255,255,255,0.16); border-color: rgba(255,255,255,0.4); }

.scrolled .btn-login {
  color: var(--primary-dark);
  border: 1.5px solid rgba(15,44,110,0.25);
  background: transparent;
}
.scrolled .btn-login:hover { background: rgba(15,44,110,0.06); border-color: var(--primary-dark); }

/* Mobile Toggle */
.mobile-toggle {
  display: none; flex-direction: column; gap: 5px;
  padding: 8px; margin-left: auto;
  border-radius: 8px; transition: background var(--transition);
}
.mobile-toggle span {
  display: block; width: 24px; height: 2px; border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition), background var(--transition);
}
.at-top .mobile-toggle span { background: rgba(255,255,255,0.8); }
.scrolled .mobile-toggle span { background: var(--primary-dark); }
.mobile-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.mobile-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ================================================================
   HERO — stays dark/navy
================================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.hero-img { background-size: cover; background-position: center; }

.hero-background::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(5, 13, 31, 0.88) 0%,
    rgba(5, 13, 31, 0.74) 42%,
    rgba(5, 13, 31, 0.48) 62%,
    rgba(5, 13, 31, 0.65) 100%
  );
}

.hero-img-1 {
  background: linear-gradient(145deg, #1e3a5f 0%, #2563eb 50%, #1e40af 100%);
}
.hero-img-2 {
  background: linear-gradient(145deg, #0f2040 0%, #1a4faa 50%, #0e7490 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: calc(var(--nav-height) + 40px) 32px 80px;
  display: flex;
  align-items: center;
}

/* Hero card — dark liquid glass on navy photo background */
.hero-card {
  max-width: 560px;
  padding: 48px 52px;
  border-radius: var(--radius-xl);
  background: linear-gradient(
    155deg,
    rgba(15, 44, 110, 0.52) 0%,
    rgba(5, 13, 31, 0.62) 100%
  );
  -webkit-backdrop-filter: blur(28px) saturate(200%);
  backdrop-filter: blur(28px) saturate(200%);
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(0, 0, 0, 0.22);
  border-right: 1px solid rgba(0, 0, 0, 0.14);
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.4),
    0 6px 20px rgba(0, 0, 0, 0.2),
    inset 0 2px 0 rgba(255, 255, 255, 0.28),
    inset 0 -1.5px 0 rgba(0, 0, 0, 0.22),
    inset 2px 0 0 rgba(255, 255, 255, 0.14),
    inset -1px 0 0 rgba(0, 0, 0, 0.12),
    inset 0 0 32px rgba(255, 255, 255, 0.06);
  animation: heroCardIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
  position: relative; overflow: hidden;
}
.hero-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 48%;
  background: linear-gradient(180deg, rgba(255,255,255,0.12) 0%, transparent 100%);
  border-radius: inherit; pointer-events: none; z-index: 0;
}
.hero-card::after {
  content: '';
  position: absolute; top: -25%; left: -10%; width: 60%; height: 60%;
  background: radial-gradient(ellipse at 30% 30%, rgba(255,255,255,0.10) 0%, transparent 65%);
  pointer-events: none; z-index: 0;
}
.hero-card > * { position: relative; z-index: 1; }

@keyframes heroCardIn {
  from { opacity: 0; transform: translateY(30px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 14px;
  background: rgba(96, 165, 250, 0.18);
  border: 1px solid rgba(96, 165, 250, 0.35);
  border-radius: var(--radius-full);
  font-size: 0.78rem; font-weight: 600;
  color: #93c5fd;
  letter-spacing: 0.05em; text-transform: uppercase;
  margin-bottom: 22px;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%; background: #22c55e;
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700; line-height: 1.15;
  color: #fff;
  margin-bottom: 18px; letter-spacing: -0.02em;
}
.hero-title em { font-style: italic; color: #93c5fd; text-shadow: 0 0 40px rgba(96,165,250,0.45); }

.hero-subtitle { font-size: 1.15rem; font-weight: 500; color: #ffffff; margin-bottom: 16px; }
.hero-description { font-size: 0.95rem; color: #ffffff; line-height: 1.75; margin-bottom: 36px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-scroll-indicator {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center;
  opacity: 0.5; animation: scrollBounce 2.2s ease infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.5; }
  50% { transform: translateX(-50%) translateY(6px); opacity: 0.8; }
}
.scroll-dot {
  width: 24px; height: 38px;
  border: 2px solid rgba(255,255,255,0.4); border-radius: 12px; position: relative;
}
.scroll-dot::after {
  content: '';
  position: absolute; top: 5px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 4px; border-radius: 50%; background: rgba(255,255,255,0.7);
  animation: scrollInner 2.2s ease infinite;
}
@keyframes scrollInner {
  0% { top: 5px; opacity: 1; }
  80% { top: 22px; opacity: 0; }
  100% { top: 5px; opacity: 0; }
}

/* ================================================================
   STATS BANNER — navy cards on white page
================================================================ */
.stats-banner {
  position: relative; z-index: 1;
  padding: 0 32px;
  margin-top: -50px;
}

.stats-container {
  max-width: 1080px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}

.stat-item {
  padding: 28px 24px; text-align: center;
  border-radius: var(--radius-lg);
  /* Dark navy glass with its own shine */
  background: linear-gradient(155deg, rgba(15,44,110,0.95) 0%, rgba(10,22,40,0.98) 100%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  backdrop-filter: blur(20px) saturate(160%);
  border-top: 1px solid rgba(255,255,255,0.18);
  border-left: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(0,0,0,0.25);
  border-right: 1px solid rgba(0,0,0,0.15);
  box-shadow:
    0 8px 32px rgba(15, 44, 110, 0.35),
    /* Top shine on dark glass */
    inset 0 2px 0 rgba(255, 255, 255, 0.22),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2),
    inset 2px 0 0 rgba(255, 255, 255, 0.1),
    inset 0 0 24px rgba(255, 255, 255, 0.04);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative; overflow: hidden;
}
/* Shine on dark glass */
.stat-item::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 45%;
  background: linear-gradient(180deg, rgba(255,255,255,0.10) 0%, transparent 100%);
  border-radius: inherit; pointer-events: none;
}
.stat-item::after {
  content: '';
  position: absolute; top: -20%; left: -10%; width: 55%; height: 55%;
  background: radial-gradient(ellipse at 35% 30%, rgba(255,255,255,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.stat-item:hover {
  transform: translateY(-4px);
  box-shadow:
    0 18px 52px rgba(15, 44, 110, 0.45),
    inset 0 2px 0 rgba(255, 255, 255, 0.28),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2),
    inset 0 0 28px rgba(255, 255, 255, 0.06);
}
.stat-number {
  display: block; font-size: 2.4rem; font-weight: 800;
  color: #93c5fd; letter-spacing: -0.02em;
  line-height: 1; margin-bottom: 6px;
}
.stat-label { display: block; font-size: 0.82rem; color: #ffffff; font-weight: 500; }

/* ================================================================
   SECTION COMMONS — dark text on white
================================================================ */
.section-container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }

.section-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 14px;
  background: linear-gradient(135deg, #6B35C4, #9B5FE8, #7040D0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-label::before {
  content: ''; display: block; width: 24px; height: 2px;
  background: linear-gradient(90deg, #6B35C4, #9B5FE8);
  border-radius: 2px; flex-shrink: 0;
}
.section-label::after {
  content: ''; display: block; width: 24px; height: 2px;
  background: linear-gradient(90deg, #9B5FE8, #7040D0);
  border-radius: 2px; flex-shrink: 0;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  font-weight: 700; line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-heading);
  margin-bottom: 18px;
}
.section-title span { color: var(--primary); font-style: italic; }

.section-description {
  font-size: 1rem;
  color: #111111;
  line-height: 1.8;
  max-width: 600px;
}

/* ================================================================
   ABOUT SECTION
================================================================ */
.about-section {
  padding: 120px 32px;
  background: linear-gradient(160deg, #dde6f2 0%, #d4dceb 50%, #dae3f0 100%);
  position: relative; overflow: hidden;
}
.about-section::before {
  content: '';
  position: absolute; top: -200px; right: -100px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(26,79,170,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.about-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center;
}

.about-image-block { position: relative; }
.about-img-main {
  width: 100%; aspect-ratio: 3/4;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, #0e7490 100%);
  box-shadow: 0 24px 64px rgba(15,44,110,0.2);
  position: relative; overflow: hidden;
}
.about-img-badge {
  position: absolute; bottom: -38px; right: -22px;
  width: 192px;
  padding: 0;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.18), 0 2px 8px rgba(0,0,0,0.10);
  overflow: hidden;
  font-family: var(--font-body);
}

/* CQC widget inner styles */
.cqc-w-header {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 12px 8px;
  border-bottom: 1px solid #e8e8e8;
}
.cqc-w-brand {
  display: flex; flex-direction: column; line-height: 1.15;
}
.cqc-w-brand span:first-child { font-size: 0.74rem; font-weight: 700; color: #222; }
.cqc-w-brand span:last-child  { font-size: 0.68rem; font-weight: 400; color: #555; }

.cqc-w-provider {
  padding: 6px 12px 4px;
  font-size: 0.78rem; font-weight: 600; color: #111;
  margin: 0;
}

.cqc-w-rating-box {
  margin: 0 10px 8px;
  padding: 8px 10px;
  background: #f4f4f4;
  border-radius: 6px;
}
.cqc-w-rating-label { font-size: 0.66rem; color: #555; margin: 0 0 3px; }
.cqc-w-rating-value { font-size: 0.92rem; font-weight: 700; color: #111; margin: 0 0 2px; }
.cqc-w-dot { color: #22a84a; font-size: 0.7rem; }
.cqc-w-rating-date { font-size: 0.63rem; color: #777; margin: 0; }

.cqc-w-btn {
  display: block;
  margin: 0 10px 10px;
  padding: 5px 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 0.70rem; color: #333; text-decoration: none;
  text-align: center;
  transition: background 0.2s;
}
.cqc-w-btn:hover { background: #f0f0f0; }

.faqs-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 28px;
  background: linear-gradient(135deg, #7B42D4 0%, #9B5FE8 100%);
  color: #fff;
  font-weight: 600;
  font-size: 0.97rem;
  letter-spacing: 0.04em;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(123,66,212,0.25);
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
}
.faqs-btn:hover {
  background: linear-gradient(135deg, #6B35C4 0%, #8B4FD8 100%);
  box-shadow: 0 6px 22px rgba(123,66,212,0.38);
  transform: translateY(-1px);
  color: #fff;
  text-decoration: none;
}

.about-features { margin-top: 36px; display: flex; flex-direction: column; gap: 14px; }

.about-feature-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 18px 20px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.84);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  backdrop-filter: blur(14px) saturate(160%);
  border-top: 1px solid rgba(255,255,255,1);
  border-left: 1px solid rgba(255,255,255,0.95);
  border-bottom: 1px solid rgba(15,44,110,0.08);
  border-right: 1px solid rgba(15,44,110,0.05);
  box-shadow:
    5px 5px 12px rgba(15,44,110,0.10),
    -3px -3px 8px rgba(255,255,255,0.88),
    inset 0 2px 0 rgba(255,255,255,1),
    inset 0 0 14px rgba(255,255,255,0.26);
  transition: all var(--transition);
  position: relative; overflow: hidden;
}
.about-feature-item::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,0.5) 0%, transparent 100%);
  border-radius: inherit; pointer-events: none; z-index: 0;
}
.about-feature-item:hover {
  background: linear-gradient(150deg, rgba(255,255,255,0.96) 0%, rgba(240,248,255,0.72) 100%);
  border-color: rgba(26,79,170,0.14);
  transform: translateX(4px);
  box-shadow:
    0 6px 24px rgba(15,44,110,0.1),
    inset 0 2px 0 rgba(255,255,255,1),
    inset 0 0 24px rgba(255,255,255,0.38);
}
.about-feature-item > * { position: relative; z-index: 1; }
.about-feature-icon {
  width: 44px; height: 44px; border-radius: var(--radius-sm);
  background: rgba(26,79,170,0.08);
  border: 1px solid rgba(26,79,170,0.18);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.about-feature-icon svg { width: 22px; height: 22px; color: var(--primary); }
.about-feature-text h4 { font-size: 0.95rem; font-weight: 600; color: var(--text-heading); margin-bottom: 3px; }
.about-feature-text p { font-size: 0.85rem; color: #111111; line-height: 1.5; }

/* ================================================================
   SERVICES SECTION
================================================================ */
.services-section {
  padding: 100px 32px;
  background: linear-gradient(145deg, #d2dcea 0%, #c8d4e4 50%, #cfd9e8 100%);
  position: relative;
}
.services-section::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(26,79,170,0.03) 50%, transparent 100%);
  pointer-events: none;
}

.services-header { text-align: center; max-width: 640px; margin: 0 auto 64px; }

.services-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}

.service-card {
  padding: 40px 36px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.88);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  backdrop-filter: blur(20px) saturate(160%);
  border-top: 1px solid rgba(255, 255, 255, 1);
  border-left: 1px solid rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(15, 44, 110, 0.08);
  border-right: 1px solid rgba(15, 44, 110, 0.06);
  box-shadow:
    6px 6px 18px rgba(15, 44, 110, 0.12),
    -4px -4px 12px rgba(255, 255, 255, 0.88),
    inset 0 2px 0 rgba(255, 255, 255, 1),
    inset 0 -1.5px 0 rgba(15, 44, 110, 0.07),
    inset 2px 0 0 rgba(255, 255, 255, 0.75),
    inset -1px 0 0 rgba(15, 44, 110, 0.04),
    inset 0 0 28px rgba(255, 255, 255, 0.35);
  transition: all var(--transition);
  position: relative; overflow: hidden; cursor: pointer;
}
/* Top-half shine */
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 52%;
  background: linear-gradient(180deg, rgba(255,255,255,0.6) 0%, transparent 100%);
  border-radius: inherit; pointer-events: none; z-index: 0;
  transition: opacity var(--transition);
}
/* Corner catch-light */
.service-card::after {
  content: '';
  position: absolute; top: -30%; left: -15%;
  width: 65%; height: 65%;
  background: radial-gradient(ellipse at 30% 30%, rgba(255,255,255,0.48) 0%, transparent 65%);
  pointer-events: none; z-index: 0;
}
.service-card:hover {
  transform: translateY(-6px);
  background: linear-gradient(
    155deg,
    rgba(255, 255, 255, 0.97) 0%,
    rgba(240, 248, 255, 0.78) 60%,
    rgba(228, 241, 255, 0.65) 100%
  );
  box-shadow:
    0 18px 52px rgba(15, 44, 110, 0.14),
    0 4px 12px rgba(15, 44, 110, 0.08),
    inset 0 2px 0 rgba(255, 255, 255, 1),
    inset 0 -1.5px 0 rgba(15, 44, 110, 0.08),
    inset 2px 0 0 rgba(255, 255, 255, 0.85),
    inset -1px 0 0 rgba(15, 44, 110, 0.05),
    inset 0 0 36px rgba(255, 255, 255, 0.45);
}

.service-card-number {
  font-size: 3.5rem; font-weight: 900;
  color: rgba(15,44,110,0.05);
  line-height: 1; position: absolute; top: 24px; right: 28px;
  transition: color var(--transition);
  z-index: 1;
}
.service-card:hover .service-card-number { color: rgba(15,44,110,0.09); }

/* Ensure all service-card direct content sits above ::before/::after shine layers */
.service-card > *:not(.service-card-number) { position: relative; z-index: 1; }
.value-item > * { position: relative; z-index: 1; }
.testimonial-card > * { position: relative; z-index: 1; }

.service-icon {
  width: 60px; height: 60px; border-radius: var(--radius);
  background: rgba(26,79,170,0.08);
  border: 1px solid rgba(26,79,170,0.16);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 4px 12px rgba(26,79,170,0.1);
  transition: all var(--transition);
}
.service-card:hover .service-icon {
  background: rgba(26,79,170,0.14);
  box-shadow: 0 6px 20px rgba(26,79,170,0.18);
  transform: scale(1.05);
}
.service-icon svg { width: 28px; height: 28px; color: var(--primary); }
.service-card h3 { font-size: 1.2rem; font-weight: 700; color: var(--text-heading); margin-bottom: 12px; }
.service-card p { font-size: 0.88rem; color: #111111; line-height: 1.75; margin-bottom: 28px; }
.service-card-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.85rem; font-weight: 600; color: var(--primary);
  transition: gap var(--transition);
}
.service-card-link svg { width: 16px; height: 16px; transition: transform var(--transition); }
.service-card:hover .service-card-link { gap: 10px; }
.service-card:hover .service-card-link svg { transform: translateX(2px); }

/* ================================================================
   VALUES / WHY CHOOSE US
================================================================ */
.values-section { padding: 100px 32px; background: linear-gradient(155deg, #dde6f2 0%, #d4dceb 50%, #dae3f0 100%); }

.values-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.6fr; gap: 80px; align-items: start;
}

.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.value-item {
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.86);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  backdrop-filter: blur(16px) saturate(160%);
  border-top: 1px solid rgba(255,255,255,1);
  border-left: 1px solid rgba(255,255,255,0.95);
  border-bottom: 1px solid rgba(15,44,110,0.08);
  border-right: 1px solid rgba(15,44,110,0.06);
  box-shadow:
    5px 5px 14px rgba(15,44,110,0.11),
    -3px -3px 9px rgba(255,255,255,0.88),
    inset 0 2px 0 rgba(255,255,255,1),
    inset 0 0 18px rgba(255,255,255,0.30);
  transition: all var(--transition);
  position: relative; overflow: hidden;
}
.value-item::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,0.55) 0%, transparent 100%);
  border-radius: inherit; pointer-events: none; z-index: 0;
}
.value-item:hover {
  background: rgba(255, 255, 255, 0.96);
  transform: translateY(-3px);
  box-shadow:
    8px 8px 20px rgba(15,44,110,0.13),
    -4px -4px 12px rgba(255,255,255,0.90),
    inset 0 2px 0 rgba(255,255,255,1),
    inset 0 0 24px rgba(255,255,255,0.40);
}
.value-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(26,79,170,0.08); border: 1px solid rgba(26,79,170,0.15);
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.value-icon svg { width: 24px; height: 24px; color: var(--primary); }
.value-item h4 { font-size: 0.95rem; font-weight: 700; color: var(--text-heading); margin-bottom: 6px; }
.value-item p { font-size: 0.82rem; color: #111111; line-height: 1.6; }

/* ================================================================
   TESTIMONIALS
================================================================ */
.testimonials-section {
  padding: 100px 32px;
  background: linear-gradient(160deg, #d0dae8 0%, #c8d2e2 50%, #cdd8e7 100%);
}

.testimonials-header { text-align: center; max-width: 540px; margin: 0 auto 56px; }

.testimonials-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}

.testimonial-card {
  padding: 32px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.86);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  backdrop-filter: blur(18px) saturate(160%);
  border-top: 1px solid rgba(255,255,255,1);
  border-left: 1px solid rgba(255,255,255,0.95);
  border-bottom: 1px solid rgba(15,44,110,0.08);
  border-right: 1px solid rgba(15,44,110,0.06);
  box-shadow:
    6px 6px 16px rgba(15,44,110,0.11),
    -3px -3px 9px rgba(255,255,255,0.88),
    inset 0 2px 0 rgba(255,255,255,1),
    inset 0 -1px 0 rgba(15,44,110,0.05),
    inset 2px 0 0 rgba(255,255,255,0.70),
    inset 0 0 22px rgba(255,255,255,0.32);
  transition: all var(--transition);
  position: relative; overflow: hidden;
}
.testimonial-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,0.55) 0%, transparent 100%);
  border-radius: inherit; pointer-events: none; z-index: 0;
}
.testimonial-card::after {
  content: '';
  position: absolute; top: -25%; left: -10%; width: 60%; height: 60%;
  background: radial-gradient(ellipse at 35% 30%, rgba(255,255,255,0.42) 0%, transparent 65%);
  pointer-events: none; z-index: 0;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.95);
  box-shadow:
    9px 9px 22px rgba(15,44,110,0.13),
    -4px -4px 12px rgba(255,255,255,0.92),
    inset 0 2px 0 rgba(255,255,255,1),
    inset 0 -1px 0 rgba(15,44,110,0.06),
    inset 0 0 28px rgba(255,255,255,0.42);
}
.testimonial-stars { display: flex; gap: 3px; margin-bottom: 16px; }
.testimonial-stars svg { width: 16px; height: 16px; color: #f59e0b; fill: #f59e0b; }
.testimonial-text { font-size: 0.9rem; color: #111111; line-height: 1.8; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; font-weight: 700; color: #fff; flex-shrink: 0;
}
.author-info .author-name { font-size: 0.9rem; font-weight: 600; color: var(--text-heading); }
.author-info .author-role { font-size: 0.78rem; color: #111111; }

/* ================================================================
   RECRUITMENT SECTION — stays dark navy
================================================================ */
.recruitment-section {
  padding: 80px 32px;
  background: var(--navy);
  position: relative; overflow: hidden;
}
.recruitment-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(26,79,170,0.25) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(14,116,144,0.15) 0%, transparent 60%);
  pointer-events: none;
}

.recruitment-card {
  max-width: 1100px; margin: 0 auto;
  padding: 64px 72px;
  border-radius: var(--radius-xl);
  background: linear-gradient(
    155deg,
    rgba(15, 44, 110, 0.58) 0%,
    rgba(5, 13, 31, 0.68) 100%
  );
  -webkit-backdrop-filter: blur(32px) saturate(200%);
  backdrop-filter: blur(32px) saturate(200%);
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(0, 0, 0, 0.22);
  border-right: 1px solid rgba(0, 0, 0, 0.12);
  box-shadow:
    0 28px 72px rgba(0, 0, 0, 0.45),
    0 8px 24px rgba(0, 0, 0, 0.22),
    inset 0 2px 0 rgba(255, 255, 255, 0.24),
    inset 0 -1.5px 0 rgba(0, 0, 0, 0.22),
    inset 2px 0 0 rgba(255, 255, 255, 0.12),
    inset -1px 0 0 rgba(0, 0, 0, 0.1),
    inset 0 0 40px rgba(255, 255, 255, 0.05);
  display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: center;
  position: relative; overflow: hidden;
}
/* Top-half shine for dark card */
.recruitment-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 48%;
  background: linear-gradient(180deg, rgba(255,255,255,0.09) 0%, transparent 100%);
  border-radius: inherit; pointer-events: none; z-index: 0;
}
/* Corner catch-light */
.recruitment-card::after {
  content: '';
  position: absolute; top: -20%; left: -8%; width: 55%; height: 60%;
  background: radial-gradient(ellipse at 30% 30%, rgba(255,255,255,0.08) 0%, transparent 65%);
  pointer-events: none; z-index: 0;
}
.recruitment-card > * { position: relative; z-index: 1; }

/* Text in recruitment section stays light (reset violet gradient) */
.recruitment-content .section-label {
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: #93c5fd;
  background-clip: unset;
  color: #93c5fd;
}
.recruitment-content .section-label::before,
.recruitment-content .section-label::after { background: #93c5fd; }
.recruitment-content .section-title { color: #fff; font-size: clamp(1.6rem, 2.5vw, 2.2rem); }
.recruitment-content p { font-size: 0.95rem; color: rgba(255,255,255,0.55); line-height: 1.75; max-width: 480px; }

.recruitment-actions { display: flex; flex-direction: column; gap: 12px; align-items: flex-end; flex-shrink: 0; }

/* ================================================================
   NEWSLETTER
================================================================ */
.newsletter-section { padding: 80px 32px; background: linear-gradient(150deg, #dde6f2 0%, #d2dce8 100%); }

.newsletter-card {
  max-width: 640px; margin: 0 auto;
  padding: 52px 56px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.88);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  backdrop-filter: blur(20px) saturate(160%);
  border-top: 1px solid rgba(255,255,255,1);
  border-left: 1px solid rgba(255,255,255,0.95);
  border-bottom: 1px solid rgba(15,44,110,0.08);
  border-right: 1px solid rgba(15,44,110,0.06);
  box-shadow:
    7px 7px 20px rgba(15,44,110,0.12),
    -4px -4px 12px rgba(255,255,255,0.90),
    inset 0 2px 0 rgba(255,255,255,1),
    inset 0 -1px 0 rgba(15,44,110,0.05),
    inset 2px 0 0 rgba(255,255,255,0.70),
    inset 0 0 28px rgba(255,255,255,0.34);
  text-align: center;
  position: relative; overflow: hidden;
}
.newsletter-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,0.58) 0%, transparent 100%);
  border-radius: inherit; pointer-events: none; z-index: 0;
}
.newsletter-card::after {
  content: '';
  position: absolute; top: -20%; left: -10%; width: 60%; height: 60%;
  background: radial-gradient(ellipse at 30% 30%, rgba(255,255,255,0.42) 0%, transparent 65%);
  pointer-events: none; z-index: 0;
}
.newsletter-card > * { position: relative; z-index: 1; }
.newsletter-card .section-label { justify-content: center; }
.newsletter-card .section-title { font-size: 1.8rem; }
.newsletter-card .section-description { margin: 0 auto 32px; font-size: 0.92rem; }

.newsletter-form { display: flex; gap: 10px; position: relative; }

.newsletter-input {
  flex: 1; padding: 14px 20px;
  border-radius: var(--radius-full);
  background: rgba(15,44,110,0.04);
  border: 1.5px solid rgba(15,44,110,0.14);
  color: var(--text-heading);
  font-family: inherit; font-size: 0.9rem; outline: none;
  transition: all var(--transition);
}
.newsletter-input::placeholder { color: var(--text-dim); }
.newsletter-input:focus {
  background: rgba(15,44,110,0.06);
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26,79,170,0.1);
}

/* ================================================================
   CONTACT SECTION
================================================================ */
.contact-section { padding: 100px 32px; background: linear-gradient(155deg, #d2dcea 0%, #c8d3e3 50%, #cfd9e9 100%); }

.contact-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 56px; align-items: start;
}

.contact-info .section-title { margin-bottom: 14px; }
.contact-info .section-description { margin-bottom: 40px; }

.contact-items { display: flex; flex-direction: column; gap: 16px; }

.contact-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.84);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  backdrop-filter: blur(14px) saturate(160%);
  border-top: 1px solid rgba(255,255,255,1);
  border-left: 1px solid rgba(255,255,255,0.95);
  border-bottom: 1px solid rgba(15,44,110,0.08);
  border-right: 1px solid rgba(15,44,110,0.05);
  box-shadow:
    5px 5px 12px rgba(15,44,110,0.10),
    -3px -3px 8px rgba(255,255,255,0.88),
    inset 0 2px 0 rgba(255,255,255,1),
    inset 0 0 14px rgba(255,255,255,0.28);
  transition: all var(--transition);
  position: relative; overflow: hidden;
}
.contact-item::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,0.5) 0%, transparent 100%);
  border-radius: inherit; pointer-events: none; z-index: 0;
}
.contact-item > * { position: relative; z-index: 1; }
.contact-item:hover {
  background: linear-gradient(150deg, rgba(255,255,255,0.96) 0%, rgba(240,248,255,0.75) 100%);
  border-top-color: rgba(255,255,255,1);
  border-bottom-color: rgba(26,79,170,0.12);
  box-shadow: 0 8px 28px rgba(15,44,110,0.1), inset 0 2px 0 rgba(255,255,255,1), inset 0 0 24px rgba(255,255,255,0.4);
}
.contact-item-icon {
  width: 46px; height: 46px; border-radius: var(--radius-sm);
  background: rgba(26,79,170,0.08); border: 1px solid rgba(26,79,170,0.16);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-item-icon svg { width: 22px; height: 22px; color: var(--primary); }
.contact-item-label {
  font-size: 0.78rem; color: var(--text-dim); font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px;
}
.contact-item-value { font-size: 0.95rem; color: var(--text-heading); font-weight: 500; }

/* Contact Form */
.contact-form-card {
  padding: 44px 40px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.90);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  backdrop-filter: blur(24px) saturate(160%);
  border-top: 1px solid rgba(255, 255, 255, 1);
  border-left: 1px solid rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(15, 44, 110, 0.08);
  border-right: 1px solid rgba(15, 44, 110, 0.06);
  box-shadow:
    8px 8px 22px rgba(15, 44, 110, 0.12),
    -4px -4px 13px rgba(255, 255, 255, 0.90),
    inset 0 2px 0 rgba(255, 255, 255, 1),
    inset 0 -1px 0 rgba(15, 44, 110, 0.06),
    inset 2px 0 0 rgba(255, 255, 255, 0.75),
    inset 0 0 30px rgba(255, 255, 255, 0.36);
  position: relative; overflow: hidden;
}
.contact-form-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,0.60) 0%, transparent 100%);
  border-radius: inherit; pointer-events: none; z-index: 0;
}
.contact-form-card::after {
  content: '';
  position: absolute; top: -25%; left: -12%; width: 62%; height: 62%;
  background: radial-gradient(ellipse at 32% 30%, rgba(255,255,255,0.48) 0%, transparent 65%);
  pointer-events: none; z-index: 0;
}
.contact-form-card > * { position: relative; z-index: 1; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block; font-size: 0.82rem; font-weight: 500;
  color: var(--text-heading); margin-bottom: 8px; letter-spacing: 0.02em;
}
.form-input, .form-textarea, .form-select {
  width: 100%; padding: 13px 16px;
  border-radius: var(--radius);
  background: var(--bg-alt);
  border: 1.5px solid rgba(15,44,110,0.12);
  color: var(--text-heading);
  font-family: inherit; font-size: 0.9rem; outline: none;
  transition: all var(--transition); appearance: none;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-dim); }
.form-input:focus, .form-textarea:focus, .form-select:focus {
  background-color: #fff;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26,79,170,0.1);
}
.form-textarea { min-height: 120px; resize: vertical; line-height: 1.6; }

/* ── Select / Dropdown ── */
.form-select {
  padding-right: 42px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%230f2c6e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  cursor: pointer;
}
.form-select:focus {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%231a4faa' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
}
.form-select option {
  background: #fff;
  color: var(--text-heading);
  padding: 10px 14px;
  font-size: 0.9rem;
}
.form-select option:checked {
  background: rgba(26,79,170,0.08);
  font-weight: 600;
}
.form-submit { width: 100%; margin-top: 8px; }

/* ================================================================
   FOOTER — stays dark navy
================================================================ */
.footer {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 64px 32px 36px;
  background: var(--navy);
}

.footer-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 56px;
}
.footer-brand .logo { margin-bottom: 18px; }
.footer-brand p { font-size: 0.87rem; color: #ffffff; line-height: 1.75; max-width: 280px; }
.footer-social { display: flex; gap: 10px; margin-top: 22px; }
.social-btn {
  width: 38px; height: 38px; border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center; transition: all var(--transition);
}
.social-btn svg { width: 18px; height: 18px; color: #ffffff; }
.social-btn:hover { background: rgba(147,197,253,0.15); border-color: rgba(147,197,253,0.3); }
.social-btn:hover svg { color: #93c5fd; }

.footer-col h4 {
  font-size: 0.82rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: #ffffff; margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 0.9rem; color: #ffffff;
  transition: color var(--transition);
  display: inline-flex; align-items: center; gap: 6px;
}
.footer-col a:hover { color: rgba(255,255,255,0.75); }
.footer-col a svg { width: 14px; height: 14px; opacity: 0; transform: translateX(-4px); transition: all var(--transition); }
.footer-col a:hover svg { opacity: 1; transform: translateX(0); }

.footer-bottom {
  max-width: 1200px; margin: 0 auto; padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; justify-content: space-between; align-items: center;
  gap: 20px; flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.82rem; color: #ffffff; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 0.82rem; color: #ffffff; transition: color var(--transition); }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.75); }
.cqc-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px; border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  font-size: 0.78rem; font-weight: 600; color: rgba(255,255,255,0.45); letter-spacing: 0.05em;
}
.cqc-badge::before { content: '✓'; color: #34d399; font-size: 0.9rem; }

/* ================================================================
   ANIMATIONS & SCROLL REVEAL
================================================================ */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.revealed { 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; }

/* Decorative orbs — boosted to give backdrop-filter something to refract */
.orb {
  position: fixed; border-radius: 50%;
  pointer-events: none; filter: blur(100px); opacity: 0.28; z-index: 0;
}
.orb-1 { width: 700px; height: 700px; background: radial-gradient(circle, #60a5fa, #3b82f6, transparent); top: 2%; right: -5%; }
.orb-2 { width: 600px; height: 600px; background: radial-gradient(circle, #1a4faa, #0f2c6e, transparent); bottom: 8%; left: -8%; }

/* ================================================================
   RESPONSIVE
================================================================ */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-image-block { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .values-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .recruitment-card { grid-template-columns: 1fr; gap: 32px; }
  .recruitment-actions { align-items: flex-start; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-height: 64px; }
  .mobile-toggle { display: flex; }
  .btn-login { display: none; }

  .nav-links {
    position: fixed;
    top: var(--nav-height); left: 0; right: 0; bottom: 0;
    background: rgba(255, 255, 255, 0.97);
    -webkit-backdrop-filter: blur(24px); backdrop-filter: blur(24px);
    flex-direction: column;
    padding: 32px 24px; gap: 8px; align-items: stretch;
    transform: translateX(100%);
    transition: transform var(--transition-slow);
    border-top: 1px solid rgba(15,44,110,0.1);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links .nav-link { font-size: 1.1rem; padding: 14px 16px; border-radius: var(--radius); color: var(--text-heading); }
  .nav-links .nav-link:hover { background: rgba(15,44,110,0.06); color: var(--primary-dark); }

  .hero-card { padding: 32px 28px; }
  .stats-container { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .hero-actions { flex-direction: column; }
  .form-row { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .newsletter-card { padding: 36px 28px; }
  .newsletter-form { flex-direction: column; }
  .recruitment-card { padding: 36px 28px; }
}

@media (max-width: 480px) {
  .stats-container { grid-template-columns: 1fr 1fr; }
  .hero-card { padding: 28px 22px; }
  .liquid-btn { padding: 12px 24px; font-size: 0.9rem; }
}

/* ================================================================
   UTILITY
================================================================ */
.text-center { text-align: center; }
.text-accent { color: var(--primary); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* Nav logo image */
.nav-logo-img { height: 52px; width: auto; display: block; }

/* Footer logo image (with brightness filter for dark footer) */
.footer-logo-img { height: 52px; width: auto; display: block; filter: brightness(1.2) drop-shadow(0 1px 8px rgba(255,255,255,0.15)); }

/* Simplified footer layout used on inner pages */
.footer-top { max-width: 1200px; margin: 0 auto; padding: 24px 32px 0; display: flex; align-items: center; gap: 16px; }
.footer-charity-img { height: 80px; width: auto; object-fit: contain; border-radius: 6px; border: 1px solid rgba(255,255,255,0.12); }
.footer-back { font-size: 0.85rem; color: #ffffff; }

/* Section label centred variant */
.label-center { justify-content: center; }

/* Small inline SVG icon */
.icon-sm { width: 16px; height: 16px; }

/* Gradient text for "Gian" brand name in headings */
.gradient-gian {
  background: linear-gradient(90deg, #6B35C4, #9B5FE8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Solid violet text (hero titles, recruitment headings) */
.text-violet { color: #9B5FE8; -webkit-text-fill-color: #9B5FE8; }
.text-purple { color: #7B42D4; -webkit-text-fill-color: #7B42D4; }

/* About section image cover fill */
.about-img-cover { width: 100%; height: 100%; object-fit: cover; border-radius: inherit; }

/* Spacing utilities */
.mt-14 { margin-top:14px; }
.mt-24 { margin-top:24px; }
.mt-36 { margin-top:36px; }
.mt-48 { margin-top:48px; }
.tc-mt-48 { text-align:center; margin-top:48px; }

/* Text utilities */
.text-white { color:#fff; }
.font-semibold { font-weight:600; }

/* Icon utilities */
.icon-xs { width:15px; height:15px; flex-shrink:0; margin-top:1px; }
.icon-faqs { width:18px; height:18px; vertical-align:middle; margin-left:6px; }

/* Form utilities */
.textarea-tall { min-height:140px; }
.submit-full { width:100%; margin-top:8px; }

/* Recruitment benefit list */
.benefit-tags { margin-top:24px; display:flex; flex-wrap:wrap; gap:16px; }
.benefit-tag { display:flex; align-items:center; gap:8px; font-size:0.85rem; color:#fff; }

/* Accreditations strip */
.accred-strip { max-width: 1200px; margin: 0 auto; padding: 40px 32px; border-top: 1px solid rgba(255,255,255,0.08); }
.accred-heading { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 24px; }
.accred-flex { display: flex; flex-wrap: wrap; align-items: flex-start; gap: 20px; }
.cqc-card { background: #fff; border-radius: 8px; border: 1px solid #ddd; padding: 18px 20px; min-width: 210px; max-width: 230px; font-family: Arial, sans-serif; }
.cqc-card-header { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.cqc-icon-wrap { position: relative; width: 42px; height: 42px; flex-shrink: 0; }
.cqc-icon-svg { width: 42px; height: 42px; }
.cqc-brand-text { line-height: 1.2; }
.cqc-brand-name { font-size: 0.82rem; font-weight: 700; color: #7b2d8b; }
.cqc-brand-sub { font-size: 0.75rem; color: #555; }
.cqc-location { font-size: 0.8rem; color: #333; margin-bottom: 8px; }
.cqc-rating-box { background: #f5f5f5; border-radius: 4px; padding: 8px 10px; margin-bottom: 10px; }
.cqc-rating-label { font-size: 0.7rem; color: #666; margin-bottom: 4px; }
.cqc-rating-row { display: flex; align-items: center; gap: 6px; }
.cqc-rating-good { font-size: 0.95rem; color: #111; }
.cqc-dot-good { width: 10px; height: 10px; border-radius: 50%; background: #4caf50; display: inline-block; }
.cqc-rating-date { font-size: 0.7rem; color: #888; margin-top: 4px; }
.cqc-report-link { display: inline-flex; align-items: center; gap: 4px; font-size: 0.78rem; color: #333; border: 1px solid #bbb; border-radius: 4px; padding: 5px 10px; text-decoration: none; }
.cqc-regulated { background: #7b2d8b; border-radius: 6px; padding: 12px 16px; display: flex; align-items: center; gap: 10px; min-width: 180px; }
.cqc-regulated-svg { width: 36px; height: 36px; flex-shrink: 0; }
.cqc-regulated-text { line-height: 1.3; }
.cqc-regulated-label { font-size: 0.65rem; color: rgba(255,255,255,0.8); font-weight: 500; }
.cqc-regulated-brand { font-size: 0.78rem; font-weight: 700; color: #fff; }
.cqc-regulated-commission { font-size: 0.72rem; color: rgba(255,255,255,0.9); }
.disability-badge { background: #fff; border: 2px solid #003479; border-radius: 6px; padding: 10px 14px; min-width: 140px; font-family: Arial, sans-serif; text-align: center; }
.disability-icon-row { display: flex; align-items: center; justify-content: center; gap: 4px; margin-bottom: 4px; }
.disability-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.disability-sq-dk { width: 10px; height: 10px; background: #003479; border-radius: 1px; }
.disability-sq-lt { width: 10px; height: 10px; background: #5b9bd5; border-radius: 1px; }
.disability-title { font-size: 0.75rem; font-weight: 700; color: #003479; line-height: 1.2; }
.disability-label { font-size: 0.65rem; color: #555; border-top: 1px solid #ddd; margin-top: 4px; padding-top: 4px; letter-spacing: 0.05em; text-transform: uppercase; }
.regiment-wrap { border-radius: 8px; overflow: hidden; border: 1px solid rgba(255,255,255,0.12); flex-shrink: 0; }
.regiment-img { height: 100px; width: auto; display: block; object-fit: contain; }
