@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400;1,600&family=Inter:wght@300;400;500;600&display=swap');

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

    :root {
      --navy:   #1B2D4A;
      --teal:   #2AADA3;
      --white:  #FFFFFF;
      --off:    #F7F8F6;
      --border: #E4E8E3;
      --muted:  #4A5C6A;
      --text:   #1B2D4A;
      --pad:    64px;
    }

    html { scroll-behavior: smooth; }
    body {
      font-family: 'Inter', sans-serif;
      color: var(--text);
      background: var(--white);
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    /* ── PREVIEW BANNER ── */
    .preview-banner {
      background: var(--navy);
      color: rgba(255,255,255,0.45);
      text-align: center;
      padding: 9px;
      font-size: 11px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }
    .preview-banner span { color: var(--teal); font-weight: 600; }

    /* ── NAV ── */
    nav {
      position: sticky;
      top: 0;
      z-index: 200;
      background: rgba(255,255,255,0.97);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 var(--pad);
      height: 72px;
    }
    .nav-logo img { height: 40px; width: auto; display: block; }
    .nav-logo-text { display: none; font-size: 15px; font-weight: 700; letter-spacing: 0.12em; color: var(--navy); }
    .nav-links { display: flex; align-items: center; gap: 36px; }
    .nav-links a {
      color: var(--muted);
      text-decoration: none;
      font-size: 14px;
      font-weight: 400;
      transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--navy); }
    .nav-cta {
      background: var(--navy) !important;
      color: var(--white) !important;
      padding: 11px 26px;
      font-size: 13px !important;
      font-weight: 500 !important;
      letter-spacing: 0.05em;
      transition: background 0.2s !important;
    }
    .nav-cta:hover { background: var(--teal) !important; }

    /* Mobile hamburger */
    .nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
    .nav-toggle span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; }
    .mobile-menu {
      display: none;
      position: fixed;
      top: 72px; left: 0; right: 0;
      background: var(--white);
      border-bottom: 1px solid var(--border);
      padding: 24px var(--pad);
      z-index: 199;
      flex-direction: column;
      gap: 20px;
    }
    .mobile-menu.open { display: flex; }
    .mobile-menu a {
      color: var(--navy);
      text-decoration: none;
      font-size: 16px;
      font-weight: 400;
      padding: 8px 0;
      border-bottom: 1px solid var(--border);
    }
    .mobile-menu a:last-child { border-bottom: none; }

    /* ── HERO ── */
    .hero {
      display: grid;
      grid-template-columns: 1fr 1fr;
      min-height: calc(100vh - 72px);
    }
    .hero-left {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 80px var(--pad);
      background: var(--white);
    }
    .hero-eyebrow {
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--teal);
      margin-bottom: 28px;
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .hero h1 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(52px, 6vw, 78px);
      font-weight: 400;
      line-height: 1.1;
      letter-spacing: -0.01em;
      color: var(--navy);
      margin-bottom: 24px;
    }
    .hero h1 em { font-style: italic; font-weight: 400; }
    .hero-sub {
      font-size: 17px;
      color: var(--muted);
      line-height: 1.8;
      max-width: 420px;
      font-weight: 400;
      margin-bottom: 44px;
    }
    .hero-actions { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
    .btn-primary {
      background: var(--navy);
      color: var(--white);
      padding: 15px 34px;
      font-size: 14px;
      font-weight: 500;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      text-decoration: none;
      transition: background 0.2s;
      display: inline-block;
    }
    .btn-primary:hover { background: var(--teal); }
    .btn-text {
      color: var(--navy);
      font-size: 14px;
      font-weight: 500;
      text-decoration: none;
      letter-spacing: 0.03em;
      border-bottom: 1px solid var(--border);
      padding-bottom: 2px;
      transition: border-color 0.2s, color 0.2s;
    }
    .btn-text:hover { color: var(--teal); border-color: var(--teal); }


    .hero-right {
      position: relative;
      overflow: hidden;
    }
    .hero-right img {
      width: 100%; height: 100%;
      object-fit: cover;
      object-position: center top;
      display: block;
      filter: brightness(0.78);
    }
    .hero-right-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to bottom, transparent 55%, rgba(27,45,74,0.4) 100%);
    }
    .hero-badge {
      position: absolute;
      bottom: 40px; left: 40px;
      background: var(--white);
      padding: 20px 28px;
    }
    .badge-top { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
    .badge-bottom { font-size: 16px; font-weight: 600; color: var(--navy); }
    .badge-line { width: 32px; height: 2px; background: var(--teal); margin-top: 10px; }

    /* ── INTRO STRIP ── */
    .intro-strip {
      background: var(--navy);
      padding: 64px var(--pad);
      display: flex;
      align-items: center;
      gap: 64px;
    }
    .intro-strip h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(26px, 3vw, 36px);
      font-weight: 400;
      color: var(--white);
      line-height: 1.4;
      flex: 1;
      min-width: 260px;
    }
    .intro-div { width: 1px; height: 60px; background: rgba(255,255,255,0.12); flex-shrink: 0; }
    .intro-strip p {
      flex: 1;
      font-size: 16px;
      color: rgba(255,255,255,0.7);
      line-height: 1.85;
      font-weight: 400;
    }

    /* ── SHARED ── */
    .eyebrow {
      font-size: 11px; font-weight: 500;
      letter-spacing: 0.22em; text-transform: uppercase;
      color: var(--teal); margin-bottom: 18px;
      display: flex; align-items: center; gap: 10px;
    }
    h2.sh {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(34px, 4vw, 52px);
      font-weight: 400; line-height: 1.15;
      color: var(--navy); margin-bottom: 16px;
    }
    h2.sh em { font-style: italic; }
    .sp {
      font-size: 16px; color: var(--muted);
      line-height: 1.85; font-weight: 400;
    }

    /* ── VALUES ── */
    .values-section { padding: 100px var(--pad); background: var(--off); }
    .values-header {
      display: flex; align-items: flex-end;
      justify-content: space-between; gap: 60px;
      margin-bottom: 56px;
    }
    .values-header .sp { max-width: 360px; }
    .values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .val-card {
      background: var(--white); padding: 48px 36px;
      border-top: 2px solid var(--border);
      transition: border-color 0.25s;
    }
    .val-card:hover { border-color: var(--teal); }
    .val-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 52px; font-weight: 400;
      color: var(--border); line-height: 1;
      margin-bottom: 24px;
    }
    .val-card h3 { font-size: 18px; font-weight: 600; color: var(--navy); margin-bottom: 12px; }
    .val-card p { font-size: 15px; color: var(--muted); line-height: 1.8; font-weight: 400; }

    /* ── ABOUT ── */
    .about-section { display: grid; grid-template-columns: 1fr 1fr; min-height: 600px; }
    .about-img { position: relative; overflow: hidden; }
    .about-img img { width: 100%; height: 100%; object-fit: cover; display: block; filter: brightness(0.78) grayscale(10%); }
    .about-content {
      background: var(--white); padding: 80px var(--pad);
      display: flex; flex-direction: column; justify-content: center;
    }
    .about-content .sp { margin-bottom: 16px; }
    .ceo-block {
      display: flex; align-items: center; gap: 16px;
      margin-top: 36px; padding-top: 28px;
      border-top: 1px solid var(--border);
    }
    .ceo-img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; object-position: top; }
    .ceo-name { font-size: 15px; font-weight: 600; color: var(--navy); }
    .ceo-title { font-size: 12px; color: var(--muted); margin-top: 3px; }

    /* ── METHODOLOGY ── */
    .method-section { padding: 100px var(--pad); background: var(--navy); }
    .method-header {
      display: flex; justify-content: space-between;
      align-items: flex-end; gap: 60px; margin-bottom: 64px;
    }
    .method-header h2.sh { color: var(--white); }
    .method-header .eyebrow { color: rgba(255,255,255,0.35); }
    .method-header .eyebrow::before { background: rgba(255,255,255,0.2); }
    .method-header .sp { color: rgba(255,255,255,0.62); max-width: 340px; }
    .method-steps { display: grid; grid-template-columns: repeat(5, 1fr); border-top: 1px solid rgba(255,255,255,0.08); }
    .method-step { padding: 40px 28px 40px 0; border-right: 1px solid rgba(255,255,255,0.08); }
    .method-step:last-child { border-right: none; padding-right: 0; }
    .method-step + .method-step { padding-left: 28px; }
    .step-n {
      font-family: 'Cormorant Garamond', serif;
      font-size: 44px; font-weight: 400;
      color: rgba(255,255,255,0.1); line-height: 1; margin-bottom: 20px;
    }
    .method-step h3 {
      font-size: 14px; font-weight: 600;
      color: var(--white); text-transform: uppercase;
      letter-spacing: 0.1em; margin-bottom: 12px;
    }
    .method-step p { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.75; font-weight: 400; }

    /* ── JOB SEEKERS ── */
    .seekers-section { display: grid; grid-template-columns: 1fr 1fr; min-height: 560px; }
    .seekers-content {
      background: var(--off); padding: 80px var(--pad);
      display: flex; flex-direction: column; justify-content: center;
    }
    .seekers-content .sp { margin-bottom: 16px; }
    .seekers-img { position: relative; overflow: hidden; }
    .seekers-img img { width: 100%; height: 100%; object-fit: cover; display: block; filter: brightness(0.78) grayscale(10%); }

    
    /* Branded panel replacing stock photo */
    .seekers-brand-panel {
      background: var(--navy);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }
    .seekers-brand-panel::before {
      content: '';
      position: absolute;
      bottom: -80px; right: -80px;
      width: 340px; height: 340px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(42,173,163,0.18) 0%, transparent 70%);
      pointer-events: none;
    }
    .sbp-inner {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 48px;
      position: relative;
      z-index: 1;
    }
    .sbp-logo {
      width: 160px;
      height: auto;
      display: block;
      margin-bottom: 36px;
      opacity: 0.95;
    }
    .sbp-bar {
      width: 48px;
      height: 2px;
      background: var(--teal);
      border-radius: 2px;
      margin-bottom: 36px;
    }
    .sbp-tagline {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(28px, 3.2vw, 44px);
      font-weight: 400;
      color: var(--white);
      line-height: 1.2;
      letter-spacing: -0.01em;
    }
    .sbp-tagline em { font-style: italic; color: rgba(255,255,255,0.7); }

/* ── CTA ── */
    .cta-section {
      background: var(--teal); padding: 80px var(--pad);
      display: flex; align-items: center;
      justify-content: space-between; gap: 48px;
    }
    .cta-section h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(30px, 3.5vw, 46px);
      font-weight: 400; color: var(--white); line-height: 1.2;
    }
    .cta-section h2 em { font-style: italic; }
    .cta-section p { font-size: 16px; color: rgba(255,255,255,0.7); margin-top: 10px; font-weight: 400; }
    .btn-white {
      background: var(--white); color: var(--navy);
      padding: 15px 36px; font-size: 14px; font-weight: 600;
      letter-spacing: 0.06em; text-transform: uppercase;
      text-decoration: none; white-space: nowrap; flex-shrink: 0;
      transition: opacity 0.2s;
    }
    .btn-white:hover { opacity: 0.9; }

    /* ── TEAM ── */
    .team-section { padding: 100px var(--pad); background: var(--white); }
    .team-header { margin-bottom: 52px; }
    .team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .team-card {
      padding: 40px; border: 1px solid var(--border);
      display: flex; gap: 24px; transition: border-color 0.2s;
    }
    .team-card:hover { border-color: var(--teal); }
    .team-ava { width: 80px; height: 80px; border-radius: 50%; overflow: hidden; flex-shrink: 0; border: 2px solid var(--border); }
    .team-ava img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; }
    .team-name { font-size: 17px; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
    .team-role { font-size: 11px; color: var(--teal); letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500; margin-bottom: 12px; }
    .team-bio { font-size: 15px; color: var(--muted); line-height: 1.75; font-weight: 400; }

    /* ── FOOTER ── */
    footer { background: var(--navy); padding: 72px var(--pad) 32px; }
    .footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 72px; margin-bottom: 52px; }
    .footer-logo img { height: 38px; width: auto; filter: brightness(0) invert(1); margin-bottom: 20px; display: block; }
    .footer-logo-text { display: none; font-size: 15px; font-weight: 700; letter-spacing: 0.14em; color: white; margin-bottom: 20px; }
    .footer-desc { font-size: 14px; color: rgba(255,255,255,0.62); line-height: 1.8; font-weight: 400; }
    .footer-contact { margin-top: 20px; font-size: 13px; color: rgba(255,255,255,0.25); line-height: 1.9; }
    .footer-col h4 { font-size: 10px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.25); margin-bottom: 22px; }
    .footer-col a { display: block; color: rgba(255,255,255,0.45); text-decoration: none; font-size: 14px; margin-bottom: 13px; font-weight: 400; transition: color 0.2s; }
    .footer-col a:hover { color: var(--white); }
    .footer-bottom {
      display: flex; justify-content: space-between; align-items: center;
      padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.07);
    }
    .footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.2); }
    .soc-links { display: flex; gap: 8px; }
    .soc-link {
      width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.1);
      display: flex; align-items: center; justify-content: center;
      color: rgba(255,255,255,0.35); text-decoration: none;
      font-size: 12px; font-weight: 600; transition: all 0.2s;
    }
    .soc-link:hover { border-color: var(--teal); color: var(--teal); }

    /* ── LANG TOGGLE ── */
    .lang-toggle {
      display: flex;
      align-items: center;
      border: 1px solid var(--border);
      border-radius: 4px;
      overflow: hidden;
      flex-shrink: 0;
    }
    .lang-btn {
      padding: 6px 12px;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.06em;
      cursor: pointer;
      border: none;
      background: transparent;
      color: var(--muted);
      transition: background 0.18s, color 0.18s;
    }
    .lang-btn.active {
      background: var(--navy);
      color: var(--white);
    }
    .lang-sep { width: 1px; background: var(--border); align-self: stretch; }

    /* ── SCROLL ANIMATIONS ── */

    /* Default: fade up */
    .reveal {
      opacity: 0;
      transform: translateY(32px);
      transition: opacity 0.75s cubic-bezier(0.22,1,0.36,1), transform 0.75s cubic-bezier(0.22,1,0.36,1);
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    /* Slide in from left */
    .reveal-left {
      opacity: 0;
      transform: translateX(-48px);
      transition: opacity 0.8s cubic-bezier(0.22,1,0.36,1), transform 0.8s cubic-bezier(0.22,1,0.36,1);
    }
    .reveal-left.visible { opacity: 1; transform: translateX(0); }

    /* Slide in from right */
    .reveal-right {
      opacity: 0;
      transform: translateX(48px);
      transition: opacity 0.8s cubic-bezier(0.22,1,0.36,1), transform 0.8s cubic-bezier(0.22,1,0.36,1);
    }
    .reveal-right.visible { opacity: 1; transform: translateX(0); }

    /* Staggered children (values cards, method steps, team cards) */
    .stagger > * {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.6s cubic-bezier(0.22,1,0.36,1), transform 0.6s cubic-bezier(0.22,1,0.36,1);
    }
    .stagger.visible > *:nth-child(1) { opacity:1; transform:translateY(0); transition-delay: 0s; }
    .stagger.visible > *:nth-child(2) { opacity:1; transform:translateY(0); transition-delay: 0.12s; }
    .stagger.visible > *:nth-child(3) { opacity:1; transform:translateY(0); transition-delay: 0.24s; }
    .stagger.visible > *:nth-child(4) { opacity:1; transform:translateY(0); transition-delay: 0.36s; }
    .stagger.visible > *:nth-child(5) { opacity:1; transform:translateY(0); transition-delay: 0.48s; }

    /* Fade only (for strips/banners) */
    .reveal-fade {
      opacity: 0;
      transition: opacity 0.9s ease;
    }
    .reveal-fade.visible { opacity: 1; }

    /* ════════════════════════════════
       MOBILE RESPONSIVE
    ════════════════════════════════ */
    @media (max-width: 1024px) {
      :root { --pad: 40px; }
      .method-steps { grid-template-columns: repeat(3, 1fr); }
      .method-step:nth-child(3) { border-right: none; padding-right: 0; }
      .method-step:nth-child(4), .method-step:nth-child(5) { padding-left: 0; }
      .method-step:nth-child(4) { border-right: 1px solid rgba(255,255,255,0.08); padding-left: 28px; padding-right: 28px; }
      .values-header { flex-direction: column; gap: 20px; align-items: flex-start; }
    }

    @media (max-width: 768px) {
      :root { --pad: 24px; }

      /* Nav */
      nav { height: 64px; }
      .nav-links { display: none; }
      .nav-toggle { display: flex; }

      /* Hero: stack */
      .hero { grid-template-columns: 1fr; min-height: auto; }
      .hero-left { padding: 60px var(--pad) 48px; }
      .hero h1 { font-size: clamp(42px, 11vw, 60px); }
      .hero-sub { font-size: 16px; max-width: 100%; }
      .hero-right { height: 320px; }
      .hero-badge { bottom: 20px; left: 20px; padding: 14px 20px; }

      /* Intro strip */
      .intro-strip { flex-direction: column; gap: 24px; padding: 48px var(--pad); }
      .intro-div { display: none; }
      .intro-strip h2 { min-width: unset; }

      /* Values */
      .values-section { padding: 72px var(--pad); }
      .values-grid { grid-template-columns: 1fr; gap: 16px; }
      .values-header { flex-direction: column; gap: 20px; align-items: flex-start; margin-bottom: 40px; }

      /* About */
      .about-section { grid-template-columns: 1fr; }
      .about-img { height: 300px; }
      .about-content { padding: 60px var(--pad); }

      /* Methodology */
      .method-section { padding: 72px var(--pad); }
      .method-header { flex-direction: column; gap: 20px; align-items: flex-start; margin-bottom: 48px; }
      .method-steps { grid-template-columns: 1fr 1fr; }
      .method-step { padding: 32px 20px 32px 0 !important; border-right: 1px solid rgba(255,255,255,0.08) !important; }
      .method-step:nth-child(even) { padding-left: 20px !important; border-right: none !important; padding-right: 0 !important; }

      /* Seekers */
      .seekers-section { grid-template-columns: 1fr; }
      .seekers-img { height: 280px; order: -1; }
      .seekers-brand-panel { height: 280px; order: -1; }
      .sbp-tagline { font-size: 28px; }
      .seekers-content { padding: 60px var(--pad); }

      /* CTA */
      .cta-section { flex-direction: column; align-items: flex-start; gap: 32px; padding: 60px var(--pad); }

      /* Team */
      .team-section { padding: 72px var(--pad); }
      .team-grid { grid-template-columns: 1fr; }
      .team-card { flex-direction: column; gap: 16px; }

      /* Footer */
      footer { padding: 60px var(--pad) 28px; }
      .footer-top { grid-template-columns: 1fr; gap: 40px; }

    }

    @media (max-width: 480px) {
      .hero h1 { font-size: 40px; }
      .hero-actions { flex-direction: column; align-items: flex-start; gap: 16px; }
      .btn-primary { width: 100%; text-align: center; }
      .method-steps { grid-template-columns: 1fr; }
      .method-step { border-right: none !important; padding-left: 0 !important; border-bottom: 1px solid rgba(255,255,255,0.08); padding-bottom: 28px !important; margin-bottom: 8px; }
      .method-step:last-child { border-bottom: none; }
    }

/* ── HIDE THEME HEADER & FOOTER ON HOME PAGE (replaced by custom HTML) ── */
.elementor-location-header,
.elementor-location-footer {
  display: none !important;
}

/* === ANIMATION OVERRIDE: make all sections visible === */
.reveal,
.reveal-left,
.reveal-right,
.reveal-fade {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}
.stagger > * {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}


/* Hero logo - full brightness */
.hero-logo-img {
  filter: brightness(1.15) !important;
}
.hero-right img:not(.hero-logo-img) {
  filter: brightness(0.78);
}


/* Suppress theme preloader - FYND custom preloader handles it */
.pageload-overlay,
.loader-wrapper,
.site-preloader,
#preloader {
  display: none !important;
  opacity: 0 !important;
  pointer-events: none !important;
}


/* Suppress secondary theme preloader (ta-loader-assets) */
.ta-loader-assets,
#ta-gif,
.wppu-object-logo {
  display: none !important;
  opacity: 0 !important;
  pointer-events: none !important;
}


/* Suppress WPPU floating object / spinning circle plugin */
[class*="wppu"],
[class*="wpppu"] {
  display: none !important;
  animation: none !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
@keyframes wppu-object-spin { from{} to{} }