/* =====================================================
   GOOGLE FONTS
===================================================== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,600;0,700;0,800;1,700&family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@400;600;700;800&display=swap');


/* =====================================================
   CSS VARIABLES
===================================================== */
:root {
  --primary:       #7b4fa6;
  --primary-dark:  #0D1B4C;
  --primary-light: #8a6aa8;
  --accent:        #C8A85D;
  --accent2:       #6B0F1A;
  --gold:          #C8A85D;
  --green:         #67a44e;
  --teal:          #00d4a6;
  --neon:          #BFC3C9;

  --text-dark:   #0D1B4C;
  --text-mid:    #1A2336;
  --text-muted:  #6B7280;
  --text-light:  #9ca3af;

  --bg-light:    #FFF7E6;
  --bg-subtle:   #F7F4ED;
  --white:       #ffffff;

  --shadow-sm:   0 8px 24px rgba(110,74,142,0.08);
  --shadow-md:   0 16px 48px rgba(123,79,166,0.14);
  --shadow-lg:   0 32px 80px rgba(123,79,166,0.22);
  --shadow-glow: 0 0 40px rgba(123,79,166,0.35), 0 0 80px rgba(123,79,166,0.15);
  --shadow-card: 0 12px 40px rgba(15,23,42,0.07);

  --radius-sm:   12px;
  --radius-md:   20px;
  --radius-lg:   30px;
  --radius-xl:   42px;
  --radius-pill: 999px;

  --container: 1320px;

  --grad-primary:   linear-gradient(135deg, #7b4fa6, #1a1f5e);
  --grad-warm:      linear-gradient(135deg, #7b4fa6, #c9a84c);
  --grad-cool:      linear-gradient(135deg, #c9a84c, #7b4fa6);
  --grad-gold:      linear-gradient(135deg, #f7c948, #ff9a3c);
  --grad-dark:      linear-gradient(135deg, #1a1f5e, #2d1f5e);
  --grad-mesh:      radial-gradient(ellipse at 20% 50%, rgba(123,79,166,0.15) 0%, transparent 50%),
                    radial-gradient(ellipse at 80% 20%, rgba(77,166,255,0.15) 0%, transparent 50%),
                    radial-gradient(ellipse at 50% 80%, rgba(0,212,166,0.10) 0%, transparent 50%);

  /* Easing curves */
  --ease-spring:  cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth:  cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce:  cubic-bezier(0.68, -0.55, 0.265, 1.55);
}


/* =====================================================
   RESET
===================================================== */
*, *::before, *::after {
  margin: 0; padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--white);
  color: var(--text-dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a         { text-decoration: none; }
img       { max-width: 100%; display: block; }
ul        { list-style: none; }

::selection { background: var(--primary); color: var(--white); }

/* Premium Scrollbar */
::-webkit-scrollbar          { width: 8px; }
::-webkit-scrollbar-track    { background: #f0f0ff; }
::-webkit-scrollbar-thumb    {
  background: var(--grad-primary);
  border-radius: 50px;
  border: 2px solid #f0f0ff;
}
::-webkit-scrollbar-thumb:hover { opacity: 0.85; }

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}


/* =====================================================
   GLOBAL ANIMATIONS
===================================================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes slideRight {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.85); }
  to   { opacity: 1; transform: scale(1); }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-16px); }
}

@keyframes floatSlow {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33%       { transform: translateY(-12px) rotate(1.5deg); }
  66%       { transform: translateY(-6px) rotate(-1deg); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50%       { transform: scale(1.08); opacity: 1; }
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes shimmer {
  from { background-position: -200% center; }
  to   { background-position: 200% center; }
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50%       { background-position: 100% 50%; }
}

@keyframes borderGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(111,79,255,0); }
  50%       { box-shadow: 0 0 0 4px rgba(111,79,255,0.2); }
}

@keyframes ripple {
  from { transform: scale(0); opacity: 0.6; }
  to   { transform: scale(4); opacity: 0; }
}

@keyframes textGradient {
  0%   { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

@keyframes particleRise {
  0%   { transform: translateY(100vh) scale(0); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 0.6; }
  100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}

@keyframes morphBlob {
  0%   { border-radius: 60% 40% 30% 70%/60% 30% 70% 40%; }
  50%  { border-radius: 30% 60% 70% 40%/50% 60% 30% 60%; }
  100% { border-radius: 60% 40% 30% 70%/60% 30% 70% 40%; }
}

@keyframes typewriter {
  from { width: 0; }
  to   { width: 100%; }
}

@keyframes blink {
  50% { border-color: transparent; }
}

@keyframes countUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes lineGrow {
  from { width: 0; }
  to   { width: 100%; }
}


/* =====================================================
   MAGNETIC BUTTON EFFECT
   — JS companion: add data-magnetic to any button
===================================================== */
[data-magnetic] {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s var(--ease-spring);
}

[data-magnetic]::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255,255,255,0.18), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}

[data-magnetic]:hover::after { opacity: 1; }


/* =====================================================
   BUTTONS — Premium Redesign
===================================================== */
.btn,
.btn-primary,
.btn-outline,
.nav-btn,
.premium-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.35s var(--ease-spring);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.3px;
}

/* Filled gradient button — ultra premium */
.btn-primary,
.nav-btn {
  padding: 16px 36px;
  background: var(--grad-primary);
  background-size: 200% 200%;
  color: var(--white);
  box-shadow: 0 12px 32px rgba(123,79,166,0.35), 0 4px 12px rgba(111,79,255,0.2);
  border: 1px solid rgba(255,255,255,0.15);
  animation: gradientShift 4s ease infinite;
  white-space: nowrap;   /* ADD: "Book a Session" ek line mein rahega */
}

.btn-primary::before,
.nav-btn::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px; right: -1px; bottom: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,0.25), rgba(255,255,255,0) 50%, rgba(255,255,255,0.05));
  pointer-events: none;
}

/* Shine sweep */
.btn-primary::after,
.nav-btn::after {
  content: '';
  position: absolute;
  top: 0; left: -130%;
  width: 80%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.45), transparent);
  transform: skewX(-20deg);
  transition: none;
}

.btn-primary:hover,
.nav-btn:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 20px 50px rgba(123,79,166,0.50), 0 8px 20px rgba(111,79,255,0.3);
}

.btn-primary:hover::after,
.nav-btn:hover::after {
  animation: btnShine 0.85s ease forwards;
}

.btn-primary:active,
.nav-btn:active {
  transform: translateY(-1px) scale(0.98);
}

@keyframes btnShine {
  from { left: -130%; }
  to   { left: 160%; }
}

/* Outline ghost button */
.btn-outline {
  padding: 15px 32px;
  border: 1.5px solid rgba(111,79,255,0.3);
  color: var(--primary);
  background: transparent;
  backdrop-filter: blur(8px);
}

.btn-outline::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-primary);
  opacity: 0;
  transition: opacity 0.35s;
  border-radius: inherit;
}

.btn-outline:hover {
  border-color: transparent;
  color: var(--white);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.btn-outline:hover::before { opacity: 1; }
.btn-outline > * { position: relative; z-index: 1; }

/* White solid CTA */
.primary-btn {
  padding: 18px 38px;
  background: var(--white);
  color: var(--primary);
  box-shadow: 0 16px 40px rgba(0,0,0,0.14), 0 4px 16px rgba(0,0,0,0.08);
  border-radius: var(--radius-pill);
  font-weight: 800;
  transition: all 0.4s var(--ease-spring);
  position: relative;
  overflow: hidden;
}

.primary-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(123,79,166,0.06), rgba(77,166,255,0.06));
  opacity: 0;
  transition: opacity 0.35s;
}

.primary-btn:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 24px 60px rgba(0,0,0,0.2), 0 8px 24px rgba(123,79,166,0.12);
}
.primary-btn:hover::before { opacity: 1; }

/* Translucent secondary CTA */
.secondary-btn {
  padding: 18px 38px;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-pill);
  font-weight: 700;
  transition: all 0.4s var(--ease-spring);
}

.secondary-btn:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.15);
}

/* PB blue button */
.pb-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #1a9eff, #0060cc);
  color: var(--white);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 16px 44px;
  border-radius: 50px;
  box-shadow: 0 10px 36px rgba(26,158,255,0.40), 0 4px 16px rgba(26,158,255,0.2);
  transition: all 0.3s var(--ease-spring);
  position: relative;
  overflow: hidden;
}

.pb-btn::after {
  content: '';
  position: absolute;
  top: 0; left: -130%;
  width: 80%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.4), transparent);
  transform: skewX(-20deg);
}

.pb-btn:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 18px 48px rgba(26,158,255,0.55), 0 8px 24px rgba(26,158,255,0.3);
  color: var(--white);
}

.pb-btn:hover::after { animation: btnShine 0.85s ease forwards; }

/* Services page secondary */
.btn-secondary {
  padding: 16px 36px;
  border: 1.5px solid #00ffc3;
  color: #00ffc3;
  border-radius: 50px;
  font-weight: 700;
  transition: all 0.35s var(--ease-spring);
  background: rgba(0,255,195,0.05);
  backdrop-filter: blur(8px);
}
.btn-secondary:hover {
  background: rgba(0,255,195,0.12);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,255,195,0.2);
}


/* =====================================================
   HEADER & NAVBAR — Frosted Glass Premium
===================================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: rgba(255,255,255,0.80);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(123,79,166,0.08);
  box-shadow: 0 4px 24px rgba(123,79,166,0.06);
  transition: background 0.4s, box-shadow 0.4s;
}

.header.scrolled {
  background: rgba(255,255,255,0.92);
  box-shadow: 0 8px 40px rgba(123,79,166,0.10);
}

/* ===== NAVBAR + LOGO PART START =====
   Yahan se neeche navbar height, logo text (size/font/color),
   aur nav-menu/right-side buttons ki alignment control hoti hai.
*/

.navbar {
  height: 88px;          /* EDIT: navbar ki height yahan se badlo */
  display: flex;
  align-items: center;
  justify-content: space-between;   /* EDIT: teeno blocks (logo / menu / buttons) ke beech ka gap auto-distribute karta hai isse mat hatao */
}

/* Logo — sirf text, koi icon/image nahi */
.logo {
  display: flex;
  align-items: baseline;
  gap: 8px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  position: relative;
  left: calc(-1 * (100vw - 100%) / 2 + 10px); /* agar text you matter consulting services aage lana hai ya piche lana hai to - ya + px kar sakte hai */ 
  /* left: calc(-1 * (100vw - 100%) / 2 - 10px); */
}
.logo h3,
.logo span {
  font-family: 'Outfit', sans-serif;   /* EDIT: font yahan se badlo (Google Fonts mein naya font add karna ho to index.html ke <head> mein link tag add karo) */
  font-size: 18px;         /* EDIT: text ka size — dono same rakhe hain, yahi number dono jagah badal dena */
  font-weight: 300;        /* EDIT: thoda bold chahiye to 400/500/600 kar do */
  letter-spacing: 2.5px;   /* EDIT: letters ke beech ka gap (Thrive Global jaisa spaced look) */
  text-transform: uppercase;
  margin: 0;
  animation: logoColorCycle 8s ease-in-out infinite;  /* EDIT: "8s" badlo speed control karne ke liye */
}

.logo span {
  animation-delay: 0.4s;   /* EDIT: dono text ka color switch saath chahiye to isko 0 kar do */
}

/* Color-cycle animation — yahan se colors aur unka order badlo */
@keyframes logoColorCycle {
  0%   { color: #0D1B4C; }   /* Navy */
  20%  { color: #C8A85D; }   /* Gold */
  40%  { color: #6B0F1A; }   /* Burgundy */
  60%  { color: #6E4A8E; }   /* Royal Purple */
  80%  { color: #1A2336; }   /* Slate */
  100% { color: #0D1B4C; }   /* wapas Navy (loop complete) */
  /* EDIT: naya color add karna ho to ek nayi line "%   { color: #hex; }" add karo
     aur upar wali % values ko evenly adjust kar do (jaise 5 colors hain to 0/20/40/60/80/100) */
}

/* ===== NAVBAR + LOGO PART END ===== */

/* Nav Menu */
.nav-menu {
  display: flex;
  gap: 24px;
  list-style: none;
}

.nav-menu a {
  position: relative;
  font-size: 18px; /* navbar button ki height badana or gatana */
  font-weight: 600;
  color: var(--text-mid);
  transition: color 0.3s;
  padding-bottom: 4px;
  white-space: nowrap;   /* ADD: isse "Board of Advisors" 3 lines mein todna band hoga */
}

.nav-menu a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  border-radius: 10px;
  background: var(--grad-primary);
  transition: width 0.35s var(--ease-spring);
}

.nav-menu a:hover,
.nav-menu a.active            { color: var(--primary); }
.nav-menu a:hover::after,
.nav-menu a.active::after     { width: 100%; }

/* Nav Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
  left: calc((100vw - 100%) / 4);
}

.nav-phone {
  padding: 12px 22px;
  border-radius: var(--radius-pill);
  background: rgba(123,79,166,0.06);
  color: var(--text-mid);
  font-weight: 600;
  transition: all 0.3s;
  border: 1px solid rgba(123,79,166,0.08);
  white-space: nowrap;   /* ADD: phone number ek line mein rahega */
}
.nav-phone:hover {
  background: rgba(111,79,255,0.1);
  color: var(--primary);
  border-color: rgba(111,79,255,0.2);
  transform: translateY(-2px);
}

/* Dropdown */
.dropdown { position: relative; }

.dropdown-toggle {
  display: flex; align-items: center; gap: 6px; cursor: pointer;
}

.dropdown-toggle i {
  font-size: 10px;
  transition: transform 0.4s var(--ease-spring);
}
.dropdown:hover .dropdown-toggle i { transform: rotate(180deg); }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  width: 380px;
  background: rgba(15, 12, 40, 0.96);
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px);
  border-radius: 16px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.35), 0 0 0 1px rgba(111,79,255,0.2);
  display: none;
  padding: 10px 0;
  z-index: 99999;
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s var(--ease-spring);
}

.dropdown:hover .dropdown-menu {
  display: block;
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  animation: dropdownReveal 0.35s var(--ease-spring) forwards;
}

@keyframes dropdownReveal {
  from { opacity: 0; transform: translateX(-50%) translateY(-10px) scale(0.96); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0) scale(1); }
}

.dropdown-menu li { list-style: none; }

.dropdown-menu a {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 18px;
  color: rgba(255,255,255,0.65);
  font-size: 13.5px; font-weight: 500;
  transition: all 0.25s;
  text-decoration: none;
}

.dropdown-menu a i {
  width: 30px; height: 30px;
  border-radius: 9px;
  background: rgba(123,79,166,0.18);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  color: #a78bfa;
  flex-shrink: 0;
  transition: all 0.25s;
}

.dropdown-menu a:hover { background: rgba(123,79,166,0.12); color: var(--white); padding-left: 24px; }
.dropdown-menu a:hover i { background: rgba(123,79,166,0.35); color: var(--teal); }

@media (max-width: 1200px) { .nav-phone { display: none; } }


/* =====================================================
   HERO — Cinematic Dark with Particle System
===================================================== */
.hero {
    position: relative;
    overflow: hidden;

    background: linear-gradient(
        -45deg,
        #071D46,
        #0D2C6C,
        #7B4FA6,
        #C8A35F
    );

    background-size: 400% 400%;

    animation: gradientMove 15s ease infinite;
}

@keyframes gradientMove {
    0%{
        background-position:0% 50%;
    }
    50%{
        background-position:100% 50%;
    }
    100%{
        background-position:0% 50%;
    }
}

/* Collage background */
.hero-collage {
  position: absolute; inset: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  z-index: 1;
}

.hero-collage img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.28) saturate(0.7) blur(1px);
}

/* Multi-layer overlay */
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(6,12,30,0.45) 0%, rgba(12,24,60,0.38) 50%, rgba(6,12,30,0.42) 100%);
  z-index: 2;
}

/* Noise texture overlay for depth */
.hero::before{
    content:'';
    position:absolute;
    inset:0;

    background:
    radial-gradient(
      circle at center,
      rgba(123,79,166,0.25),
      transparent 60%
    );

    pointer-events:none;
}

/* Animated gradient rays */
.hero::after {
  content: '';
  position: absolute; inset: 0; z-index: 3;
  background:
    radial-gradient(ellipse 60% 50% at 30% 50%, rgba(123,79,166,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 75% 30%, rgba(77,166,255,0.12) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 60% 80%, rgba(0,212,166,0.08) 0%, transparent 50%);
  animation: meshShift 14s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes meshShift {
  0%   { opacity: 0.7; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.06); }
}

/* Particle canvas layer */
.hero-particles {
  position: absolute; inset: 0; z-index: 4;
  pointer-events: none;
  overflow: hidden;
}

.hero-particle {
  position: absolute;
  width: 3px; height: 3px;
  border-radius: 50%;
  background: rgba(167,139,250,0.5);
  animation: particleRise linear infinite;
}

.hero-particle:nth-child(odd)  { background: rgba(77,166,255,0.4); width: 2px; height: 2px; }
.hero-particle:nth-child(3n)   { background: rgba(0,212,166,0.35); width: 4px; height: 4px; }

/* Grid lines */
.hero-grid {
  position: absolute; inset: 0; z-index: 4;
  background-image:
    linear-gradient(rgba(111,79,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(111,79,255,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  animation: gridDrift 40s linear infinite;
  pointer-events: none;
}

@keyframes gridDrift {
  from { transform: translateY(0) translateX(0); }
  to   { transform: translateY(-80px) translateX(-80px); }
}

/* Hero content grid */
.hero-container,
.hero .container {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Decorative shapes */
.hero-shape-green {
  position: absolute;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: rgba(103,164,78,0.20);
  left: 60px; bottom: 100px; z-index: 5;
  filter: blur(60px);
  animation: morphBlob 12s ease-in-out infinite;
}

.hero-shape-purple {
  position: absolute;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(123,79,166,0.18);
  right: 60px; top: 100px; z-index: 5;
  filter: blur(50px);
  animation: morphBlob 10s ease-in-out infinite reverse;
}

/* Floating dots */
.hero-dot {
  position: absolute;
  border-radius: 50%; z-index: 6;
  animation: float 8s ease-in-out infinite;
}
.hero-dot.dot-1 { width: 12px; height: 12px; top: 90px; left: 50px; background: rgba(167,139,250,0.5); }
.hero-dot.dot-2 { width: 18px; height: 18px; right: 30px; bottom: 160px; background: rgba(77,166,255,0.4); animation-delay: -3s; }
.hero-dot.dot-3 { width: 8px; height: 8px; top: 200px; right: 110px; background: rgba(0,212,166,0.5); animation-delay: -6s; }

/* Services bar */
.hero-services-bar {
  position: absolute; bottom: 0; left: 0; width: 100%;
  display: flex; justify-content: space-evenly; align-items: center; flex-wrap: wrap;
  padding: 20px 30px;
  background: rgba(6,12,30,0.65);
  backdrop-filter: blur(16px) saturate(120%);
  border-top: 1px solid rgba(123,79,166,0.15);
  z-index: 20;
}

.hero-services-bar span {
  color: rgba(255,255,255,0.85);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  transition: color 0.3s;
}
.hero-services-bar span:hover { color: var(--neon); }


/* =====================================================
   HERO LEFT CONTENT
===================================================== */

/* Subtitle pill */
.hero-subtitle {
  display: table;
  margin: 0 auto 28px auto;
  padding: 11px 30px;
  border: 1px solid rgba(0,255,195,0.45);
  border-radius: 50px;
  color: #00ffc3;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  background: rgba(0,255,195,0.08);
  box-shadow: 0 0 24px rgba(0,255,195,0.2), inset 0 1px 0 rgba(0,255,195,0.15);
  animation: fadeUp 0.8s ease both;
  position: relative;
  overflow: hidden;
}

.hero-subtitle::before {
  content: '';
  position: absolute; top: 0; left: -130%; width: 80%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(0,255,195,0.25), transparent);
  transform: skewX(-20deg);
  animation: btnShine 3s ease infinite 2s;
}

/* Main title */
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 88px;
  line-height: 0.92;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -1px;
  animation: fadeUp 1s ease 0.2s both;
  text-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

.hero-title span {
  display: block;
  background: linear-gradient(90deg, #ffffff 0%, #c8b5ff 40%, #7b6cf6 70%, #c9a84c 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
  animation: shimmer 4s linear infinite;
}

/* Animated title underline */
.hero-divider {
  width: 64px; height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #8aa36d, var(--teal));
  margin-bottom: 28px;
  animation: fadeUp 1s ease 0.4s both;
  position: relative;
  overflow: hidden;
}

.hero-divider::after {
  content: '';
  position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
  animation: btnShine 2.5s ease infinite 1s;
}

/* Description */
.hero-description {
  max-width: 680px;
  margin: 22px 0 42px;
  font-size: 18px;
  line-height: 1.95;
  color: rgba(255,255,255,0.8);
  animation: fadeUp 1s ease 0.6s both;
}

/* Buttons row */
.hero-buttons a {
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 700;
  transition: all 0.3s ease;
}

.hero-buttons .hero-btn {
  background: #C8A85D; /* Gold */
  color: #0D1B4C;
}

.hero-buttons .hero-btn-outline {
  border: 2px solid #C8A85D;
  color: #C8A85D;
}

.hero-buttons a:hover {
  background: #6E4A8E;
  color: #F7F4ED;
  border-color: #6E4A8E;
}

/* Feature items */
.hero-features {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  animation: fadeUp 1s ease 1s both;
}

.feature-item {
  display: flex;
  gap: 14px;
  max-width: 200px;
  transition: all 0.4s var(--ease-spring);
  padding: 14px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  cursor: default;
}

.feature-item:hover {
  transform: translateY(-8px);
  background: rgba(123,79,166,0.12);
  border-color: rgba(123,79,166,0.25);
  box-shadow: 0 20px 40px rgba(123,79,166,0.15);
}

.feature-icon {
  width: 46px; height: 46px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 20px; flex-shrink: 0;
  transition: transform 0.4s var(--ease-spring);
}
.feature-item:hover .feature-icon { transform: scale(1.15) rotate(-5deg); }

.feature-item:nth-child(1) .feature-icon { background: rgba(247,201,72,0.18); }
.feature-item:nth-child(2) .feature-icon { background: rgba(103,164,78,0.18); }
.feature-item:nth-child(3) .feature-icon { background: rgba(255,107,157,0.18); }

.feature-text h4 { font-size: 18px; font-weight: 700; color: var(--white); margin-bottom: 5px; }
.feature-text p  { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.6); }


/* =====================================================
   HERO RIGHT — Floating Image
===================================================== */
.hero-image-wrapper {
  position: relative; z-index: 6;
  display: flex;
  justify-content: center; align-items: center;
  animation: floatSlow 8s ease-in-out infinite;
}

/* Outer glow ring */
.hero-image-wrapper::before {
  content: '';
  position: absolute;
  inset: -30px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(123,79,166,0.18), transparent 70%);
  animation: pulse 4s ease-in-out infinite;
  pointer-events: none;
}

.hero-image {
  width: 440px; height: 440px;
  object-fit: cover;
  border-radius: 50%;
  border: 8px solid rgba(255,255,255,0.18);
  box-shadow:
    0 0 0 20px rgba(255,255,255,0.06),
    0 0 0 40px rgba(123,79,166,0.06),
    0 30px 80px rgba(0,0,0,0.45),
    0 0 80px rgba(123,79,166,0.25);
  transition: transform 0.6s var(--ease-spring);
  animation: imagePulse 5s ease-in-out infinite;
}

.hero-image-wrapper:hover .hero-image {
  transform: scale(1.04);
  box-shadow:
    0 0 0 24px rgba(255,255,255,0.08),
    0 0 0 48px rgba(123,79,166,0.08),
    0 40px 100px rgba(0,0,0,0.5),
    0 0 100px rgba(123,79,166,0.35);
}

@keyframes imagePulse {
  0%, 100% {
    box-shadow:
      0 0 0 16px rgba(255,255,255,0.08),
      0 0 0 32px rgba(123,79,166,0.06),
      0 30px 80px rgba(0,0,0,0.4),
      0 0 60px rgba(111,79,255,0.2);
  }
  50% {
    box-shadow:
      0 0 0 22px rgba(255,255,255,0.10),
      0 0 0 44px rgba(123,79,166,0.10),
      0 30px 80px rgba(0,0,0,0.4),
      0 0 90px rgba(123,79,166,0.30);
  }
}


/* Experience badge */
.experience-card {
  position: absolute; right: 10px; bottom: 40px; z-index: 20;
  width: 172px; height: 172px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #0f1f48, #070e22 80%);
  border: 3px solid var(--gold);
  display: flex; flex-direction: column;
  justify-content: center; align-items: center; text-align: center;
  box-shadow:
    0 0 0 8px rgba(247,201,72,0.10),
    0 0 30px rgba(247,201,72,0.50),
    0 0 60px rgba(247,201,72,0.20);
  animation: float 7s ease-in-out infinite;
  transition: transform 0.5s var(--ease-spring);
}
.experience-card:hover {
  transform: scale(1.08) rotate(-3deg);
  box-shadow:
    0 0 0 12px rgba(247,201,72,0.14),
    0 0 50px rgba(247,201,72,0.65),
    0 0 90px rgba(247,201,72,0.28);
}

.experience-icon { color: var(--white); font-size: 18px; margin-bottom: 4px; }

.experience-card h3 {
  font-size: 52px;
  color: var(--gold);
  line-height: 1; margin: 0;
  font-weight: 800;
  text-shadow: 0 0 20px rgba(247,201,72,0.5);
}

.experience-card p {
  color: var(--white);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 8px;
  font-weight: 700;
  opacity: 0.9;
}

.experience-card img {
  width: 100%; height: 100%;
  object-fit: cover; border-radius: 50%;
}


/* Quote card */
.quote-card {
  position: absolute; top: 20px; right: -24px; z-index: 25;
  width: 290px;
  background: rgba(255,255,255,0.97);
  border-radius: 28px;
  padding: 32px 30px 26px;
  box-shadow: 0 24px 64px rgba(83,56,158,0.14), 0 8px 24px rgba(83,56,158,0.07);
  border: 1px solid rgba(111,79,255,0.1);
  backdrop-filter: blur(20px);
  animation: floatSlow 9s ease-in-out infinite;
  transition: all 0.45s var(--ease-spring);
}

.quote-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 40px 90px rgba(83,56,158,0.22), 0 16px 40px rgba(83,56,158,0.10);
}

.quote-icon {
  font-size: 3.8rem;
  line-height: 1; font-weight: 900;
  color: #6c4dff; margin-bottom: 16px;
  display: block;
}

.quote-card p {
  margin: 0 0 20px;
  font-size: 1.1rem; line-height: 1.85;
  font-weight: 500; color: #5d6280;
}

.quote-card h5 {
  margin: 0; font-size: 1rem;
  font-weight: 800; color: #6c4dff;
}


/* Hero responsive */
@media (max-width: 1200px) {
  .hero-title { font-size: 62px; }
  .quote-card, .experience-card { display: none; }
}
@media (max-width: 992px) {
  .hero-container { grid-template-columns: 1fr; text-align: center; }
  .hero-title { font-size: 54px; }
  .hero-image { width: 420px; height: 420px; }
  .hero-buttons, .hero-features { justify-content: center; }
  .hero-divider { margin: 0 auto 28px; }
  .hero-description { margin-left: auto; margin-right: auto; }
}
@media (max-width: 576px) {
  .navbar { height: 76px; }
  .hero   { padding: 60px 0; }
  .hero-title { font-size: 40px; }
  .hero-image { width: 280px; height: 280px; }
  .feature-item { max-width: 100%; }
}


/* =====================================================
   TRUSTED / BADGES SECTION — Premium Pill Grid
===================================================== */
.trusted {
  position: relative;
  padding: 72px 0;
  background: linear-gradient(135deg, #fafbff 0%, #f3f4ff 100%);
  overflow: hidden;
}

.trusted::before {
  content: '';
  position: absolute;
  top: -80px; left: 50%; transform: translateX(-50%);
  width: 800px; height: 400px;
  background: radial-gradient(circle, rgba(123,79,166,0.10), transparent 65%);
  filter: blur(60px); pointer-events: none;
}

.trusted::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.4), transparent);
  transform: translateX(-100%);
  animation: trustedShimmer 10s linear infinite;
  pointer-events: none;
}

@keyframes trustedShimmer {
  from { transform: translateX(-100%); }
  to   { transform: translateX(100%); }
}

.trusted .container {
  position: relative; z-index: 2;
  display: flex; flex-direction: column;
  align-items: center; gap: 28px;
}

.trusted-label {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 26px;
  border-radius: var(--radius-pill);
  background: rgba(123,79,166,0.08);
  color: #7b61ff;
  font-size: 12px; font-weight: 800; letter-spacing: 2.5px; text-transform: uppercase;
  border: 1px solid rgba(123,79,166,0.14);
  animation: fadeUp 0.8s ease both;
}

.trusted-logos {
  display: flex; flex-wrap: wrap;
  justify-content: center; gap: 14px;
}

.trusted-item {
  position: relative;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.95);
  border: 1px solid rgba(123,79,166,0.10);
  color: var(--text-dark);
  font-size: 14px; font-weight: 700;
  box-shadow: 0 8px 24px rgba(123,79,166,0.07), 0 2px 8px rgba(0,0,0,0.03);
  overflow: hidden;
  cursor: default;
  transition: all 0.45s var(--ease-spring);
}

.trusted-item::before {
  content: '✓';
  width: 22px; height: 22px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(16,185,129,0.12);
  color: #10b981;
  font-size: 11px; font-weight: 900; flex-shrink: 0;
}

.trusted-item::after {
  content: '';
  position: absolute; top: 0; left: -130%; width: 70%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.85), transparent);
  transform: skewX(-20deg);
}

.trusted-item:hover {
  transform: translateY(-10px) scale(1.05);
  background: var(--grad-primary);
  color: var(--white);
  box-shadow: 0 20px 50px rgba(123,79,166,0.30), 0 0 0 1px rgba(111,79,255,0.1);
  border-color: transparent;
}

.trusted-item:hover::before { background: rgba(255,255,255,0.2); color: var(--white); }
.trusted-item:hover::after  { animation: trustedItemShine 0.9s ease; }

@keyframes trustedItemShine {
  from { left: -130%; } to { left: 160%; }
}

.trusted-item:nth-child(odd)  { animation: float 7s ease-in-out infinite; }
.trusted-item:nth-child(even) { animation: float 7s ease-in-out infinite reverse; }

@media (max-width: 768px) { .trusted { padding: 50px 0; } .trusted-item { padding: 12px 20px; font-size: 13px; } }
@media (max-width: 480px) { .trusted-logos { flex-direction: column; width: 100%; align-items: center; } .trusted-item { width: 100%; max-width: 300px; justify-content: center; } }


/* =====================================================
   SECTION HEADINGS
===================================================== */
.section-heading {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 80px auto;
  padding-top: 60px;
}

.section-heading h2 {
  font-size: 3.8rem; font-weight: 900;
  color: #0a1128; text-transform: uppercase;
  line-height: 1.1; max-width: 900px;
  margin: 0 auto 20px auto;
  letter-spacing: -0.5px;
}

.section-heading h2 span { color: #2176ff; }

.section-heading p {
  font-size: 1.1rem; color: var(--text-muted);
  max-width: 680px; margin: 0 auto;
}

.heading-badge {
  display: inline-block;
  padding: 8px 24px;
  background: rgba(33,118,255,0.08);
  color: #2176ff;
  border: 1px solid rgba(33,118,255,0.18);
  border-radius: 50px;
  font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 22px;
}

.section-tag {
  display: inline-block;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  background: rgba(123,79,166,0.08);
  color: var(--primary);
  font-size: 11px; font-weight: 800; letter-spacing: 2.5px;
  margin-bottom: 18px;
  border: 1px solid rgba(123,79,166,0.12);
}

.section-title {
  font-size: 52px;
  line-height: 1.08; font-weight: 800;
  color: var(--text-dark); margin-bottom: 18px;
  letter-spacing: -0.5px;
}

.section-title span {
  display: block;
  background: var(--grad-primary);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 4s linear infinite;
}

.section-description {
  font-size: 17px; line-height: 1.85; color: var(--text-muted);
}


/* =====================================================
   SCROLL STORY
===================================================== */
.scroll-story {
  position: relative;
  min-height: 700vh;

  background: linear-gradient(
    135deg,
    #0D1B4C 0%,
    #1A2336 100%
  );
}

.scroll-story-inner {
  position: sticky; top: 0;
  height: 90vh;
  max-width: 1400px; margin: 0 auto;
  padding: 0 40px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: start;
}

.scroll-story-reverse .story-right { order: 1; }
.scroll-story-reverse .story-left  { order: 2; }
.marshall-story .story-left  { order: 2; }
.marshall-story .story-right { order: 1; }

.story-left {
  display: flex; justify-content: center;
  align-items: flex-start; padding-top: 180px;
}

.story-img-wrap {
  position: relative;
  width: 520px; height: 520px;
}

.story-ring {
  position: absolute; border-radius: 50%;
  border:2px solid rgba(200,168,93,.20);
  animation: pulse 5s ease-in-out infinite;
}
.story-ring.r1 { inset: 0; }
.story-ring.r2 { inset: 35px; animation-delay: -2.5s; }

.story-img {
  position: absolute; inset: 60px;
  width: calc(100% - 120px);
  height: calc(100% - 120px);
  object-fit: cover; object-position: center top;
  border-radius: 50%;
  background: var(--white);
  box-shadow:
    0 0 0 10px rgba(255,255,255,0.9),
    0 0 50px rgba(200,168,93,.25)
    0 0 100px rgba(123,79,166,0.10);
  transition: all 0.7s var(--ease-spring);
}

.story-img:hover {
  transform: scale(1.03);
  box-shadow:
    0 0 0 12px rgba(255,255,255,0.95),
    0 0 70px rgba(123,79,166,0.30),
    0 0 130px rgba(123,79,166,0.15);
}

.story-badge {
  position: absolute;
  width: 70px; height: 70px;
  border-radius: 50%;
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.10);
  z-index: 5; transition: all 0.6s var(--ease-spring);
}

.story-badge:hover { transform: scale(1.2) rotate(-10deg); box-shadow: 0 20px 50px rgba(111,79,255,0.2); }
.badge-top { top: 20px;   left: 80px; }
.badge-mid { top: 110px;  right: 20px; }
.badge-bot { bottom: 90px; left: 20px; }

.story-right {
  position: relative;
  max-width: 650px; height: 100vh;
  display: flex; align-items: center;
}

.story-step {
  width: 100%; min-height: 100vh;
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: center;
  opacity: 0; transform: translateY(40px);
  transition: all 0.7s var(--ease-spring);
  pointer-events: none; padding-top: 120px;
}

.story-step.active {
  opacity: 1; transform: translateY(0);
  pointer-events: auto;
}

.story-tag {
  display: inline-block; padding: 10px 22px;
 background: rgba(200,168,93,.12);  
  color:#C8A85D; border-radius: 50px;
  font-size: 11px; font-weight: 800; letter-spacing: 2.5px; margin-bottom: 22px;
  border: 1px solid rgba(123,79,166,0.12);
}

.story-title {
  font-size: 3.4rem; line-height: 1.1;
  font-weight: 800; color: #F7F4ED; margin-bottom: 18px;
  letter-spacing: -0.5px;
}

.story-title span{
  background: linear-gradient(
    90deg,
    #C8A85D,
    #E0BD6D
  );

  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.story-divider {
  width: 70px; height: 4px; border-radius: 4px;
    background: linear-gradient(
      90deg,
      #C8A85D,
      #E0BD6D
  );
  margin-bottom: 28px; position: relative; overflow: hidden;
}

.story-divider::after {
  content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.7), transparent);
  animation: btnShine 2.5s ease infinite 1s;
}

.scroll-story::before{
  content:'';
  position:absolute;
  inset:0;

  background-image:
  radial-gradient(
    rgba(200,168,93,.18) 1px,
    transparent 1px
  );

  background-size:28px 28px;

  opacity:.35;
  pointer-events:none;
}

.story-text { font-size: 1.06rem; line-height: 1.9; color:#BFC3C9; margin-bottom: 1px; }

.story-highlight { display: flex; gap: 16px; flex-wrap: wrap; }

.sh-item {
  background:#1A2336;
  padding: 18px 22px; border-radius: 18px;
  min-width: 130px; text-align: center;
  box-shadow: 0 15px 40px rgba(0,0,0,.25);    
  border:1px solid rgba(200,168,93,.18);
  transition: all 0.4s var(--ease-spring);
  cursor: default;
}

.sh-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(123,79,166,0.12);
  border-color: rgba(123,79,166,0.18);
}

.sh-item strong { display: block; font-size: 1.65rem; color:#C8A85D; margin-bottom: 5px; }
.sh-item span   { color:#BFC3C9; font-size: 0.88rem; font-weight: 600; }

.section-heading h2{
    color:#F7F4ED;
    font-size:4.5rem;
    font-weight:800;
    line-height:1.1;
}

.section-heading h2 span{
    background:linear-gradient(
        90deg,
        #C8A85D,
        #E0BD6D
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.section-heading p{
    color:#BFC3C9;
}

.heading-badge{
    background:rgba(200,168,93,.12);
    color:#C8A85D;
    border:1px solid rgba(200,168,93,.25);
}

@media (max-width: 992px) {
  .scroll-story { min-height: auto; padding: 100px 0; }
  .scroll-story-inner { position: relative; height: auto; grid-template-columns: 1fr; gap: 60px; }
  .story-img-wrap { width: 340px; height: 340px; }
  .story-step { position: relative; opacity: 1; transform: none; margin-bottom: 60px; padding-top: 0; min-height: auto; }
  .story-title { font-size: 2.4rem; }
}


/* =====================================================
   SERVICES SECTION — Glass Cards
===================================================== */
.services-section {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8faff 100%);
  overflow: hidden;
}

/* Mesh background */
.services-section::before {
  content: '';
  position: absolute; width: 700px; height: 700px;
  top: -250px; left: -250px; border-radius: 50%;
  background: rgba(123,79,166,0.06); filter: blur(90px);
}
.services-section::after {
  content: '';
  position: absolute; width: 600px; height: 600px;
  right: -200px; bottom: -200px; border-radius: 50%;
  background: rgba(77,166,255,0.06); filter: blur(90px);
}

.services-section .container { position: relative; z-index: 2; }

.services-header {
  text-align: center; max-width: 780px; margin: 0 auto 70px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Service Card */
.service-card {
  position: relative;
  padding: 36px 30px;
  border-radius: 28px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(123,79,166,0.07);
  box-shadow: 0 8px 32px rgba(15,23,42,0.06);
  overflow: hidden;
  transition: all 0.5s var(--ease-spring);
  cursor: default;
}

/* Gradient top line */
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad-primary);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.5s var(--ease-spring);
}

/* Hover glow overlay */
.service-card-glow {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(123,79,166,0.06), rgba(77,166,255,0.05));
  opacity: 0; transition: opacity 0.4s;
  border-radius: inherit;
}

.service-card:hover {
  transform: translateY(-14px);
  box-shadow: 0 30px 70px rgba(123,79,166,0.20), 0 0 0 1px rgba(123,79,166,0.10);
  border-color: rgba(123,79,166,0.12);
}

.service-card:hover::before { transform: scaleX(1); }
.service-card:hover .service-card-glow { opacity: 1; }
.service-card > *:not(.service-card-glow) { position: relative; z-index: 2; }

.service-icon {
  width: 68px; height: 68px;
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; margin-bottom: 22px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transition: transform 0.5s var(--ease-spring), box-shadow 0.4s;
}

.service-card:hover .service-icon {
  transform: rotate(-10deg) scale(1.12);
  box-shadow: 0 16px 40px rgba(123,79,166,0.20);
}

.anxiety      { background: linear-gradient(135deg, #deeeff, #b8d9ff); }
.depression   { background: linear-gradient(135deg, #fff6c7, #ffdd80); }
.relationship { background: linear-gradient(135deg, #ffdcec, #ffb0cf); }
.coaching     { background: linear-gradient(135deg, #d5faec, #a8ecd4); }
.family       { background: linear-gradient(135deg, #f0e5ff, #ddc8ff); }
.confidence   { background: linear-gradient(135deg, #d5f6ff, #a8e8ff); }

.service-card h3 { font-size: 22px; font-weight: 700; color: var(--text-dark); margin-bottom: 13px; }
.service-card p  { font-size: 14px; line-height: 1.8; color: var(--text-muted); margin-bottom: 20px; }

.service-arrow {
  font-size: 22px; color: var(--primary); font-weight: 700;
  display: inline-block; transition: transform 0.35s var(--ease-spring);
}
.service-card:hover .service-arrow { transform: translateX(10px) scale(1.2); }

.services-cta { text-align: center; margin-top: 64px; }

.featured {
  border: 1.5px solid rgba(123,79,166,0.18);
  box-shadow: 0 20px 60px rgba(123,79,166,0.14), 0 0 60px rgba(123,79,166,0.06);
}

.featured-badge {
  position: absolute; top: 18px; right: 18px;
  padding: 6px 14px; border-radius: var(--radius-pill);
  font-size: 10px; font-weight: 800; letter-spacing: 1px;
  background: var(--grad-primary);
  color: var(--white); z-index: 3;
  text-transform: uppercase;
}

@media (max-width: 992px) { .services-grid { grid-template-columns: repeat(2, 1fr); } .section-title { font-size: 40px; } }
@media (max-width: 768px) { .services-grid { grid-template-columns: 1fr; } .section-title { font-size: 32px; } .services-section { padding: 90px 0; } }


/* =====================================================
   DARK SERVICES SECTION
===================================================== */
.services-section.dark-variant {
  background: #071d46; padding: 120px 8%;
}

.services-heading     { text-align: center; margin-bottom: 70px; }
.service-badge {
  display: inline-block; padding: 12px 26px; border-radius: 50px;
  border: 1px solid var(--teal); color: var(--teal);
  font-size: 12px; font-weight: 700; letter-spacing: 2.5px; margin-bottom: 20px;
  background: rgba(0,212,166,0.06);
}

.services-heading h2     { font-size: 68px; font-weight: 900; color: var(--white); margin-bottom: 20px; letter-spacing: -1px; }
.services-heading h2 span{ color: #1ea0ff; }
.services-heading p      { color: #a9b4d0; max-width: 700px; margin: auto; line-height: 1.8; }

.service-card.dark {
  background: rgba(10,37,85,0.9);
  border-radius: 24px; border: 1px solid rgba(255,255,255,0.07); padding: 0;
  overflow: hidden;
}

.service-card.dark img {
  width: 100%; height: 250px; object-fit: cover;
  transition: all 0.6s var(--ease-spring);
  filter: brightness(0.9);
}

.service-card.dark:hover img { transform: scale(1.08); filter: brightness(1.05); }

.service-number {
  position: absolute; top: 14px; right: 14px;
  width: 48px; height: 48px; border-radius: 12px;
  border: 1px solid #1ea0ff; color: #1ea0ff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; background: rgba(0,0,0,0.4);
  z-index: 5; font-size: 16px;
}

.service-content          { padding: 28px; }
.service-content h3       { color: var(--white); font-size: 22px; margin-bottom: 12px; font-weight: 700; }
.service-content p        { color: #b8c5df; line-height: 1.8; margin-bottom: 22px; font-size: 14px; }
.service-content a        { color: #1ea0ff; font-weight: 700; letter-spacing: 1px; transition: color 0.3s; }
.service-content a:hover  { color: var(--teal); }

@media (max-width: 1200px) { .services-section.dark-variant .services-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 768px)  { .services-heading h2 { font-size: 44px; } .services-section.dark-variant .services-grid { grid-template-columns: 1fr; } }


/* =====================================================
   PROCESS SECTION — Connected Timeline
===================================================== */
.process-section {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(160deg, #f8fbff 0%, #ffffff 100%);
  overflow: hidden;
}

.process-header { text-align: center; max-width: 760px; margin: 0 auto 80px; }

.process-timeline {
  position: relative;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

/* Connecting line */
.process-timeline::before {
  content: '';
  position: absolute;
  top: 62px; left: 9%; right: 9%;
  height: 3px;
  background: linear-gradient(90deg, #7e57ff, #34a6ff, #00d4a6);
  background-size: 200% 100%;
  animation: shimmer 3s linear infinite;
  border-radius: var(--radius-pill);
  z-index: 0;
}

.process-card {
  position: relative; z-index: 2;
  padding: 34px 26px;
  border-radius: 26px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(123,79,166,0.07);
  box-shadow: var(--shadow-card);
  text-align: center;
  overflow: hidden;
  transition: all 0.5s var(--ease-spring);
  cursor: default;
}

.process-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(123,79,166,0.06), rgba(77,166,255,0.04));
  opacity: 0; transition: opacity 0.4s;
}

.process-card:hover {
  transform: translateY(-14px);
  box-shadow: 0 28px 70px rgba(123,79,166,0.18), 0 0 0 1px rgba(111,79,255,0.1);
  border-color: rgba(123,79,166,0.15);
}
.process-card:hover::before { opacity: 1; }

.process-number {
  position: absolute; top: 16px; right: 20px;
  font-size: 13px; font-weight: 800;
  color: rgba(123,79,166,0.15);
}

.process-icon {
  width: 80px; height: 80px;
  margin: 0 auto 22px;
  border-radius: 22px;
  display: flex; align-items: center; justify-content: center;
  font-size: 32px;
  background: linear-gradient(135deg, #eef2ff, #dff1ff);
  box-shadow: 0 12px 32px rgba(123,79,166,0.10);
  transition: all 0.5s var(--ease-spring);
}

.process-card:hover .process-icon {
  transform: scale(1.12) rotate(-8deg);
  box-shadow: 0 20px 50px rgba(123,79,166,0.22);
}

.process-card h3 { font-size: 22px; font-weight: 700; color: var(--text-dark); margin-bottom: 12px; }
.process-card p  { font-size: 14px; line-height: 1.8; color: var(--text-muted); }

.process-badge {
  position: absolute; top: 16px; left: 16px;
  padding: 5px 12px; border-radius: var(--radius-pill);
  font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px;
  background: var(--grad-primary); color: var(--white);
}

@media (max-width: 992px) { .process-timeline { grid-template-columns: repeat(2,1fr); } .process-timeline::before { display: none; } }
@media (max-width: 768px) { .process-section { padding: 90px 0; } .process-timeline { grid-template-columns: 1fr; } }


/* =====================================================
   TESTIMONIALS SECTION
===================================================== */
.testimonials-section {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
  overflow: hidden;
}

.testimonials-header { text-align: center; max-width: 760px; margin: 0 auto 80px; }

.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}

.testimonial-card {
  position: relative;
  padding: 38px 32px;
  border-radius: 28px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(123,79,166,0.07);
  box-shadow: var(--shadow-card);
  transition: all 0.5s var(--ease-spring);
  overflow: hidden;
  cursor: default;
}

.testimonial-card::before {
  content: '"';
  position: absolute; top: -20px; right: 16px;
  font-family: 'Playfair Display', serif;
  font-size: 120px;
  color: rgba(123,79,166,0.06); line-height: 1;
  pointer-events: none;
}

.testimonial-card:hover {
  transform: translateY(-14px);
  box-shadow: 0 32px 80px rgba(123,79,166,0.18), 0 0 0 1px rgba(123,79,166,0.10);
  border-color: rgba(123,79,166,0.14);
}

.testimonial-card.featured {
  border: 1.5px solid rgba(123,79,166,0.18);
  box-shadow: 0 24px 65px rgba(123,79,166,0.14), 0 0 50px rgba(123,79,166,0.08);
}

.testimonial-stars { font-size: 20px; letter-spacing: 2.5px; color: #fbbf24; margin-bottom: 22px; }
.testimonial-text  { font-size: 15px; line-height: 1.9; color: #5f6784; margin-bottom: 30px; position: relative; z-index: 1; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }

.author-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--grad-primary);
  color: var(--white); font-size: 18px; font-weight: 800;
  box-shadow: 0 8px 24px rgba(123,79,166,0.25);
  flex-shrink: 0;
  transition: transform 0.4s var(--ease-spring);
}

.testimonial-card:hover .author-avatar { transform: scale(1.1) rotate(-5deg); }

.testimonial-author h4 { font-size: 15px; font-weight: 700; color: var(--text-dark); margin: 0 0 3px; }
.testimonial-author span { font-size: 13px; color: var(--text-muted); }

.testimonial-card .featured-badge {
  position: absolute; top: 18px; right: 18px;
  padding: 5px 13px; border-radius: var(--radius-pill);
  font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px;
  background: var(--grad-primary); color: var(--white);
}

@media (max-width: 992px) { .testimonials-grid { grid-template-columns: 1fr; } }
@media (max-width: 768px) { .testimonials-section { padding: 90px 0; } .testimonial-card { padding: 30px 22px; } }


/* =====================================================
   FAQ SECTION — Animated Accordion
===================================================== */
.faq-section {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(160deg, #f8fbff 0%, #ffffff 100%);
}

.faq-header { text-align: center; max-width: 760px; margin: 0 auto 80px; }

.faq-list { max-width: 880px; margin: 0 auto; display: flex; flex-direction: column; gap: 18px; }

.faq-item {
  border-radius: 22px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(123,79,166,0.07);
  box-shadow: 0 10px 36px rgba(15,23,42,0.05);
  overflow: hidden;
  transition: all 0.4s var(--ease-spring);
}

.faq-item:hover { box-shadow: 0 20px 60px rgba(123,79,166,0.12); border-color: rgba(123,79,166,0.12); }

.faq-question {
  width: 100%; padding: 26px 30px;
  background: transparent; border: none; outline: none;
  display: flex; justify-content: space-between; align-items: center;
  gap: 18px; cursor: pointer;
  font-size: 17px; font-weight: 700; color: var(--text-dark);
  text-align: left; font-family: inherit;
  transition: color 0.3s;
}
.faq-item.active .faq-question { color: var(--primary); }

.faq-icon {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(123,79,166,0.08); color: #7e57ff;
  font-size: 22px; font-weight: 700; flex-shrink: 0;
  transition: all 0.45s var(--ease-spring);
  border: 1px solid rgba(123,79,166,0.10);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg) scale(1.1);
  background: var(--grad-primary);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(111,79,255,0.3);
  border-color: transparent;
}

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.5s ease, opacity 0.4s; opacity: 0; }
.faq-item.active .faq-answer { max-height: 400px; opacity: 1; }

.faq-answer p { padding: 0 30px 26px; font-size: 15px; line-height: 1.9; color: var(--text-muted); }

@media (max-width: 768px) { .faq-section { padding: 90px 0; } .faq-question { padding: 20px; font-size: 15px; } .faq-answer p { padding: 0 20px 20px; } }


/* =====================================================
   PREMIUM CTA — Gradient Masterpiece
===================================================== */
.premium-cta {
  position: relative;
  padding: 140px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
}

.premium-cta-box {
  position: relative; overflow: hidden;
  padding: 100px 80px;
  border-radius: var(--radius-xl);
  text-align: center;
  background: linear-gradient(135deg, #4a1fff 0%, #7b4fa6 35%, #8b6fff 60%, #c9a84c 100%);
  background-size: 300% 300%;
  animation: gradientShift 6s ease infinite;
  box-shadow: 0 50px 130px rgba(111,79,255,0.38), 0 20px 60px rgba(77,166,255,0.20);
}

/* Animated mesh inside box */
.premium-cta-box::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 20% 30%, rgba(255,255,255,0.12), transparent),
    radial-gradient(ellipse 50% 40% at 80% 70%, rgba(0,212,166,0.10), transparent),
    url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
}

.cta-glow {
  position: absolute; border-radius: 50%;
  background: rgba(255,255,255,0.10);
  filter: blur(30px);
  animation: floatSlow 10s ease-in-out infinite alternate;
}
.glow-1 { width: 240px; height: 240px; top: -70px; left: -50px; }
.glow-2 { width: 320px; height: 320px; right: -90px; top: 15%; animation-delay: 3s; }
.glow-3 { width: 280px; height: 280px; bottom: -90px; left: 28%; animation-delay: 6s; }

.premium-cta-box > * { position: relative; z-index: 2; }

.cta-tag {
  display: inline-block;
  padding: 10px 24px; border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.15);
  color: var(--white);
  font-size: 11px; font-weight: 800; letter-spacing: 2.5px; text-transform: uppercase;
  margin-bottom: 28px;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2);
}

.premium-cta-title {
  font-size: 62px; line-height: 1.07; font-weight: 800; color: var(--white);
  max-width: 880px; margin: 0 auto 22px;
  letter-spacing: -0.8px;
  text-shadow: 0 4px 30px rgba(0,0,0,0.2);
}

.premium-cta-title span { display: block; color: rgba(200,245,255,0.95); }

.premium-cta-text {
  max-width: 740px; margin: 0 auto 44px;
  font-size: 18px; line-height: 1.9; color: rgba(255,255,255,0.9);
}

.premium-cta-buttons { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin-bottom: 55px; }

.premium-cta-stats { display: flex; justify-content: center; gap: 55px; flex-wrap: wrap; }
.cta-stat { text-align: center; }
.cta-stat strong {
  display: block; font-size: 34px; font-weight: 800; color: var(--white);
  margin-bottom: 5px;
  text-shadow: 0 0 20px rgba(255,255,255,0.3);
}
.cta-stat span { font-size: 13px; color: rgba(255,255,255,0.80); font-weight: 600; letter-spacing: 0.5px; }

@media (max-width: 768px) {
  .premium-cta { padding: 90px 0; }
  .premium-cta-box { padding: 70px 26px; border-radius: 28px; }
  .premium-cta-title { font-size: 36px; }
  .premium-cta-text { font-size: 15px; }
  .premium-cta-stats { gap: 22px; }
  .cta-stat strong { font-size: 26px; }
}


/* =====================================================
   RESOURCES SECTION
===================================================== */
.resources-section {
  position: relative; padding: 120px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
  overflow: hidden;
}

.resources-header { text-align: center; max-width: 780px; margin: 0 auto 80px; }
.resources-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

.resource-card {
  position: relative; padding: 36px 30px;
  border-radius: 28px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(123,79,166,0.07);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: all 0.5s var(--ease-spring);
  cursor: default;
}

.resource-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad-primary);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.5s var(--ease-spring);
}

.resource-card:hover {
  transform: translateY(-14px);
  box-shadow: 0 32px 80px rgba(123,79,166,0.18), 0 0 0 1px rgba(123,79,166,0.10);
  border-color: rgba(123,79,166,0.12);
}
.resource-card:hover::before { transform: scaleX(1); }

.resource-icon {
  width: 70px; height: 70px; border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 30px; margin-bottom: 22px;
  background: linear-gradient(135deg, #eef2ff, #dff1ff);
  box-shadow: 0 10px 28px rgba(123,79,166,0.10);
  transition: all 0.5s var(--ease-spring);
}
.resource-card:hover .resource-icon { transform: rotate(-10deg) scale(1.12); box-shadow: 0 20px 50px rgba(123,79,166,0.22); }

.resource-type {
  display: inline-block; margin-bottom: 12px;
  padding: 5px 12px; border-radius: var(--radius-pill);
  background: rgba(123,79,166,0.08); color: var(--primary);
  font-size: 10px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase;
  border: 1px solid rgba(123,79,166,0.10);
}

.resource-card h3 { font-size: 22px; font-weight: 700; color: var(--text-dark); line-height: 1.35; margin-bottom: 12px; }
.resource-card p  { font-size: 14px; line-height: 1.8; color: var(--text-muted); margin-bottom: 22px; }

.resource-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 700; color: var(--primary);
  transition: all 0.35s var(--ease-spring);
}
.resource-link span { transition: transform 0.35s var(--ease-spring); }
.resource-card:hover .resource-link span { transform: translateX(8px) scale(1.1); }
.resource-link:hover { color: var(--primary-dark); }

@media (max-width: 992px) { .resources-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 768px) { .resources-section { padding: 90px 0; } .resources-grid { grid-template-columns: 1fr; } .resource-card { padding: 30px 22px; } }


/* =====================================================
   CONTACT SECTION
===================================================== */
.contact-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #f8fbff 0%, #ffffff 100%);
}

.contact-header { text-align: center; max-width: 760px; margin: 0 auto 80px; }

.contact-wrapper {
  display: grid; grid-template-columns: 380px 1fr;
  gap: 36px; align-items: start;
}

/* Left info card */
.contact-info-card {
  background: var(--grad-primary);
  background-size: 200% 200%;
  animation: gradientShift 6s ease infinite;
  padding: 38px 28px;
  border-radius: 30px; color: var(--white);
  box-shadow: 0 32px 90px rgba(111,79,255,0.32);
  position: relative; overflow: hidden;
}

.contact-info-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 30% 30%, rgba(255,255,255,0.1), transparent);
  pointer-events: none;
}

.contact-info-card > * { position: relative; z-index: 2; }

.contact-profile { display: flex; align-items: center; gap: 16px; margin-bottom: 32px; }
.contact-profile img {
  width: 70px; height: 70px; border-radius: 50%;
  object-fit: cover; border: 3px solid rgba(255,255,255,0.3);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.contact-profile h3 { font-size: 22px; margin-bottom: 4px; color: var(--white); font-weight: 700; }
.contact-profile p  { font-size: 13px; opacity: 0.85; }

.contact-info-list { display: flex; flex-direction: column; gap: 14px; }

.contact-info-item {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 16px; border-radius: 18px;
  background: rgba(255,255,255,0.12);
  color: var(--white); transition: all 0.35s var(--ease-spring);
  border: 1px solid rgba(255,255,255,0.12);
}

.contact-info-item:hover {
  transform: translateX(8px) scale(1.01);
  background: rgba(255,255,255,0.20);
  border-color: rgba(255,255,255,0.25);
}

.contact-icon {
  width: 48px; height: 48px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.16); font-size: 20px;
  transition: transform 0.4s var(--ease-spring);
}

.contact-info-item:hover .contact-icon { transform: scale(1.15) rotate(-8deg); }

.contact-info-item h4   { font-size: 13px; margin-bottom: 3px; color: var(--white); font-weight: 700; }
.contact-info-item span { font-size: 13px; opacity: 0.88; }

.contact-socials { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.contact-socials a {
  width: 48px; height: 48px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.12); color: var(--white); font-size: 20px;
  transition: all 0.35s var(--ease-spring);
  border: 1px solid rgba(255,255,255,0.15);
}
.contact-socials a:hover {
  transform: translateY(-6px) scale(1.1);
  background: rgba(255,255,255,0.25);
  border-color: rgba(255,255,255,0.35);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

/* Form card */
.contact-form-card {
  background: rgba(255,255,255,0.96);
  padding: 44px; border-radius: 30px;
  border: 1px solid rgba(123,79,166,0.07);
  box-shadow: 0 20px 65px rgba(15,23,42,0.07);
}

.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.form-group { margin-bottom: 18px; }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 17px 20px;
  border: 1.5px solid rgba(123,79,166,0.10);
  border-radius: 15px;
  background: var(--white);
  font-size: 14px; font-family: inherit;
  outline: none; transition: all 0.35s var(--ease-spring);
  color: var(--text-dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(123,79,166,0.10), 0 8px 24px rgba(123,79,166,0.06);
  transform: translateY(-1px);
}

.form-group textarea { resize: vertical; min-height: 155px; }

.contact-submit-btn {
  width: 100%; padding: 17px;
  border: none; border-radius: 15px;
  background: var(--grad-primary); background-size: 200% 200%;
  animation: gradientShift 4s ease infinite;
  color: var(--white); font-size: 15px; font-weight: 800;
  cursor: pointer;
  box-shadow: 0 14px 38px rgba(111,79,255,0.28);
  transition: all 0.4s var(--ease-spring);
  font-family: inherit;
  letter-spacing: 0.3px;
}

.contact-submit-btn:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 22px 55px rgba(111,79,255,0.38);
}
.contact-submit-btn:active { transform: translateY(-1px) scale(0.99); }

@media (max-width: 992px) { .contact-wrapper { grid-template-columns: 1fr; } }
@media (max-width: 768px) { .contact-section { padding: 90px 0; } .contact-info-card, .contact-form-card { padding: 28px 22px; } .form-grid { grid-template-columns: 1fr; } }


/* =====================================================
   PHILOSOPHY SECTION
===================================================== */
.philosophy-section {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(135deg, #f8faff 0%, #eef4ff 100%);
  overflow: hidden;
}

.philosophy-section::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: #7e57ff; opacity: 0.07; filter: blur(130px);
  border-radius: 50%; top: -120px; left: -130px;
  animation: morphBlob 14s ease-in-out infinite;
}

.philosophy-section::after {
  content: '';
  position: absolute;
  width: 450px; height: 450px;
  background: #34a6ff; opacity: 0.07; filter: blur(130px);
  border-radius: 50%; bottom: -120px; right: -130px;
  animation: morphBlob 12s ease-in-out infinite reverse;
}

.philosophy-header { text-align: center; max-width: 900px; margin: auto auto 80px; }

.philosophy-header h2 {
  font-size: 3.8rem; line-height: 1.15; color: #151545;
  margin: 24px 0; font-weight: 800; letter-spacing: -0.5px;
}

.philosophy-header h2 span {
  background: linear-gradient(90deg, #7e57ff, #34a6ff);
  background-size: 200% auto;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  animation: shimmer 4s linear infinite;
}

.philosophy-header p { font-size: 1.08rem; line-height: 1.9; color: var(--text-muted); }

.philosophy-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px; margin-bottom: 70px; padding: 4px;
}

.philosophy-card {
  background: var(--white);
  padding: 0;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: 0 16px 40px rgba(0,0,0,0.06);
  border: 1px solid rgba(26,158,255,0.08);
  overflow: hidden; position: relative;
  transition: transform 0.45s var(--ease-spring), box-shadow 0.45s;
  cursor: default;
}

.philosophy-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 70px rgba(123,79,166,0.14);
}

.philosophy-card::before { content: ''; display: block; height: 4px; background: var(--grad-primary); }

.philosophy-card-content { padding: 28px 24px 30px; }

.philosophy-icon {
  background: #e8f0fb;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 14px; font-size: 22px; margin: 0 auto 16px;
  transition: transform 0.45s var(--ease-spring);
}

.philosophy-card:hover .philosophy-icon { transform: scale(1.15) rotate(-8deg); }

.philosophy-card h3 {
  font-size: 16px; font-weight: 800; color: #185fa5;
  margin: 0 0 10px; text-transform: uppercase; letter-spacing: 0.8px;
}

.philosophy-card p { font-size: 14px; line-height: 1.7; color: #555; margin: 0; }

.philosophy-quote {
  max-width: 880px; margin: auto; text-align: center;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(16px);
  padding: 50px; border-radius: 30px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.06);
  border-left: 4px solid var(--primary);
  position: relative; overflow: hidden;
}

.philosophy-quote::before {
  content: '"';
  position: absolute; top: -30px; right: 20px;
  font-family: 'Playfair Display', serif;
  font-size: 180px; color: rgba(123,79,166,0.06); line-height: 1;
  pointer-events: none;
}

.philosophy-quote h3 {
  font-style: italic; font-size: 1.9rem; line-height: 1.65;
  color: #151545; margin-bottom: 18px; position: relative; z-index: 1;
}
.philosophy-quote span { color: #7e57ff; font-weight: 800; }


/* =====================================================
   WHO WE WORK WITH
===================================================== */
.who-work-section .section-heading p{
  max-width: 900px;
  margin: 25px auto 0;

  font-size: 2rem;
  font-weight: 700;
  line-height: 1.7;
  text-align: center;

  background: linear-gradient(
    135deg,
    #0D1B4C,
    #6E4A8E,
    #C8A85D
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Animated text colour cycle */
/* .section-heading p {
  font-size: 18px;
  font-weight: 500;
  animation: textColorCycle 8s ease-in-out infinite;
}

@keyframes textColorCycle {
  0%   { color: #0D1B4C; }  
  25%  { color: #C8A85D; }  
  50%  { color: #6B0F1A; }   
  75%  { color: #6E4A8E; }  
  100% { color: #F7F4ED; }  
} */

.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 70px;
}

.work-card {
  background: #F7F4ED; /* Ivory base */
  border: 1px solid #C8A85D; /* Champagne Gold border */
  border-radius: 28px;
  padding: 38px 28px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  transition: all .45s ease;
}

.work-card:hover {
  transform: translateY(-14px) scale(1.02);
  box-shadow: 0 28px 70px rgba(200,168,93,0.35); /* Gold glow */
  border-color: #C8A85D;
}

.work-icon {
  width: 88px; height: 88px;
  margin: 0 auto 22px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 40px;
  background: #6E4A8E; /* Royal Purple */
  color: #fff;
  box-shadow: 0 14px 36px rgba(110,74,142,0.4);
  transition: all 0.5s ease;
}

.work-card:hover .work-icon {
  transform: rotate(12deg) scale(1.12);
  box-shadow: 0 22px 55px rgba(200,168,93,0.45); /* Gold accent */
}

.work-card h3 {
  font-family:'Playfair Display',serif;
  font-size:1.7rem;
  font-weight:700;
  color:#0D1B4C; /* Deep Navy */
  margin-bottom:14px;
}

.work-card p {
  color:#6B7280; /* Warm Grey */
  line-height:1.9;
  font-size:15px;
  font-weight:500;
}

.work-heading p{
  max-width: 950px;
  margin: 25px auto 0;

  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1.6;

  background: linear-gradient(
    90deg,
    #0D1B4C,
    #6E4A8E,
    #C8A85D
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  text-align: center;
}



/* =====================================================
   COMMUNITY SECTION
===================================================== */
.community-section { padding: 120px 8%; background: #f7f8fc; }

.community-header { text-align: center; max-width: 850px; margin: auto auto 70px; }

.community-header h2 {
  font-size: 3.1rem; font-weight: 800; color: #141b4d; margin-bottom: 18px; letter-spacing: -0.5px;
}

.community-header h2 span {
  display: block;
  background: linear-gradient(135deg, #7b61ff, #3d8bfd);
  background-size: 200% auto;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  animation: shimmer 4s linear infinite;
}

.community-header p { color: var(--text-muted); line-height: 1.8; }

.community-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; margin-bottom: 70px;
}

.social-box {
  padding: 38px 28px; border-radius: 28px;
  color: white; text-decoration: none;
  position: relative; overflow: hidden;
  transition: all 0.5s var(--ease-spring);
  min-height: 255px; cursor: pointer;
}

.social-box::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 40% 40%, rgba(255,255,255,0.15), transparent);
  pointer-events: none;
}

.social-box:hover { transform: translateY(-18px) scale(1.02); }
.social-box:hover::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,0.08);
  animation: fadeIn 0.3s ease both;
}

.social-box i    { font-size: 3.8rem; margin-bottom: 28px; display: block; }
.social-box h3   { font-size: 1.75rem; margin-bottom: 11px; font-weight: 800; }
.social-box p    { line-height: 1.7; opacity: .88; font-size: 14px; }
.social-box span { position: absolute; bottom: 28px; font-weight: 800; font-size: 14px; letter-spacing: 0.3px; }

.youtube   { background: linear-gradient(135deg, #cc0000, #ff4444); box-shadow: 0 20px 50px rgba(204,0,0,0.30); }
.instagram { background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af, #515bd4); box-shadow: 0 20px 50px rgba(221,42,123,0.30); }
.tiktok    { background: linear-gradient(135deg, #0f172a, #1a3a4a, #25F4EE 200%); box-shadow: 0 20px 50px rgba(37,244,238,0.20); }

.why-clients {
  background: white; border-radius: 32px; padding: 58px;
  box-shadow: 0 22px 65px rgba(0,0,0,0.08);
  border: 1px solid rgba(123,79,166,0.06);
}

.why-clients h3 { font-size: 2.5rem; color: #141b4d; margin-bottom: 38px; font-weight: 800; }

.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }

.why-item { display: flex; gap: 14px; align-items: flex-start; }

.why-item i { color: #6c63ff; font-size: 1.2rem; margin-top: 4px; }
.why-item span { color: #555; line-height: 1.8; font-size: 15px; }

@media(max-width:991px) { .community-grid { grid-template-columns: 1fr; } .why-grid { grid-template-columns: 1fr; } .community-header h2 { font-size: 2.2rem; } .why-clients { padding: 34px; } }


/* =====================================================
   FOOTER — Dark Premium
===================================================== */
.footer {
  padding: 100px 0 36px;
  background: #0a0d1e;
  color: rgba(255,255,255,0.80);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(111,79,255,0.5), rgba(77,166,255,0.3), transparent);
}

.footer::after {
  content: '';
  position: absolute;
  top: -150px; left: 50%; transform: translateX(-50%);
  width: 800px; height: 400px;
  background: radial-gradient(circle, rgba(123,79,166,0.08), transparent 65%);
  filter: blur(60px); pointer-events: none;
}

.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 50px; margin-bottom: 60px;
  position: relative; z-index: 2;
}

.footer-logo {
  display: flex; align-items: center; gap: 14px;
  text-decoration: none; margin-bottom: 22px;
  transition: transform 0.4s var(--ease-spring);
}
.footer-logo:hover { transform: scale(1.03); }
.footer-logo img  { width: 56px; height: 56px; }
.footer-logo h3   { color: var(--white); font-size: 22px; margin-bottom: 3px; font-weight: 800; }
.footer-logo span { color: #8dd36c; font-size: 13px; font-weight: 600; }

.footer-brand p { line-height: 1.9; margin-bottom: 22px; max-width: 310px; font-size: 14px; color: rgba(255,255,255,0.65); }

.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 42px; height: 42px; border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.07);
  color: var(--white); transition: all 0.35s var(--ease-spring);
  border: 1px solid rgba(255,255,255,0.07);
}
.footer-socials a:hover {
  transform: translateY(-5px) scale(1.1);
  background: var(--grad-primary);
  border-color: transparent;
  box-shadow: 0 12px 28px rgba(123,79,166,0.35);
}

.footer-links h4 { color: var(--white); font-size: 17px; margin-bottom: 18px; font-weight: 700; }
.footer-links a  { display: block; color: rgba(255,255,255,0.65); margin-bottom: 11px; transition: all 0.3s; font-size: 14px; }
.footer-links a:hover { color: var(--neon); transform: translateX(5px); }

.footer-bottom {
  padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex; justify-content: space-between; align-items: center;
  gap: 18px; flex-wrap: wrap;
  position: relative; z-index: 2;
}

.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.5); }

.footer-bottom-links { display: flex; gap: 22px; }
.footer-bottom-links a { color: rgba(255,255,255,0.60); font-size: 13px; transition: color 0.3s; }
.footer-bottom-links a:hover { color: var(--neon); }

@media (max-width: 992px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 768px) { .footer { padding: 80px 0 28px; } .footer-top { grid-template-columns: 1fr; gap: 36px; } .footer-bottom { flex-direction: column; text-align: center; } }


/* =====================================================
   CONTACT (alternate layout from second block)
===================================================== */
.contact-container {
  display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center;
}

.contact-info h2 { font-size: 2.9rem; font-weight: 800; color: #16194f; margin-bottom: 18px; letter-spacing: -0.4px; }

.contact-info h2 span {
  display: block;
  background: linear-gradient(135deg, #6c63ff, #3f8cff);
  background-size: 200% auto;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  animation: shimmer 4s linear infinite;
}

.contact-info p { color: #666; line-height: 1.8; margin-bottom: 38px; font-size: 15px; }

.contact-card {
  display: flex; gap: 18px;
  background: #fff; padding: 22px 24px;
  border-radius: 22px; margin-bottom: 18px;
  box-shadow: 0 12px 36px rgba(0,0,0,0.06);
  transition: all 0.4s var(--ease-spring);
  border: 1px solid rgba(123,79,166,0.06);
  cursor: default;
}

.contact-card:hover { transform: translateY(-8px) scale(1.01); box-shadow: 0 24px 65px rgba(123,79,166,0.14); }

.contact-card i {
  width: 62px; height: 62px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  background: var(--grad-primary); color: white;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(123,79,166,0.25);
  transition: transform 0.4s var(--ease-spring);
}
.contact-card:hover i { transform: scale(1.1) rotate(-8deg); }

.contact-card h4 { color: #16194f; margin-bottom: 8px; font-size: 15px; font-weight: 700; }
.contact-card a  { display: block; color: #666; text-decoration: none; margin-bottom: 4px; font-size: 14px; transition: color 0.3s; }
.contact-card a:hover { color: var(--primary); }

.contact-form-wrap {
  background: #fff; padding: 44px; border-radius: 32px;
  box-shadow: 0 24px 65px rgba(0,0,0,0.08);
  border: 1px solid rgba(123,79,166,0.06);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%; padding: 17px 20px;
  border: 1.5px solid #ececf5; border-radius: 14px;
  outline: none; font-size: 14px; font-family: inherit;
  transition: all 0.35s var(--ease-spring);
  color: var(--text-dark);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #6c63ff;
  box-shadow: 0 0 0 4px rgba(108,99,255,0.10), 0 8px 24px rgba(108,99,255,0.07);
  transform: translateY(-1px);
}

.contact-btn {
  width: 100%; border: none; padding: 17px;
  border-radius: 60px; font-size: 15px; font-weight: 800;
  cursor: pointer; color: white;
  background: var(--grad-primary); background-size: 200% 200%;
  animation: gradientShift 4s ease infinite;
  transition: all 0.4s var(--ease-spring);
  font-family: inherit;
  box-shadow: 0 12px 36px rgba(108,99,255,0.30);
}

.contact-btn:hover { transform: translateY(-6px) scale(1.01); box-shadow: 0 22px 55px rgba(108,99,255,0.40); }
.contact-btn:active { transform: translateY(-2px) scale(0.99); }

@media(max-width:991px) { .contact-container { grid-template-columns: 1fr; } .contact-info h2 { font-size: 2.1rem; } .contact-form-wrap { padding: 30px; } }


/* =====================================================
   FOOTER (second block — dark version)
===================================================== */
.footer-container {
  max-width: 1400px; margin: auto; padding: 0 8%;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 50px;
  position: relative; z-index: 2;
}

.footer-about img { width: 88px; margin-bottom: 18px; }
.footer-about p   { color: #b8bfd1; line-height: 1.8; margin-bottom: 22px; font-size: 14px; }

.footer-col h4 { margin-bottom: 22px; font-size: 1.15rem; color: white; font-weight: 700; }
.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a {
  text-decoration: none; color: #b8bfd1; transition: all 0.3s; font-size: 14px;
}
.footer-col ul li a:hover { color: #9b7fff; transform: translateX(4px); display: block; }

.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.07);
  display: flex; align-items: center; justify-content: center;
  color: white; transition: all 0.35s var(--ease-spring);
  border: 1px solid rgba(255,255,255,0.07);
}
.footer-social a:hover {
  background: var(--grad-primary);
  border-color: transparent;
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 10px 25px rgba(123,79,166,0.35);
}

.footer-bottom {
  margin-top: 55px; text-align: center;
  padding: 24px 8%;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.footer-bottom p { color: #a5acc0; font-size: 13px; }

@media(max-width:991px) { .footer-container { grid-template-columns: 1fr; } .footer { text-align: center; } .footer-social { justify-content: center; } }


/* =====================================================
   HR CONSULTING
===================================================== */
.expertise-section { padding: 100px 8%; }

.expertise-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px;
}

.expertise-card {
  background: #fff; padding: 28px;
  border-radius: 22px; text-align: center;
  font-weight: 700; font-size: 15px;
  box-shadow: 0 14px 40px rgba(0,0,0,0.07);
  transition: all 0.45s var(--ease-spring);
  border: 1px solid rgba(123,79,166,0.06);
  cursor: default; position: relative; overflow: hidden;
}

.expertise-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad-primary);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.45s var(--ease-spring);
}

.expertise-card:hover {
  transform: translateY(-12px);
  color: var(--primary);
  box-shadow: 0 24px 65px rgba(123,79,166,0.18);
  border-color: rgba(123,79,166,0.12);
}
.expertise-card:hover::before { transform: scaleX(1); }

.excellence-section { padding: 120px 8%; text-align: center; background: #f8fafc; }
.excellence-section h2 { font-size: 46px; margin: 18px 0; letter-spacing: -0.5px; font-weight: 800; }
.excellence-section p  { max-width: 880px; margin: 18px auto; color: var(--text-muted); line-height: 1.8; font-size: 16px; }


/* =====================================================
   SERVICES.CSS — Premium Service Pages
===================================================== */
:root {
  --navy:          #0D1B4C;
  --navy-mid:      #1A2336;
  --navy-light:    #2a3354;
  --violet:        #6E4A8E;
  --violet-mid:    #6E4A8E;
  --violet-soft:   #BFC3C9;
  --cyan:          #00d4aa;
  --cyan-dim:      rgba(0,212,170,0.15);
  --blue:          #6E4A8E;
  --off-white:     #F7F4ED;
  --slate:         #FFF7E6;
  --glass-bg:      rgba(255,255,255,0.06);
  --glass-border:  rgba(255,255,255,0.11);
  --card-shadow:   0 20px 60px rgba(110,74,142,0.12);
}

/* Service Hero */
.sv-hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
   background:
    linear-gradient(
      90deg,
      #020d2f 0%,
      #071d46 50%,
      #0D1B4C 100%
    );
}

.sv-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 40%, rgba(124,58,237,0.28) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 20%, rgba(59,130,246,0.22) 0%, transparent 55%),
    radial-gradient(ellipse 50% 50% at 60% 85%, rgba(0,212,170,0.14) 0%, transparent 50%);
  z-index: 1;
  animation: meshShift 12s ease-in-out infinite alternate;
}

.sv-hero-bg {
  position: absolute; inset: 0;
  display: none;
  /* display: grid; grid-template-columns: repeat(3,1fr); z-index: 0; */
}

.sv-hero-bg img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.10) saturate(0.5); }

.sv-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(5,13,31,0.90), rgba(13,31,69,0.80));
  z-index: 1;
}

.sv-hero-dots{
    position:absolute;
    inset:0;
    z-index:2;

    background-image:
      linear-gradient(rgba(200,168,93,.06) 1px, transparent 1px),
      linear-gradient(90deg, rgba(200,168,93,.06) 1px, transparent 1px);

    background-size:60px 60px;
}

.sv-hero-content {
  position: relative; z-index: 5;
  display: grid; grid-template-columns: 1fr 360px;
  gap: 64px; align-items: center;
}

.sv-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 11px 26px;
  border: 1px solid rgba(0,212,170,0.40);
  border-radius: 50px;
  background: rgba(0,212,170,0.08);
  color: var(--cyan);
  font-size: 11px; font-weight: 800; letter-spacing: 2.5px; text-transform: uppercase;
  margin-bottom: 26px;
  box-shadow: 0 0 30px rgba(0,212,170,0.15);
  backdrop-filter: blur(10px);
}

.sv-hero-left h1 {
  font-family: 'Playfair Display', serif;
  font-size: 66px; line-height: 1.06; font-weight: 800;
  color: var(--white); margin-bottom: 22px; letter-spacing: -1px;
}

.sv-hero-left h1 span {
  background: linear-gradient(90deg, var(--violet-soft), #60a5fa);
  background-size: 200% auto;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  font-style: italic; animation: shimmer 4s linear infinite;
}

.sv-hero-left p {
  font-size: 17px; color: rgba(255,255,255,0.62); line-height: 1.9;
  max-width: 570px; margin-bottom: 38px; font-weight: 300;
}

.sv-hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.sv-btn-primary {
  padding: 16px 38px;
  background: linear-gradient(135deg, var(--violet), var(--blue));
  color: var(--white); border-radius: 50px;
  font-weight: 700; font-size: 15px; text-decoration: none;
  transition: all 0.4s var(--ease-spring);
  box-shadow: 0 14px 42px rgba(124,58,237,0.48);
  display: inline-flex; align-items: center; gap: 9px;
  border: none; position: relative; overflow: hidden;
}

.sv-btn-primary::after {
  content: '';
  position: absolute; top: 0; left: -130%; width: 80%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: skewX(-20deg);
}

.sv-btn-primary:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 24px 60px rgba(124,58,237,0.58);
}
.sv-btn-primary:hover::after { animation: btnShine 0.85s ease forwards; }

.sv-btn-secondary {
  padding: 15px 38px;
  border: 1.5px solid rgba(0,212,170,0.45); color: var(--cyan);
  border-radius: 50px; font-weight: 700; font-size: 15px; text-decoration: none;
  transition: all 0.35s var(--ease-spring);
  backdrop-filter: blur(12px); background: rgba(0,212,170,0.06);
}

.sv-btn-secondary:hover {
  background: rgba(0,212,170,0.14); transform: translateY(-5px);
  box-shadow: 0 14px 36px rgba(0,212,170,0.24);
}

.sv-hero-right {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}

.sv-stat-card{
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(24px);
  border-radius: 18px;
  padding: 28px 20px;
  text-align: center;
  min-width: 210px;   /* add this */
  min-height: 110px;  /* add this */
}

.sv-stat-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(124,58,237,0.08), rgba(59,130,246,0.06));
  opacity: 0; transition: opacity 0.35s;
}

.sv-stat-card:hover {
  background: rgba(255,255,255,0.10);
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(167,139,250,0.35);
  box-shadow: 0 24px 60px rgba(124,58,237,0.25);
}
.sv-stat-card:hover::before { opacity: 1; }

.sv-stat-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 30px; font-weight: 800;
  background: linear-gradient(90deg, var(--violet-soft), #60a5fa);
  background-size: 200% auto;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  animation: shimmer 4s linear infinite;
  margin-bottom: 5px; line-height: 1.1;
}

.sv-stat-card p { color: rgba(255,255,255,0.50); font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; }

/* Shared section utilities */
.sv-section-head { text-align: center; margin-bottom: 70px; }

.sv-section-head h2 {
  font-family: 'Playfair Display', serif;
  font-size: 46px; font-weight: 800; color: var(--text-dark);
  margin: 16px 0 18px; line-height: 1.12; letter-spacing: -0.5px;
}

.sv-section-head h2 em {
  font-style: italic;
  background: linear-gradient(90deg, var(--violet), var(--blue));
  background-size: 200% auto;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  animation: shimmer 4s linear infinite;
}

.sv-section-head p { color: var(--text-muted); font-size: 16.5px; max-width: 600px; margin: 0 auto; line-height: 1.85; }
.sv-section-head.light h2 { color: var(--white); }
.sv-section-head.light p  { color: rgba(255,255,255,0.55); }

.sv-label {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 22px;
  border: 1px solid rgba(124,58,237,0.35); border-radius: 50px;
  background: rgba(124,58,237,0.08); color: var(--violet-mid);
  font-size: 10px; font-weight: 800; letter-spacing: 3px; text-transform: uppercase;
}

.sv-section-head.light .sv-label { border-color: rgba(167,139,250,0.35); background: rgba(167,139,250,0.1); color: var(--violet-soft); }

/* Expertise grid */
.sv-expertise { padding: 110px 0; background: var(--white); position: relative; }

.sv-expertise::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 1px; background: linear-gradient(90deg, transparent, rgba(124,58,237,0.2), transparent);
}

.sv-expertise-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }

.sv-exp-card {
  background: var(--slate); border: 1.5px solid rgba(124,58,237,0.07);
  border-radius: 17px; padding: 26px 22px;
  display: flex; align-items: center; gap: 16px;
  transition: all 0.4s var(--ease-spring); cursor: default;
}

.sv-exp-card:hover {
  background: var(--white); border-color: rgba(124,58,237,0.22);
  box-shadow: 0 18px 50px rgba(124,58,237,0.12);
  transform: translateY(-8px);
}

.sv-exp-icon {
  width: 50px; height: 50px; border-radius: 14px;
  background: linear-gradient(135deg, var(--violet), var(--blue));
  display: flex; align-items: center; justify-content: center;
  font-size: 19px; color: var(--white); flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(124,58,237,0.32);
  transition: all 0.4s var(--ease-spring);
}

.sv-exp-card:hover .sv-exp-icon { transform: rotate(-8deg) scale(1.12); box-shadow: 0 16px 40px rgba(124,58,237,0.50); }
.sv-exp-card span { font-size: 14.5px; font-weight: 700; color: var(--text-dark); }

/* Programs/Challenges */
.sv-challenges {
  padding: 110px 0; background: var(--navy);
  position: relative; overflow: hidden;
}

.sv-challenges::before {
  content: ''; position: absolute;
  top: -200px; right: -200px; width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(124,58,237,0.12), transparent 70%);
  animation: morphBlob 14s ease-in-out infinite;
}

.sv-programs-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; position: relative; z-index: 2; }

.sv-prog-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 17px; padding: 30px 24px;
  transition: all 0.4s var(--ease-spring); position: relative; overflow: hidden; cursor: default;
}

.sv-prog-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--violet), var(--cyan));
  transform: scaleX(0); transform-origin: left; transition: transform 0.45s var(--ease-spring);
}

.sv-prog-card:hover::before { transform: scaleX(1); }
.sv-prog-card:hover {
  background: rgba(255,255,255,0.07); transform: translateY(-10px);
  border-color: rgba(124,58,237,0.22); box-shadow: 0 24px 60px rgba(0,0,0,0.35);
}

.sv-ch-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: rgba(124,58,237,0.15); border: 1px solid rgba(124,58,237,0.22);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: var(--violet-soft); margin-bottom: 16px;
  transition: all 0.4s var(--ease-spring);
}

.sv-prog-card:hover .sv-ch-icon { background: rgba(124,58,237,0.30); color: var(--cyan); transform: scale(1.12) rotate(-5deg); }

.sv-prog-card h4 { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 9px; }
.sv-prog-card p  { color: rgba(255,255,255,0.48); font-size: 13px; line-height: 1.75; }

/* How We Help */
.sv-howhelp {
  padding: 110px 0;
  background: linear-gradient(160deg, var(--off-white) 0%, #e8e4ff 100%);
  position: relative;
}

.sv-howhelp::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(124,58,237,0.05) 1.5px, transparent 1.5px);
  background-size: 40px 40px; pointer-events: none;
}

.sv-help-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; position: relative; }

.sv-help-card {
  background: var(--white); border-radius: 26px;
  padding: 38px 30px;
  box-shadow: 0 10px 40px rgba(124,58,237,0.07);
  transition: all 0.45s var(--ease-spring);
  border: 1px solid rgba(124,58,237,0.06);
  position: relative; overflow: hidden; cursor: default;
}

.sv-help-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: linear-gradient(90deg, var(--violet), var(--blue));
  transform: scaleX(0); transform-origin: left; transition: transform 0.4s var(--ease-spring);
}

.sv-help-card:hover::after { transform: scaleX(1); }
.sv-help-card:hover {
  transform: translateY(-12px); box-shadow: 0 32px 75px rgba(124,58,237,0.17);
  border-color: rgba(124,58,237,0.16);
}

.sv-help-icon {
  width: 58px; height: 58px; border-radius: 18px;
  background: linear-gradient(135deg, var(--violet), var(--blue));
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: var(--white); margin-bottom: 20px;
  box-shadow: 0 10px 30px rgba(124,58,237,0.32);
  transition: all 0.45s var(--ease-spring);
}

.sv-help-card:hover .sv-help-icon { transform: rotate(-10deg) scale(1.1); box-shadow: 0 18px 45px rgba(124,58,237,0.50); }

.sv-help-card h4 { font-size: 17px; font-weight: 700; color: var(--text-dark); margin-bottom: 11px; }
.sv-help-card p  { color: var(--text-muted); font-size: 14px; line-height: 1.8; }

/* Process */
.sv-process {
  padding: 110px 0; background: var(--navy-mid);
  position: relative; overflow: hidden;
}

.sv-process::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 15% 50%, rgba(124,58,237,0.14) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 85% 50%, rgba(59,130,246,0.10) 0%, transparent 60%);
  pointer-events: none;
}

.sv-process-grid {
  display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0; align-items: center; position: relative; z-index: 2;
}

.sv-proc-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.09);
  border-radius: 26px; padding: 36px 26px; text-align: center;
  transition: all 0.45s var(--ease-spring); position: relative; overflow: hidden;
  cursor: default;
}

.sv-proc-card::before {
  content: ''; position: absolute; inset: -1px;
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(124,58,237,0.4), rgba(59,130,246,0.3));
  opacity: 0; transition: opacity 0.4s; z-index: -1;
}

.sv-proc-card:hover { background: rgba(255,255,255,0.09); transform: translateY(-14px); }
.sv-proc-card:hover::before { opacity: 1; }

.sv-proc-num {
  width: 62px; height: 62px; border-radius: 50%;
  background: linear-gradient(135deg, var(--violet), var(--blue));
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 900; color: var(--white);
  margin: 0 auto 20px;
  box-shadow: 0 12px 36px rgba(124,58,237,0.48);
  font-family: 'Playfair Display', serif;
  position: relative;
}

.sv-proc-num::after {
  content: ''; position: absolute; inset: -5px; border-radius: 50%;
  border: 1px solid rgba(124,58,237,0.35);
  animation: pulseRing 2.5s ease-in-out infinite;
}

@keyframes pulseRing {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50%       { opacity: 0;   transform: scale(1.35); }
}

.sv-proc-card h4 { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.sv-proc-card p  { color: rgba(255,255,255,0.52); font-size: 13px; line-height: 1.75; }

.sv-proc-arrow { padding: 0 16px; color: rgba(167,139,250,0.35); font-size: 20px; }

/* Excellence */
.sv-excellence { padding: 110px 0; background: var(--white); position: relative; }

.sv-exc-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

.sv-exc-left h2 {
  font-family: 'Playfair Display', serif;
  font-size: 44px; font-weight: 800; color: var(--text-dark);
  margin-bottom: 26px; line-height: 1.15; letter-spacing: -0.5px;
}

.sv-exc-left h2 em {
  font-style: italic;
  background: linear-gradient(90deg, var(--violet), var(--blue));
  background-size: 200% auto;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  animation: shimmer 4s linear infinite;
}

.sv-exc-left p { color: var(--text-muted); font-size: 15.5px; line-height: 1.9; margin-bottom: 18px; }

.sv-exc-quote {
  background: linear-gradient(135deg, var(--slate), #ede9ff);
  border-radius: 26px; padding: 38px;
  margin-bottom: 18px; border-left: 4px solid var(--violet);
  box-shadow: 0 20px 60px rgba(124,58,237,0.10);
  position: relative; overflow: hidden;
}

.sv-exc-quote::before {
  content: '"'; position: absolute; top: -25px; right: 18px;
  font-family: 'Playfair Display', serif; font-size: 150px;
  color: rgba(124,58,237,0.07); line-height: 1; pointer-events: none;
}

.sv-exc-quote i { font-size: 24px; color: var(--violet); opacity: 0.4; margin-bottom: 16px; display: block; }
.sv-exc-quote p { color: var(--text-mid); font-size: 15px; line-height: 1.85; font-style: italic; margin-bottom: 16px; }
.sv-exc-quote h4 { color: var(--violet); font-weight: 800; font-size: 13.5px; }

.sv-exc-tag {
  display: flex; align-items: center; gap: 14px;
  padding: 15px 20px;
  background: var(--slate); border: 1px solid rgba(124,58,237,0.08);
  border-radius: 13px; margin-bottom: 11px;
  font-weight: 600; color: var(--text-dark); font-size: 14.5px;
  transition: all 0.35s var(--ease-spring);
}

.sv-exc-tag:hover {
  background: var(--white); border-color: rgba(124,58,237,0.22);
  transform: translateX(8px);
  box-shadow: 0 8px 24px rgba(124,58,237,0.10);
}

.sv-exc-tag i { color: var(--cyan); font-size: 18px; filter: drop-shadow(0 0 8px rgba(0,212,170,0.45)); }

/* CTA */
.sv-cta {
  padding: 120px 0; background: var(--navy);
  text-align: center; position: relative; overflow: hidden;
}

.sv-cta::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 30% 50%, rgba(124,58,237,0.2) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 75% 40%, rgba(59,130,246,0.15) 0%, transparent 60%);
  animation: meshShift 10s ease-in-out infinite alternate;
}

.sv-cta-dots {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(124,58,237,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124,58,237,0.05) 1px, transparent 1px);
  background-size: 60px 60px; pointer-events: none;
}

.sv-cta-inner { position: relative; z-index: 2; max-width: 800px; margin: 0 auto; }

.sv-cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: 54px; font-weight: 800; color: var(--white);
  margin-bottom: 20px; line-height: 1.1; letter-spacing: -0.5px;
}

.sv-cta h2 span {
  background: linear-gradient(90deg, var(--violet-soft), #60a5fa);
  background-size: 200% auto;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  font-style: italic; animation: shimmer 4s linear infinite;
}

.sv-cta p { color: rgba(255,255,255,0.62); font-size: 17.5px; margin-bottom: 48px; line-height: 1.85; font-weight: 300; }

.sv-cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.sv-cta-btn-white {
  padding: 18px 50px; background: var(--white); color: var(--violet);
  border-radius: 50px; font-weight: 800; font-size: 15px; text-decoration: none;
  transition: all 0.4s var(--ease-spring);
  box-shadow: 0 18px 50px rgba(0,0,0,0.22);
}

.sv-cta-btn-white:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 28px 70px rgba(0,0,0,0.30);
  color: var(--navy);
}

.sv-cta-btn-outline {
  padding: 17px 50px;
  border: 2px solid rgba(255,255,255,0.25); color: rgba(255,255,255,0.9);
  border-radius: 50px; font-weight: 700; font-size: 15px; text-decoration: none;
  backdrop-filter: blur(14px); background: rgba(255,255,255,0.06);
  transition: all 0.35s var(--ease-spring);
}

.sv-cta-btn-outline:hover {
  background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.5);
  transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.15);
}

/* Approach */
.sv-approach { padding: 110px 0; background: var(--white); }
.sv-approach-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }

.sv-ap-card {
  border-left: 3px solid transparent;
  border-image: linear-gradient(180deg, var(--violet), var(--blue)) 1;
  padding: 30px 28px;
  background: var(--slate);
  border-radius: 0 20px 20px 0;
  transition: all 0.4s var(--ease-spring);
  position: relative; cursor: default;
}

.sv-ap-card:hover {
  background: var(--off-white); transform: translateX(10px);
  box-shadow: 0 14px 40px rgba(124,58,237,0.12);
}

.sv-ap-num {
  font-family: 'Playfair Display', serif; font-size: 44px; font-weight: 900;
  background: linear-gradient(135deg, var(--violet), var(--blue));
  background-size: 200% auto;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  animation: shimmer 4s linear infinite;
  margin-bottom: 13px; line-height: 1;
}

.sv-ap-card h4 { font-size: 16px; font-weight: 700; color: var(--text-dark); margin-bottom: 9px; }
.sv-ap-card p  { color: var(--text-muted); font-size: 13.5px; line-height: 1.8; }

/* Challenges alt */
.sv-challenges-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }

.sv-ch-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07);
  border-radius: 17px; padding: 32px 26px;
  transition: all 0.4s var(--ease-spring); position: relative; overflow: hidden; cursor: default;
}

.sv-ch-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: linear-gradient(90deg, var(--violet), var(--cyan));
  transform: scaleX(0); transform-origin: left; transition: transform 0.45s var(--ease-spring);
}

.sv-ch-card:hover::before { transform: scaleX(1); }
.sv-ch-card:hover {
  background: rgba(255,255,255,0.07); transform: translateY(-9px);
  border-color: rgba(124,58,237,0.22); box-shadow: 0 22px 55px rgba(0,0,0,0.28);
}

.sv-ch-card h4 { font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 9px; }
.sv-ch-card p  { color: rgba(255,255,255,0.50); font-size: 13.5px; line-height: 1.75; }

/* Service detail hero */
.service-hero {
  height: 100vh;
  background: url('../images/service1.png') center/cover no-repeat;
  position: relative; display: flex; align-items: center; justify-content: center; text-align: center;
}

.service-overlay { position: absolute; inset: 0; background: rgba(0,20,60,0.78); }

.service-content { position: relative; z-index: 2; max-width: 900px; color: var(--white); }

.service-tag {
  display: inline-block; padding: 12px 30px; border-radius: 50px;
  background: rgba(0,255,180,0.1); border: 1px solid rgba(0,255,180,0.35);
  color: #00ffc3; font-size: 12px; letter-spacing: 2.5px; font-weight: 800;
  text-transform: uppercase;
}

.service-content h1 { font-size: 70px; line-height: 1.08; margin: 28px 0; letter-spacing: -1px; }
.service-content p  { font-size: 19px; color: rgba(255,255,255,0.78); max-width: 680px; margin: auto; line-height: 1.8; }

.service-buttons { margin-top: 40px; display: flex; justify-content: center; gap: 18px; }

/* Responsive sv */
@media (max-width: 1200px) { .sv-programs-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 1100px) {
  .sv-hero-content { grid-template-columns: 1fr; }
  .sv-hero-right   { display: none; }
  .sv-hero-left h1 { font-size: 50px; }
  .sv-expertise-grid, .sv-challenges-grid, .sv-help-grid, .sv-approach-grid { grid-template-columns: 1fr 1fr; }
  .sv-exc-inner { grid-template-columns: 1fr; gap: 48px; }
  .sv-process-grid { grid-template-columns: 1fr 1fr; gap: 18px; }
  .sv-proc-arrow { display: none; }
}
@media (max-width: 768px) {
  .sv-hero-left h1 { font-size: 36px; }
  .sv-section-head h2, .sv-exc-left h2 { font-size: 30px; }
  .sv-cta h2 { font-size: 32px; }
  .sv-expertise-grid, .sv-challenges-grid, .sv-help-grid, .sv-approach-grid, .sv-process-grid, .sv-programs-grid { grid-template-columns: 1fr; }
  .sv-hero-btns, .sv-cta-btns { flex-direction: column; align-items: center; }
}


/* ===================================================
   ADVISOR PHOTO CLOUD — ENHANCED (Full Animation + Mobile Cards)
=================================================== */
.advisor-cloud-section {
  position: relative;
  padding: 120px 5%;
  background-color: #fcfbf7;
  overflow: hidden;
}

.acs-glow1, .acs-glow2 {
  position: absolute; border-radius: 50%; filter: blur(100px);
  pointer-events: none; opacity: 0.35;
}
.acs-glow1 { width: 400px; height: 400px; top: -120px; left: -100px; background: rgba(108,92,231,0.25); animation: morphBlob 16s ease-in-out infinite; }
.acs-glow2 { width: 360px; height: 360px; bottom: -120px; right: -80px; background: rgba(201,168,76,0.18); animation: morphBlob 12s ease-in-out infinite reverse; }

.advisor-cloud-container {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  max-width: 1400px;
  margin: 0 auto;
  align-items: center;
  gap: 80px;
}

.cloud-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 800; letter-spacing: 3px; text-transform: uppercase;
  color: #6c5ce7; margin-bottom: 18px;
}

.cloud-title {
  font-family: Georgia, serif;
  font-size: 54px; color: #1a1a1a; line-height: 1.1; margin-bottom: 25px;
}
.cloud-title span {
  background: linear-gradient(90deg, #6c5ce7, #c9a84c);
  background-size: 200% auto;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  animation: shimmer 6s linear infinite;
}

.cloud-desc { font-size: 19px; color: #555; line-height: 1.7; max-width: 460px; margin-bottom: 35px; }

/* PHOTO CLOUD GRID */
.advisor-photo-cloud {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px 40px;
  padding: 40px 0;
}

/* CARD WRAPPER — entrance reveal (opacity/translateY, no transform clash) */
.cloud-photo-item {
  position: relative;
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(.34,1.56,.64,1), transform 0.7s cubic-bezier(.34,1.56,.64,1);
}
.cloud-photo-item.visible { opacity: 1; transform: translateY(0); }

/* scattered offset (desktop only) */
.cloud-photo-item:nth-child(even) .cloud-photo-circle { margin-top: 35px; }
.cloud-photo-item:nth-child(odd)  .cloud-photo-circle { margin-top: -25px; }

/* CIRCLE — continuous float */
.cloud-photo-circle {
  position: relative;
  width: 130px; height: 130px;
  border-radius: 50%;
  overflow: hidden;
  cursor: pointer;
  border: 4px solid #fff;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
  background: #eee;
  animation: cloudFloat 6s ease-in-out infinite;
  transition: transform 0.5s cubic-bezier(0.2,1,0.3,1), box-shadow 0.4s, border-color 0.4s;
}
.cloud-photo-item:nth-child(1)  .cloud-photo-circle { animation-delay: 0s; }
.cloud-photo-item:nth-child(2)  .cloud-photo-circle { animation-delay: -1s; }
.cloud-photo-item:nth-child(3)  .cloud-photo-circle { animation-delay: -2s; }
.cloud-photo-item:nth-child(4)  .cloud-photo-circle { animation-delay: -3s; }
.cloud-photo-item:nth-child(5)  .cloud-photo-circle { animation-delay: -4s; }
.cloud-photo-item:nth-child(6)  .cloud-photo-circle { animation-delay: -5s; }
.cloud-photo-item:nth-child(7)  .cloud-photo-circle { animation-delay: -0.5s; }
.cloud-photo-item:nth-child(8)  .cloud-photo-circle { animation-delay: -1.5s; }
.cloud-photo-item:nth-child(9)  .cloud-photo-circle { animation-delay: -2.5s; }
.cloud-photo-item:nth-child(10) .cloud-photo-circle { animation-delay: -3.5s; }
.cloud-photo-item:nth-child(11) .cloud-photo-circle { animation-delay: -4.5s; }

@keyframes cloudFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%       { transform: translateY(-14px) rotate(2deg); }
}

/* rotating gradient ring on hover */
.cloud-photo-circle::before {
  content: '';
  position: absolute; inset: -5px; border-radius: 50%;
  background: conic-gradient(from 0deg, #6c5ce7, #c9a84c, #6c5ce7);
  opacity: 0; transition: opacity 0.4s;
  animation: spin 4s linear infinite;
  z-index: -1;
}

.cloud-photo-circle img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.6s cubic-bezier(0.2,1,0.3,1);
}

.cloud-photo-item:hover .cloud-photo-circle {
  animation-play-state: paused;
  transform: scale(1.12) !important;
  z-index: 10;
  box-shadow: 0 20px 45px rgba(108,92,231,0.30);
  border-color: #6c5ce7;
}
.cloud-photo-item:hover .cloud-photo-circle::before { opacity: 1; }
.cloud-photo-item:hover .cloud-photo-circle img { transform: scale(1.1); }

/* INFO — overlay reveal on hover (desktop), card body (mobile) */
.cloud-photo-info {
  margin-top: 16px;
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.35s, transform 0.35s;
  pointer-events: none;
}
.cloud-photo-item:hover .cloud-photo-info { opacity: 1; transform: translateY(0); }
.cloud-photo-info h4 { font-size: 14px; font-weight: 700; color: #1a1a1a; margin-bottom: 4px; }
.cloud-photo-info p  { font-size: 11.5px; color: #6c5ce7; font-weight: 600; line-height: 1.4; max-width: 160px; margin: 0 auto 8px; }
.cloud-view-btn {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase;
  color: #fff; background: linear-gradient(135deg, #6c5ce7, #c9a84c);
  padding: 6px 14px; border-radius: 50px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .advisor-photo-cloud { grid-template-columns: repeat(3, 1fr); gap: 50px 24px; }
}

@media (max-width: 900px) {
  .advisor-cloud-container { grid-template-columns: 1fr; text-align: center; gap: 50px; }
  .cloud-desc { margin: 0 auto 40px; }
  .cloud-title { font-size: 38px; }
}

/* MOBILE — clean info cards, no floating, info always visible */
@media (max-width: 700px) {
  .advisor-photo-cloud {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 16px;
    max-width: 480px;
    margin: 0 auto;
  }
  .cloud-photo-item:nth-child(even) .cloud-photo-circle,
  .cloud-photo-item:nth-child(odd)  .cloud-photo-circle { margin-top: 0; }

  .cloud-photo-circle {
    width: 100%; aspect-ratio: 1/1; height: auto;
    border-radius: 22px;
    animation: none;
    box-shadow: 0 8px 24px rgba(0,0,0,0.07);
  }
  .cloud-photo-circle::before { display: none; }

  .cloud-photo-info { opacity: 1; transform: none; pointer-events: auto; }
  .cloud-photo-info p { max-width: 100%; }

  .cloud-photo-item:active .cloud-photo-circle { transform: scale(0.97); }
}

@media (max-width: 420px) {
  .cloud-title { font-size: 30px; }
  .cloud-desc { font-size: 15px; }
}


/* =====================================================
   PB HERO SECTION
===================================================== */
/* ===== HERO + COLLAGE BACKGROUND PART START =====
   Yahan se hero section ki height aur collage (background) image
   ka size/zoom control hota hai.
*/
.pb-hero {
  position: relative; width: 100%; min-height: 78vh;   /* EDIT: poori hero section ki height — number kam karoge to chota, zyada karoge to bada */
  display: flex; flex-direction: column; overflow: hidden;
  font-family: 'Outfit', sans-serif;
  background: #060f25;
}

.pb-bg            { position: absolute; inset: 0; z-index: 0; }
.pb-bg img        {
  width: 100%; height: 100%;
  object-fit: cover;       /* EDIT: "cover" rakhna — agar collage ko zoom karke crop karna hai (zoom-in jaisa) to scale add karo niche, agar pura collage chhota dikhana hai bina crop ke to "contain" kar do */
  object-position: center; /* EDIT: collage ke kis hisse pe focus rakhna hai — "top"/"bottom"/"center" se control hota hai */
  transform: scale(1);     /* EDIT: collage ko zoom-in karna ho to 1.1/1.2 kar do, zoom-out (chota) chahiye to 0.9/0.8 kar do */
  display: block;
  filter: brightness(1.6);
}

.pb-bg::after{
    content:"";
    position:absolute;
    top:50%;
    left:65%;
    transform:translate(-50%,-50%);
    width:500px;
    height:500px;
    border-radius:50%;
    background:radial-gradient(
        circle,
        rgba(200,168,93,0.45) 0%,
        rgba(200,168,93,0.18) 35%,  
        transparent 75%
    );
    filter:blur(80px);
    animation: treeGlow 4s ease-in-out infinite alternate;
    pointer-events:none;
}



/* ===== HERO + COLLAGE BACKGROUND PART END ===== */

.pb-overlay{
position:absolute;
inset:0;
background:
linear-gradient(
135deg,
rgba(13,27,76,.75) 0%,
rgba(13,27,76,.55) 45%,
rgba(106,74,142,.35) 100%
);
z-index:1;
}

.pb-glow1         { position: absolute; top: -120px; right: -90px; width: 550px; height: 550px; background: radial-gradient(circle, rgba(0,120,255,0.22) 0%, transparent 65%); z-index: 2; pointer-events: none; animation: morphBlob 14s ease-in-out infinite; }
.pb-glow2         { position: absolute; bottom: -90px; left: -70px; width: 460px; height: 460px; background: radial-gradient(circle, rgba(0,210,140,0.13) 0%, transparent 65%); z-index: 2; pointer-events: none; animation: morphBlob 10s ease-in-out infinite reverse; }

.pb-main {
  position: relative; z-index: 5; flex: 1;
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
  padding: 90px 24px 36px;
}

.pb-tag {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, rgba(0,210,140,0.18), rgba(0,180,120,0.10));
  border: 1.5px solid rgba(0,210,140,0.50); color: #00d48c;
  font-size: 15px; font-weight: 800; letter-spacing: 3px; text-transform: uppercase;
  padding: 14px 38px; border-radius: 50px; margin-bottom: 28px;
  box-shadow: 0 0 36px rgba(0,210,140,0.28), 0 4px 22px rgba(0,210,140,0.16);
  text-shadow: 0 0 22px rgba(0,210,140,0.45);
  opacity: 0; transform: translateY(40px);
  animation: fadeUp 1s ease 0.2s forwards;
}
.pb-tag::before, .pb-tag::after { content: '✦'; font-size: 13px; }

.pb-logo-card{
width:220px;
height:220px;

background:
rgba(255,255,255,.92);

backdrop-filter:blur(20px);

border-radius:30px;

border:1px solid rgba(255,255,255,.4);

box-shadow:
0 25px 80px rgba(0,0,0,.35);

padding:18px;
}

.pb-logo-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.pb-logo-divider {
  display: flex; align-items: center; justify-content: center;
  gap: 14px;
  margin: 0 auto 26px;
  opacity: 0; transform: translateY(40px);
  animation: fadeUp 1s ease 0.35s forwards;
}

.pb-logo-divider::before,
.pb-logo-divider::after {
  content: '';
  width: 70px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.pb-logo-divider::after { background: linear-gradient(90deg, var(--gold), transparent); }

.pb-logo-divider span {
  color: var(--gold);
  font-size: 16px;
  transform: rotate(45deg);
}

@media (max-width: 600px) {
  .pb-logo-card { width: 140px; height: 140px; border-radius: 20px; }
  .pb-logo-divider::before, .pb-logo-divider::after { width: 40px; }
}

/* ===== HERO HEADING ("Human-Centered. Outcome-Driven.") PART START ===== */
.pb-h1{
font-family:'Playfair Display',serif;
font-size:clamp(3rem,7vw,6rem);
line-height:1;
font-weight:700;

background:linear-gradient(
180deg,
#fff,
#f7f4ed 30%,
#c8a85d 100%
);

-webkit-background-clip:text;
-webkit-text-fill-color:transparent;

text-shadow:
0 10px 40px rgba(0,0,0,.3);
}
/* ===== HERO HEADING PART END ===== */

.pb-line {
  width: 64px; height: 3px;
  background: linear-gradient(90deg, #1a9eff, #00d48c);
  margin: 18px auto 20px; border-radius: 3px;
  position: relative; overflow: hidden;
}

.pb-line::after {
  content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.7), transparent);
  animation: btnShine 2.5s ease infinite 2s;
}

.pb-sub {
  font-size: clamp(0.88rem, 2vw, 1.05rem);
  color: rgba(255,255,255,0.58); font-weight: 500; letter-spacing: 2.5px; margin-bottom: 36px;
  opacity: 0; transform: translateY(40px);
  animation: fadeUp 1s ease 0.8s forwards;
}

.hero-short-desc {
  max-width: 840px; margin: 28px auto;
  font-size: 21px; line-height: 1.8;
  font-family: 'Outfit', sans-serif; font-weight: 500;
  color: rgba(255,255,255,0.93); text-align: center;
  text-shadow: 0 2px 16px rgba(0,0,0,0.3);
  opacity: 0; transform: translateY(40px);
  animation: fadeUp 1s ease 1.1s forwards;
}

.pb-ticker {
  position: relative; z-index: 5;
  background: rgba(255,255,255,0.04);
  border-top: 1px solid rgba(255,255,255,0.10);
  border-bottom: 1px solid rgba(255,255,255,0.10);
  height: 48px; overflow: hidden;
  display: flex; align-items: center;
}

.pb-track {
  display: flex; align-items: center; white-space: nowrap;
  animation: pbScroll 22s linear infinite;
}

@keyframes pbScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

.pb-item {
  display: inline-flex; align-items: center;
  font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(255,255,255,0.72); padding: 0 30px;
}
.pb-item::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: #1a9eff; margin-right: 30px; }

.pb-stats {
  position: relative; z-index: 5;
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: rgba(5,12,30,0.75);
  border-top: 1px solid rgba(255,255,255,0.07);
}

.pb-stat {
  padding: 24px 12px 20px; text-align: center;
  border-right: 1px solid rgba(255,255,255,0.07);
  transition: background 0.3s;
}
.pb-stat:hover { background: rgba(255,255,255,0.04); }

.pb-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 4vw, 2.9rem);
  background: var(--grad-primary); background-size: 200% auto;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  animation: shimmer 4s linear infinite;
  letter-spacing: 2px;
}

.pb-plus  { color: #00d48c; }
.pb-slabel { font-size: 10px; color: rgba(255,255,255,0.45); font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-top: 6px; }

@media (max-width: 720px) {
  .pb-stats { grid-template-columns: repeat(2,1fr); }
  .pb-stat:nth-child(2) { border-right: none; }
  .pb-h1   { letter-spacing: 4px; }
  .pb-main { padding: 60px 16px 28px; }
}


/* =====================================================
   HOVER TILT EFFECT
   — Adds 3D tilt on cards via JS
===================================================== */
[data-tilt] {
  transform-style: preserve-3d;
  transform: perspective(1000px);
  transition: transform 0.1s linear;
  will-change: transform;
}

[data-tilt] .tilt-child { transform: translateZ(25px); }


/* =====================================================
   SCROLL REVEAL — Intersection Observer base classes
===================================================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s var(--ease-spring);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.8s var(--ease-spring);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.8s var(--ease-spring);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

.reveal-scale {
  opacity: 0;
  transform: scale(0.88);
  transition: all 0.8s var(--ease-spring);
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* Stagger delays */
.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; }
.reveal-delay-5 { transition-delay: 0.5s; }


/* =====================================================
   RIPPLE EFFECT
   — Add .ripple class to any clickable element
===================================================== */
.ripple {
  position: relative; overflow: hidden;
}

.ripple-wave {
  position: absolute; border-radius: 50%;
  background: rgba(255,255,255,0.25);
  width: 10px; height: 10px;
  transform: scale(0);
  animation: ripple 0.7s linear;
  pointer-events: none;
}


/* =====================================================
   GLOWING TEXT EFFECT
   — .glow-text for neon headings
===================================================== */
.glow-text {
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary));
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 4s linear infinite;
  filter: drop-shadow(0 0 20px rgba(111,79,255,0.4));
}


/* =====================================================
   COUNTER ANIMATION
   — .counter elements auto-animate with JS
===================================================== */
.counter {
  display: inline-block;
  animation: countUp 0.8s var(--ease-spring) both;
}


/* =====================================================
   LOADING SKELETON (optional)
===================================================== */
.skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e8 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s linear infinite;
  border-radius: 8px;
}


/* =====================================================
   CUSTOM CURSOR (optional — enable via JS)
===================================================== */
.custom-cursor {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--primary);
  position: fixed; z-index: 99999;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background 0.2s;
}

.custom-cursor.hover {
  width: 36px; height: 36px;
  background: rgba(123,79,166,0.20);
  border: 2px solid var(--primary);
}

.cursor-ring {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(123,79,166,0.50);
  position: fixed; z-index: 99998;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: all 0.15s ease;
}


/* =====================================================
   PAGE TRANSITION OVERLAY
===================================================== */
.page-transition {
  position: fixed; inset: 0; z-index: 99999;
  background: var(--grad-primary);
  transform: translateY(100%);
  pointer-events: none;
}

.page-transition.active { animation: pageSlide 0.6s var(--ease-spring) forwards; }

@keyframes pageSlide {
  0%   { transform: translateY(100%); }
  50%  { transform: translateY(0); }
  100% { transform: translateY(-100%); }
}


/* =====================================================
   MAGNETIC FOLLOW EFFECT (JS companion)
   — data-attract elements follow cursor
===================================================== */
[data-attract] {
  transition: transform 0.3s var(--ease-spring);
  will-change: transform;
}


/* =====================================================
   GLASSMORPHISM UTILITY CARDS
===================================================== */
.glass-card {
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border: 1px solid rgba(255,255,255,0.85);
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 50px rgba(123,79,166,0.10), 0 4px 16px rgba(0,0,0,0.04);
  transition: all 0.45s var(--ease-spring);
}

.glass-card:hover {
  background: rgba(255,255,255,0.88);
  box-shadow: 0 28px 80px rgba(123,79,166,0.18), 0 8px 24px rgba(0,0,0,0.06);
  transform: translateY(-8px);
}

.glass-card-dark {
  background: rgba(6,12,30,0.65);
  backdrop-filter: blur(20px) saturate(130%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
  transition: all 0.45s var(--ease-spring);
}

.glass-card-dark:hover {
  background: rgba(6,12,30,0.80);
  border-color: rgba(123,79,166,0.25);
  box-shadow: 0 32px 80px rgba(0,0,0,0.45), 0 0 60px rgba(123,79,166,0.15);
  transform: translateY(-8px);
}


/* =====================================================
   SCROLL PROGRESS BAR
===================================================== */
.scroll-progress {
  position: fixed; top: 0; left: 0; z-index: 99999;
  height: 3px;
  background: var(--grad-primary);
  background-size: 300% 100%;
  animation: gradientShift 4s ease infinite;
  width: 0%;
  transition: width 0.1s linear;
  box-shadow: 0 0 10px rgba(111,79,255,0.5);
}


/* =====================================================
   TOOLTIP
===================================================== */
[data-tooltip] { position: relative; cursor: help; }

[data-tooltip]::after {
  content: attr(data-tooltip);
  position: absolute; bottom: calc(100% + 8px); left: 50%;
  transform: translateX(-50%) translateY(4px);
  padding: 8px 14px; border-radius: 10px;
  background: rgba(15,12,40,0.96);
  color: var(--white); font-size: 12.5px; font-weight: 500;
  white-space: nowrap;
  pointer-events: none; opacity: 0;
  transition: all 0.25s var(--ease-spring);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  backdrop-filter: blur(10px);
  z-index: 1000;
}

[data-tooltip]:hover::after {
  opacity: 1; transform: translateX(-50%) translateY(0);
}


/* =====================================================
   FOCUS STYLES — Accessibility
===================================================== */
:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
  border-radius: 4px;
}

button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 4px;
  box-shadow: 0 0 0 6px rgba(123,79,166,0.15);
}

.hero-btn{
display:inline-flex;
align-items:center;
justify-content:center;

padding:18px 48px;

border-radius:60px;

background:
linear-gradient(
135deg,
#6e4a8e,
#c8a85d
);

color:#fff;

font-weight:700;

box-shadow:
0 15px 40px rgba(200,168,93,.30);

transition:.4s;
}

.hero-btn:hover{
transform:translateY(-4px);
box-shadow:
0 20px 60px rgba(200,168,93,.45);
}


/* =====================================================
   RESPONSIVE.CSS — You Matter Consulting Services
   =====================================================
   Kaise use karna hai:
   <head> mein style.css ke BAAD link karo:
   <link rel="stylesheet" href="css/responsive.css" />

   Breakpoints:
   - Mobile      : max-width 480px
   - Mobile Large: max-width 600px
   - Tablet      : max-width 768px
   - Tablet Large: max-width 992px
   - Desktop     : max-width 1200px
===================================================== */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 9999;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #1a1a1a;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* X shape jab open ho */
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* =====================================================
   DESKTOP (max 1200px) — small tweaks
===================================================== */
@media (max-width: 1200px) {

  /* Navbar */
  .nav-menu { gap: 20px; }
  .nav-menu a { font-size: 14px; }
  .nav-phone { display: none; }

  /* Hero */
  .hero-title,
  .pb-h1 { font-size: 64px; }

  /* Scroll Story */
  .story-img-wrap { width: 420px; height: 420px; }

  /* Services grid */
  .services-grid { grid-template-columns: repeat(2, 1fr); }

  /* Process */
  .process-timeline { grid-template-columns: repeat(2, 1fr); }
  .process-timeline::before { display: none; }

  /* Advisor section */
  .advisor-shell-body { grid-template-columns: 180px 1fr; }
}


/* =====================================================
   TABLET LARGE (max 992px)
===================================================== */
@media (max-width: 992px) {

  /* ── Navbar ── */
  .hamburger { display: flex; }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    gap: 0;
    padding: 90px 0 30px;
    box-shadow: -4px 0 30px rgba(0,0,0,0.10);
    transition: right 0.35s ease;
    z-index: 9998;
    overflow-y: auto;
  }

  .nav-menu.open { right: 0; }

  .nav-menu li { border-bottom: 1px solid #f0f0f0; }

  .nav-menu a {
    display: block;
    padding: 14px 24px;
    font-size: 15px;
    color: #1a1a1a;
  }

  /* Dropdown inside mobile menu */
.dropdown-menu {
  position: static !important;
  width: 100% !important;
  box-shadow: none !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  display: none;
  background: #f8f8f8;
  transform: none !important;  /* YE ADD KAR */
  left: auto !important;       /* YE ADD KAR */
}

  .dropdown.open .dropdown-menu { display: block; }

  .dropdown-menu a { padding: 11px 36px !important; font-size: 13px !important; }

  /* Overlay when menu is open */
  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.35);
    z-index: 9997;
  }
  .nav-overlay.open { display: block; }

  /* Nav actions — hide on tablet */
  .nav-actions { display: none; }

  /* ── Hero ── */
  .hero-title,
  .pb-h1 { font-size: 52px; }

  .pb-stats { grid-template-columns: repeat(2, 1fr); }

  /* Hero grid — stack */
  .hero-container,
  .pb-main { text-align: center; }

  .hero-buttons { justify-content: center; }
  .hero-features { justify-content: center; }

  /* Hide floating decorative elements */
  .hero-image-wrapper,
  .quote-card,
  .experience-card,
  .hero-shape-green,
  .hero-shape-purple,
  .hero-dot { display: none; }

  /* ── Scroll Story ── */
  .scroll-story { min-height: auto; padding: 80px 0; }

  .scroll-story-inner {
    position: relative !important;
    height: auto !important;
    grid-template-columns: 1fr !important;
    gap: 40px;
    padding: 0 20px;
  }

  .story-img-wrap { width: 280px; height: 280px; margin: 0 auto; }

  .story-step {
    position: relative !important;
    opacity: 1 !important;
    transform: none !important;
    margin-bottom: 50px;
    min-height: auto !important;
  }

  .story-title { font-size: 2rem; }

  /* Marshall story — same fix */
  .marshall-story .story-left { order: unset; }
  .marshall-story .story-right { order: unset; }

  /* ── Services ── */
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .section-title { font-size: 36px; }
  .services-section { padding: 80px 0; }

  /* ── Philosophy ── */
  .philosophy-grid { grid-template-columns: repeat(2, 1fr); }
  .philosophy-header h2 { font-size: 2.8rem; }

  /* ── Process ── */
  .process-timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .process-timeline::before { display: none; }

  /* ── Testimonials ── */
  .testimonials-grid { grid-template-columns: 1fr 1fr; gap: 20px; }

  /* ── FAQ ── */
  .faq-list { max-width: 100%; }

  /* ── CTA ── */
  .premium-cta-title { font-size: 42px; }
  .premium-cta-box { padding: 60px 30px; }
  .premium-cta-stats { gap: 30px; }

  /* ── Resources ── */
  .resources-grid { grid-template-columns: repeat(2, 1fr); }

  /* ── Contact ── */
  .contact-wrapper { grid-template-columns: 1fr; }

  /* ── Footer ── */
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }

  /* ── Advisor ── */
  .advisor-shell-body {
    grid-template-columns: 1fr;
  }

  .advisor-list {
    max-height: 200px;
    border-right: none;
    border-bottom: 1px solid #e0dbd2;
  }

  .advisor-detail { max-height: none; }

  /* ── PB Hero stats ── */
  .pb-stat:nth-child(2) { border-right: none; }
}


/* =====================================================
   TABLET (max 768px)
===================================================== */
@media (max-width: 768px) {

  /* ── Navbar ── */
  .navbar { height: 70px; }

  .logo h3 { font-size: 16px; }
  .logo span { font-size: 12px; }

  /* ── PB Hero ── */
  .pb-h1 { font-size: 38px; letter-spacing: 3px; }
  .pb-tag { font-size: 12px; padding: 10px 20px; }
  .pb-sub { font-size: 13px; }
  .hero-short-desc { font-size: 16px; }
  .pb-main { padding: 60px 16px 24px; }
  .pb-stats { grid-template-columns: repeat(2, 1fr); }

  /* ── Hero (index) ── */
  .hero-title { font-size: 38px; }
  .hero-description { font-size: 16px; }
  .hero-subtitle { font-size: 12px; }

  /* ── Section titles ── */
  .section-title { font-size: 28px; }
  .section-heading h2 { font-size: 2.2rem; }
  .section-description { font-size: 15px; }

  /* ── Services ── */
  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 28px 22px; }

  /* ── Philosophy ── */
  .philosophy-grid { grid-template-columns: 1fr; }
  .philosophy-header h2 { font-size: 2rem; }
  .philosophy-quote { padding: 30px 20px; }
  .philosophy-quote h3 { font-size: 1.4rem; }

  /* ── Process ── */
  .process-timeline { grid-template-columns: 1fr; }
  .process-section { padding: 80px 0; }

  /* ── Testimonials ── */
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonials-section { padding: 80px 0; }
  .testimonial-card { padding: 28px 20px; }

  /* ── FAQ ── */
  .faq-section { padding: 80px 0; }
  .faq-question { padding: 18px 20px; font-size: 15px; }
  .faq-answer p { padding: 0 20px 18px; font-size: 14px; }

  /* ── CTA ── */
  .premium-cta { padding: 80px 0; }
  .premium-cta-box { padding: 50px 20px; border-radius: 20px; }
  .premium-cta-title { font-size: 28px; }
  .premium-cta-text { font-size: 15px; }
  .premium-cta-buttons { flex-direction: column; align-items: center; }
  .primary-btn,
  .secondary-btn { width: 100%; max-width: 300px; text-align: center; }
  .premium-cta-stats { gap: 20px; }
  .cta-stat strong { font-size: 26px; }

  /* ── Resources ── */
  .resources-section { padding: 80px 0; }
  .resources-grid { grid-template-columns: 1fr; }
  .resource-card { padding: 28px 22px; }

  /* ── Contact ── */
  .contact-section { padding: 80px 0; }
  .contact-form-card { padding: 28px 20px; }
  .contact-info-card { padding: 28px 20px; }
  .form-grid { grid-template-columns: 1fr; }

  /* ── Advisor ── */
  .advisor-section { padding: 70px 0; }
  .advisor-title { font-size: 28px; }
  .advisor-detail { padding: 18px 16px; }
  .ad-name { font-size: 17px; }
  .ad-top { padding-right: 65px; }
  .ym-logo-wrap { width: 46px; height: 46px; top: 12px; right: 12px; }
  .ad-big-avatar { width: 54px; height: 54px; }

  /* ── Footer ── */
  .footer { padding: 70px 0 28px; }
  .footer-top { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  .footer-bottom-links { justify-content: center; }

  /* ── Scroll Story ── */
  .story-img-wrap { width: 220px; height: 220px; }
  .story-title { font-size: 1.7rem; }
  .story-badge { display: none; }
  .sh-item { min-height: 80px; }

  /* ── Services (dark variant) ── */
  .services-heading h2 { font-size: 36px; }

  /* ── Trusted ── */
  .trusted { padding: 50px 0; }
  .trusted-logos { flex-direction: column; align-items: center; }
  .trusted-item { width: 100%; max-width: 300px; justify-content: center; }
}


/* =====================================================
   MOBILE LARGE (max 600px)
===================================================== */
@media (max-width: 600px) {

  /* Container padding thoda zyada */
  .container { width: calc(100% - 28px); }

  /* ── PB Hero ── */
  .pb-h1 { font-size: 30px; letter-spacing: 2px; }
  .pb-stats { grid-template-columns: repeat(2, 1fr); }
  .pb-num { font-size: 1.6rem; }

  /* ── Buttons ── */
  .sv-hero-btns,
  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .btn-primary,
  .btn-outline,
  .sv-btn-primary,
  .sv-btn-secondary {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  /* ── Section headings ── */
  .section-title { font-size: 24px; }
  .section-tag { font-size: 11px; }

  /* ── Process cards ── */
  .process-card { padding: 28px 20px; }
  .process-icon { width: 70px; height: 70px; font-size: 28px; }

  /* ── CTA ── */
  .premium-cta-title { font-size: 24px; }
  .cta-tag { font-size: 11px; }

  /* ── Contact form ── */
  .form-group input,
  .form-group select,
  .form-group textarea { padding: 14px 16px; font-size: 14px; }

  .contact-submit-btn { padding: 16px; font-size: 15px; }

  /* ── Advisor list ── */
  .ali-name { font-size: 11px; }
  .ali-role { font-size: 9px; }
  .ali-avatar { width: 30px; height: 30px; }

  /* ── Footer ── */
  .footer-socials a { width: 38px; height: 38px; }
  .footer-links h4 { font-size: 15px; }
  .footer-links a { font-size: 13px; }
}


/* =====================================================
   MOBILE (max 480px)
===================================================== */
@media (max-width: 480px) {

  /* ── Navbar ── */
  .navbar { height: 65px; }
  .logo h3 { font-size: 14px; }
  .logo span { display: none; }

  /* ── PB Hero ── */
  .pb-h1 { font-size: 26px; }
  .pb-tag { font-size: 10px; letter-spacing: 2px; padding: 9px 16px; }
  .hero-short-desc { font-size: 14px; line-height: 1.7; }
  .pb-btn { font-size: 12px; padding: 12px 28px; }

  /* ── Stats bar ── */
  .pb-stats { grid-template-columns: repeat(2, 1fr); }
  .pb-stat { padding: 16px 8px; }
  .pb-num { font-size: 1.4rem; }
  .pb-slabel { font-size: 9px; }

  /* ── Section headings ── */
  .section-title { font-size: 22px; line-height: 1.3; }
  .advisor-title { font-size: 24px; }
  .philosophy-header h2 { font-size: 1.6rem; }

  /* ── Service cards ── */
  .service-card { padding: 24px 18px; border-radius: 20px; }
  .service-card h3 { font-size: 18px; }

  /* ── Testimonial cards ── */
  .testimonial-card { padding: 24px 16px; border-radius: 20px; }
  .testimonial-text { font-size: 14px; }

  /* ── FAQ ── */
  .faq-item { border-radius: 16px; }
  .faq-question { font-size: 14px; padding: 16px 18px; }

  /* ── Resource cards ── */
  .resource-card { padding: 24px 18px; border-radius: 20px; }
  .resource-card h3 { font-size: 18px; }

  /* ── Contact ── */
  .contact-profile img { width: 56px; height: 56px; }
  .contact-profile h3 { font-size: 18px; }
  .contact-info-item { padding: 12px; }
  .contact-icon { width: 42px; height: 42px; font-size: 18px; }

  /* ── Philosophy ── */
  .philosophy-card-content { padding: 18px; }
  .philosophy-card h3 { font-size: 15px; }
  .philosophy-quote { padding: 24px 16px; }
  .philosophy-quote h3 { font-size: 1.2rem; }

  /* ── Advisor ── */
  .advisor-detail { padding: 14px 12px; }
  .ad-name { font-size: 15px; }
  .ad-role { font-size: 11px; }
  .ad-bio,
  .ad-point { font-size: 13px; }
  .ym-logo-wrap { width: 40px; height: 40px; top: 10px; right: 10px; }
  .ad-top { gap: 10px; padding-right: 56px; }
  .ad-big-avatar { width: 46px; height: 46px; }

  /* ── CTA box ── */
  .premium-cta-box { padding: 40px 16px; border-radius: 16px; }
  .premium-cta-title { font-size: 20px; }
  .cta-stat strong { font-size: 22px; }

  /* ── Footer ── */
  .footer { padding: 60px 0 24px; }
  .footer-top { gap: 24px; }
}


/* =====================================================
   SERVICES PAGE RESPONSIVE (services.css wale sections)
===================================================== */
@media (max-width: 992px) {
  .sv-hero-content { grid-template-columns: 1fr; }
  .sv-hero-right { display: none; }
  .sv-hero { min-height: 60vh; }
  .sv-hero-left h1 { font-size: 36px; }

  .sv-expertise-grid { grid-template-columns: repeat(2, 1fr); }
  .sv-programs-grid { grid-template-columns: repeat(2, 1fr); }
  .sv-help-grid { grid-template-columns: repeat(2, 1fr); }

  .sv-process-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .sv-proc-arrow { transform: rotate(90deg); margin: 0 auto; }

  .sv-exc-inner { grid-template-columns: 1fr; }
  .sv-exc-right { margin-top: 30px; }
}

@media (max-width: 768px) {
  .sv-hero-left h1 { font-size: 28px; }
  .sv-hero-left p { font-size: 15px; }
  .sv-badge { font-size: 11px; }

  .sv-expertise-grid { grid-template-columns: 1fr; }
  .sv-programs-grid { grid-template-columns: 1fr; }
  .sv-help-grid { grid-template-columns: 1fr; }

  .sv-challenges,
  .sv-howhelp,
  .sv-process,
  .sv-excellence { padding: 60px 0; }

  .sv-cta-inner h2 { font-size: 26px; }
  .sv-cta-btns { flex-direction: column; align-items: center; }
  .sv-cta-btn-white,
  .sv-cta-btn-outline { width: 100%; max-width: 280px; text-align: center; }
}

@media (max-width: 480px) {
  .sv-hero-left h1 { font-size: 24px; }
  .sv-hero-btns { flex-direction: column; gap: 12px; }
  .sv-btn-primary,
  .sv-btn-secondary { width: 100%; text-align: center; justify-content: center; }
  .sv-cta-inner h2 { font-size: 22px; }
}




/* =====================================================
   ABOUT MOBILE SECTION
   Paste karo style.css ke end mein
===================================================== */

/* Desktop pe hide */
.about-mob { display: none; }

/* Mobile pe show — scroll-story hide */
@media (max-width: 992px) {

  .scroll-story  { display: none; }
  .about-mob     { display: block; }

  .about-mob {
    padding: 70px 0;
    background: linear-gradient(135deg, #faf8f3 0%, #f4f2ff 100%);
  }

  .about-mob-container {
    width: calc(100% - 32px);
    margin: 0 auto;
  }

  /* Heading */
  .about-mob-heading {
    text-align: center;
    margin-bottom: 30px;
  }

  .about-mob-eyebrow {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #7b4fa6;
    font-family: 'Outfit', sans-serif;
    margin-bottom: 10px;
  }

  .about-mob-title {
    font-size: 26px;
    font-weight: 700;
    color: #1a1a1a;
    font-family: Georgia, serif;
    line-height: 1.3;
    margin-bottom: 10px;
  }

  .about-mob-title span {
    background: linear-gradient(90deg, #7b4fa6, #c9a84c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .about-mob-sub {
    font-size: 13px;
    color: #999;
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
  }

  /* Shell */
  .about-mob-shell {
    border: 1px solid #e0dbd2;
    border-radius: 18px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 12px 50px rgba(0,0,0,0.08);
    margin-bottom: 24px;
  }

  /* Shell Header */
  .about-mob-shell-head {
    padding: 14px 18px;
    border-bottom: 1px solid #e0dbd2;
    background: #f5f1ea;
  }

  .about-mob-shell-title {
    font-size: 13px;
    font-weight: 600;
    color: #1a1a1a;
    font-family: 'Outfit', sans-serif;
  }

  .about-mob-shell-hint {
    font-size: 11px;
    color: #999;
    font-family: 'Outfit', sans-serif;
    margin-top: 2px;
  }

  /* Profile */
  .about-mob-profile {
    padding: 18px 16px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    position: relative;
    padding-right: 70px;
  }

  .about-mob-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: #d8d2c5;
    border: 2px solid #e0dbd2;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .about-mob-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    position: absolute;
    inset: 0;
  }

  .about-mob-initials {
    font-size: 16px;
    font-weight: 700;
    color: #7a7060;
    font-family: 'Outfit', sans-serif;
  }

  .about-mob-name {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    font-family: Georgia, serif;
    line-height: 1.2;
    margin-bottom: 4px;
  }

  .about-mob-role {
    font-size: 11px;
    color: #666;
    font-family: 'Outfit', sans-serif;
    line-height: 1.5;
  }

  /* YM Logo */
  .about-mob-ym-logo {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    overflow: hidden;
    background: #f5f1ea;
    border: 1px solid #e0dbd2;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: ymPulse 3s ease-in-out infinite alternate;
  }

  .about-mob-ym-logo img {
    width: 80%;
    height: 80%;
    object-fit: contain;
  }

  .about-mob-ym-fallback {
    font-size: 10px;
    font-weight: 700;
    color: #7a7060;
    display: none;
  }

  /* Sep */
  .about-mob-sep {
    height: 1px;
    background: #e0dbd2;
    margin: 0 16px;
  }

  /* Body */
  .about-mob-body {
    padding: 18px 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .about-mob-bio {
    font-size: 13px;
    color: #444;
    line-height: 1.85;
    font-family: Georgia, serif;
  }

  /* Points */
  .about-mob-points {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0;
    margin: 0;
  }

  .about-mob-point {
    font-size: 13px;
    color: #444;
    font-family: Georgia, serif;
    line-height: 1.75;
    display: flex;
    align-items: flex-start;
    gap: 10px;
  }

  .about-mob-check {
    color: #4a9e6e;
    font-size: 13px;
    font-weight: 700;
    margin-top: 3px;
    flex-shrink: 0;
    font-family: 'Outfit', sans-serif;
  }

  /* Quote */
  .about-mob-quote-wrap {
    background: #f8f6ff;
    border-left: 3px solid #7b4fa6;
    border-radius: 0 12px 12px 0;
    padding: 16px 14px;
  }

  .about-mob-quote-icon {
    font-size: 36px;
    color: #7b4fa6;
    opacity: 0.3;
    line-height: 1;
    display: block;
    margin-bottom: 8px;
    font-family: Georgia, serif;
  }

  .about-mob-quote-text {
    font-size: 13px;
    color: #374151;
    line-height: 1.85;
    font-style: italic;
    font-family: Georgia, serif;
    margin-bottom: 10px;
  }

  .about-mob-quote-author {
    font-size: 12px;
    color: #7b4fa6;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
  }

  /* Approach Tags */
  .about-mob-approach-label {
    font-size: 12px;
    font-weight: 700;
    color: #1a1a1a;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
  }

  .about-mob-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .about-mob-tag {
    padding: 7px 14px;
    background: rgba(123,79,166,0.07);
    border: 1px solid rgba(111,79,255,0.2);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: #7b4fa6;
    font-family: 'Outfit', sans-serif;
  }

  /* Stats */
  .about-mob-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .about-mob-stat {
    background: #fff;
    border: 1px solid #e0dbd2;
    border-radius: 14px;
    padding: 18px 14px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.05);
  }

  .about-mob-stat strong {
    display: block;
    font-size: 26px;
    font-weight: 800;
    background: linear-gradient(90deg, #7b4fa6, #c9a84c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 4px;
  }

  .about-mob-stat span {
    font-size: 11px;
    color: #999;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
}

/* hamburger button */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 9999;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: #1a1f5e;
  border-radius: 4px;
  transition: 0.3s;
}

.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 992px) {
  .hamburger { display: flex; }
}
/* =====================================================
   CONTACT SECTION — Premium
===================================================== */
.ct-section {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(135deg, #f8f9ff 0%, #eef0ff 100%);
  overflow: hidden;
}

.ct-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(123,79,166,0.06) 2px, transparent 2px);
  background-size: 60px 60px;
  pointer-events: none;
}

.ct-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
  align-items: start;
  position: relative;
  z-index: 2;
}

/* LEFT */
.ct-title {
  font-size: 48px;
  font-weight: 800;
  color: #1a1f5e;
  line-height: 1.15;
  margin: 18px 0 20px;
}

.ct-title span {
  background: linear-gradient(90deg, #7b4fa6, #c9a84c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ct-desc {
  color: #667085;
  font-size: 16px;
  line-height: 1.85;
  margin-bottom: 40px;
  max-width: 480px;
}

.ct-info-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ct-info-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #fff;
  border: 1px solid rgba(123,79,166,0.08);
  border-radius: 18px;
  padding: 20px 22px;
  box-shadow: 0 8px 30px rgba(123,79,166,0.06);
  transition: 0.3s;
}

.ct-info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 45px rgba(123,79,166,0.12);
  border-color: rgba(111,79,255,0.2);
}

.ct-info-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, #7b4fa6, #c9a84c);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  flex-shrink: 0;
}

.ct-info-icon.whatsapp { background: linear-gradient(135deg, #25d366, #128c7e); }
.ct-info-icon.phone    { background: linear-gradient(135deg, #c9a84c, #0066cc); }
.ct-info-icon.location { background: linear-gradient(135deg, #ff6b9d, #ff4757); }

.ct-info-text h4 {
  font-size: 14px;
  font-weight: 700;
  color: #1a1f5e;
  margin-bottom: 4px;
}

.ct-info-text a {
  display: block;
  color: #667085;
  font-size: 14px;
  text-decoration: none;
  transition: 0.2s;
  margin-bottom: 2px;
}

.ct-info-text a:hover { color: #7b4fa6; }

/* RIGHT — Form */
.ct-form-wrap {
  background: #fff;
  border-radius: 28px;
  padding: 44px 40px;
  box-shadow: 0 25px 70px rgba(123,79,166,0.12);
  border: 1px solid rgba(123,79,166,0.08);
}

.ct-form-head {
  margin-bottom: 32px;
}

.ct-form-head h3 {
  font-size: 26px;
  font-weight: 800;
  color: #1a1f5e;
  margin-bottom: 8px;
}

.ct-form-head p {
  color: #667085;
  font-size: 14px;
}

.ct-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.ct-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.ct-field label {
  font-size: 13px;
  font-weight: 600;
  color: #374151;
}

.ct-field input,
.ct-field select,
.ct-field textarea {
  padding: 14px 18px;
  border: 1.5px solid #e5e7eb;
  border-radius: 12px;
  font-size: 14px;
  color: #1a1f5e;
  font-family: 'Outfit', sans-serif;
  background: #fafafa;
  transition: 0.3s;
  outline: none;
  width: 100%;
}

.ct-field input:focus,
.ct-field select:focus,
.ct-field textarea:focus {
  border-color: #7b4fa6;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(123,79,166,0.08);
}

.ct-field textarea { resize: vertical; min-height: 120px; }

.ct-submit-btn {
  width: 100%;
  padding: 18px;
  background: linear-gradient(135deg, #7b4fa6, #c9a84c);
  color: #fff;
  border: none;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 12px 35px rgba(123,79,166,0.35);
  margin-top: 6px;
}

.ct-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 45px rgba(123,79,166,0.45);
}

.ct-success {
  margin-top: 16px;
  padding: 16px 20px;
  background: rgba(74,158,110,0.1);
  border: 1px solid rgba(74,158,110,0.3);
  border-radius: 12px;
  color: #4a9e6e;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.ct-error {
  margin-top: 16px;
  padding: 16px 20px;
  background: rgba(255,71,87,0.08);
  border: 1px solid rgba(255,71,87,0.25);
  border-radius: 12px;
  color: #ff4757;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Responsive */
@media (max-width: 992px) {
  .ct-inner { grid-template-columns: 1fr; gap: 50px; }
  .ct-title { font-size: 38px; }
}

@media (max-width: 768px) {
  .ct-section { padding: 80px 0; }
  .ct-title { font-size: 30px; }
  .ct-form-wrap { padding: 30px 22px; }
  .ct-form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .ct-title { font-size: 26px; }
  .ct-form-head h3 { font-size: 22px; }
}


.advisors-section {
    background-color: #fcfaff; /* Very light purple tint */
    padding: 100px 20px;
}

.advisor-grid {
    display: grid;
    /* Laptop par 3 advisors, Tablet par 2, Mobile par 1 */
    grid-template-columns: repeat(3, 1fr); 
    gap: 40px 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.advisor-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(108, 92, 231, 0.1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}

.advisor-img-box {
    position: relative;
    width: 140px;
    height: 140px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    padding: 5px;
    border: 2px dashed #6c5ce7; /* Thrive-style dashed ring */
}

.advisor-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.advisor-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(108, 92, 231, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.3s ease;
}

.advisor-card:hover .advisor-overlay { opacity: 1; }
.advisor-card:hover { 
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(108, 92, 231, 0.15);
}

.advisor-info h4 {
    font-size: 1.25rem;
    color: #333;
    margin-bottom: 8px;
}

.advisor-info span {
    font-size: 14px;
    color: #6c5ce7;
    font-weight: 500;
}

/* Tablet Layout (2 Columns) */
@media (max-width: 991px) {
    .advisor-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Mobile Layout (1 Column) */
@media (max-width: 550px) {
    .advisor-grid { grid-template-columns: 1fr; }
}


.hero-buttons{
display:flex;
gap:18px;
justify-content:center;
flex-wrap:wrap;
margin-top:25px;
}

.hero-btn-outline{
padding:18px 48px;
border-radius:60px;
border:2px solid #c8a85d;
color:#fff;
text-decoration:none;
font-weight:700;
background:rgba(255,255,255,.05);
backdrop-filter:blur(10px);
transition:.4s;
}

.hero-btn-outline:hover{
background:#c8a85d;
color:#0d1b4c;
transform:translateY(-4px);
}


.pb-hero::after{
content:'';
position:absolute;
width:500px;
height:500px;
border-radius:50%;

background:
radial-gradient(
circle,
rgba(200,168,93,.12),
transparent 70%
);

left:calc(var(--mouse-x) - 250px);
top:calc(var(--mouse-y) - 250px);

pointer-events:none;
z-index:2;
}


/* ==========================================
   PREMIUM HERO
========================================== */

.pb-hero{
    position:relative;
    min-height:100vh;
    overflow:hidden;
    background:#0D1B4C;
    display:flex;
    flex-direction:column;
}

.pb-bg{
    position:absolute;
    inset:0;
    z-index:0;
}

.pb-bg img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
    transform:scale(1.02);
}

.pb-overlay{
    position:absolute;
    inset:0;
    background:
    linear-gradient(
        180deg,
        rgba(13,27,76,.30) 0%,
        rgba(13,27,76,.55) 50%,
        rgba(6,12,35,.92) 100%
    );
    z-index:1;
}

.pb-dots{
    position:absolute;
    inset:0;
    z-index:2;
    opacity:.55;

    background-image:
    radial-gradient(
        rgba(200,168,93,.8) 1px,
        transparent 1px
    );

    background-size:18px 18px;
}

.pb-glow1{
    position:absolute;
    width:700px;
    height:700px;
    top:-250px;
    right:-150px;
    z-index:2;

    background:
    radial-gradient(
        circle,
        rgba(110,74,142,.25),
        transparent 70%
    );
}

.pb-glow2{
    position:absolute;
    width:700px;
    height:700px;
    bottom:-300px;
    left:-200px;
    z-index:2;

    background:
    radial-gradient(
        circle,
        rgba(200,168,93,.18),
        transparent 70%
    );
}

.pb-main{
    position:relative;
    z-index:5;

    flex:1;

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;

    text-align:center;

    padding:120px 20px 70px;
}

.pb-logo-card{
    width:210px;
    height:210px;

    background:#fff;

    border-radius:28px;

    padding:18px;

    margin-bottom:25px;

    box-shadow:
    0 30px 80px rgba(0,0,0,.35);

    display:flex;
    align-items:center;
    justify-content:center;
}

.pb-logo-card img{
    width:100%;
    height:100%;
    object-fit:contain;
}

.pb-logo-divider{
    display:flex;
    align-items:center;
    justify-content:center;

    gap:18px;

    margin-bottom:25px;
}

.pb-logo-divider::before,
.pb-logo-divider::after{
    content:'';
    width:90px;
    height:1px;

    background:
    linear-gradient(
        90deg,
        transparent,
        #C8A85D
    );
}

.pb-logo-divider::after{
    background:
    linear-gradient(
        90deg,
        #C8A85D,
        transparent
    );
}

.pb-logo-divider span{
    color:#C8A85D;
    font-size:18px;
}

.pb-h1{
    font-family:'Playfair Display',serif;

    font-size:clamp(4rem,8vw,6.2rem);

    line-height:.95;

    font-weight:700;

    letter-spacing:-2px;

    margin-bottom:20px;

    background:
    linear-gradient(
        180deg,
        #ffffff,
        #f7f4ed,
        #c8a85d
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.pb-line{
    width:80px;
    height:3px;

    background:
    linear-gradient(
        90deg,
        #6E4A8E,
        #C8A85D
    );

    border-radius:50px;

    margin-bottom:25px;
}

.pb-sub{
    max-width:900px;

    color:#ffffff;

    font-size:1.2rem;

    line-height:1.8;

    margin-bottom:30px;
}

/* ==========================================
   CONTENT SECTION (NO BOX LIKE REFERENCE)
========================================== */

.hero-content-box{
    max-width:900px;
    margin:35px auto 0;
    padding:0;
    background:none;
    border:none;
    border-radius:0;
    backdrop-filter:none;
    box-shadow:none;
}

.hero-short-desc{
    max-width:820px;
    margin:0 auto 35px;

    color:#ffffff;
    text-align:center;

    font-size:22px;
    line-height:1.8;
    font-weight:400;

    text-shadow:0 2px 20px rgba(0,0,0,.35);
}

.hero-short-desc strong{
    color:#C8A85D;
    font-weight:700;
}

/* ==========================================
   BUTTONS
========================================== */

.hero-buttons{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:25px;
    flex-wrap:wrap;
}

.hero-btn{
    min-width:260px;
    height:70px;

    display:flex;
    justify-content:center;
    align-items:center;

    border-radius:60px;

    background:linear-gradient(
    90deg,
    #8B5FD1,
    #C8A85D
    );

    color:#fff;
    text-decoration:none;

    font-size:20px;
    font-weight:600;

    transition:.4s;
}

.hero-btn:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 35px rgba(200,168,93,.35);
}

.hero-btn-outline{
    min-width:260px;
    height:70px;

    display:flex;
    justify-content:center;
    align-items:center;

    border-radius:60px;

    border:2px solid rgba(255,255,255,.7);

    color:#fff;
    text-decoration:none;

    font-size:20px;
    font-weight:600;

    transition:.4s;
}

.hero-btn-outline:hover{
    background:rgba(255,255,255,.08);
    transform:translateY(-5px);
}

/* ==========================================
   FEATURE BAR
========================================== */

.hero-features{
    position:relative;
    z-index:5;

    display:grid;
    grid-template-columns:repeat(4,1fr);

    background:linear-gradient(
    90deg,
    #07132F,
    #0D1B4C,
    #07132F
    );

    border-top:1px solid rgba(255,255,255,.08);

    padding:30px 40px;
}

.hero-feature{
    display:flex;
    align-items:flex-start;

    gap:18px;

    padding:0 25px;

    border-right:1px solid rgba(200,168,93,.35);
}

.hero-feature:last-child{
    border-right:none;
}

/* ==========================================
   ICONS
========================================== */

.feature-icon{
    width:60px;
    height:60px;

    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;

    flex-shrink:0;

    font-size:26px;

    background:linear-gradient(
    135deg,
    #8B5FD1,
    #C8A85D
    );

    box-shadow:0 10px 25px rgba(0,0,0,.25);
}

/* ==========================================
   FEATURE TEXT
========================================== */

.feature-content h4{
    color:#fff;
    font-size:20px;
    font-weight:600;
    margin-bottom:8px;
}

.feature-content p{
    color:rgba(255,255,255,.75);

    font-size:14px;
    line-height:1.7;

    margin:0;
}

/* ==========================================
   MOBILE
========================================== */

@media(max-width:991px){

.hero-features{
    grid-template-columns:1fr 1fr;
}

.hero-feature{
    border-right:none;
    padding:20px;
}

.hero-short-desc{
    font-size:18px;
}

.hero-btn,
.hero-btn-outline{
    width:100%;
    max-width:320px;
}

}

@media(max-width:768px){

.hero-features{
    grid-template-columns:1fr;
}

}

/* see video colour button */
.hero-btn-outline{
    background:inherit;
}

.hero-btn,
.hero-btn-outline{
    background: linear-gradient(
        90deg,
        #8B5FD1,
        #C8A85D
    );
}

.advisors-section{
    padding:120px 0;
    background:#0D1B4C;
    position:relative;
}

.photo-cloud{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
    margin-top:60px;
}

.advisor-card{
    background:#fff;
    border-radius:24px;
    padding:30px 20px;
    text-align:center;
    cursor:pointer;
    transition:.4s ease;
}

.advisor-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 50px rgba(0,0,0,.15);
}

.advisor-photo{
    width:140px;
    height:140px;
    margin:auto;
    border-radius:50%;
    background:linear-gradient(135deg,#C8A85D,#6E4A8E);
    padding:4px;
}

.advisor-photo-inner{
    width:100%;
    height:100%;
    border-radius:50%;
    overflow:hidden;
}

.advisor-photo img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.advisor-name{
    margin-top:18px;
    font-size:20px;
    font-weight:700;
    color:#0D1B4C;
}

.advisor-role{
    color:#666;
    font-size:14px;
    margin:10px 0;
}

.advisor-view{
    color:#6E4A8E;
    font-weight:700;
}

.section-heading{
    text-align:center;
    max-width:800px;
    margin:0 auto 50px;
}

.section-heading h2{
    color:#fff;
    font-size:56px;
}

.section-heading h2 span{
    color:#C8A85D;
}

.section-heading p{
    color:#BFC3C9;
}


.heading-badge{
    font-size: 18px;
    padding: 14px 30px;
    letter-spacing: 2px;
}

.section-heading p{
    font-size: 26px;
    line-height: 1.7;
    max-width: 1000px;
    margin: 25px auto 0;
    font-weight: 500;
}


.pb-logo-title{
    margin-top:30px;
    font-size:50px;
    font-weight:700;
    letter-spacing:12px;
    text-transform:uppercase;

    background:linear-gradient(
      90deg,
      #ffffff,
      #c8a85d
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}


.logo img{
   height:88px;
   width:auto;
}


/* gallery css */
.gallery-page{
    padding:120px 8%;
    background:
    linear-gradient(
    135deg,
    #071D46,
    #0B2A63,
    #071D46
    );
}

.gallery-header{
    text-align:center;
    max-width:900px;
    margin:auto;
    margin-bottom:80px;
}

.gallery-badge{
    display:inline-block;
    padding:12px 24px;
    border-radius:50px;
    border:1px solid #C8A35F;
    color:#C8A35F;
    letter-spacing:2px;
    font-size:13px;
    font-weight:700;
    margin-bottom:25px;
}

.gallery-header h1{
    font-size:62px;
    color:white;
    line-height:1.1;
    margin-bottom:20px;
    font-family:'Playfair Display',serif;
}

.gallery-header p{
    color:#cfd8f7;
    font-size:18px;
    line-height:1.8;
}

/* MASONRY */

.gallery-grid{
    column-count:4;
    column-gap:25px;
}

.gallery-item{
    margin-bottom:25px;
    break-inside:avoid;
    position:relative;
    overflow:hidden;
    border-radius:24px;
}

.gallery-item img{
    width:100%;
    display:block;
    border-radius:24px;

    transition:.6s ease;
}

.gallery-item::before{
    content:'';
    position:absolute;
    inset:0;

    background:
    linear-gradient(
    to top,
    rgba(7,29,70,.95),
    transparent
    );

    opacity:0;
    transition:.4s;
    z-index:2;
}

.gallery-item:hover::before{
    opacity:1;
}

.gallery-item:hover img{
    transform:scale(1.08);
}

.gallery-item:hover{
    box-shadow:
    0 20px 60px rgba(123,79,166,.45),
    0 0 25px rgba(200,163,95,.25);
}

/* RESPONSIVE */

@media(max-width:1200px){

.gallery-grid{
column-count:3;
}

}

@media(max-width:768px){

.gallery-grid{
column-count:2;
}

.gallery-header h1{
font-size:42px;
}

}

@media(max-width:500px){

.gallery-grid{
column-count:1;
}

.gallery-header h1{
font-size:34px;
}

}


/* ==========================================
   MASTER RESPONSIVE PACK
========================================== */

/* Large Laptop */
@media (max-width: 1440px){

  .container{
    width:95%;
    margin:auto;
  }

  .nav-menu{
    gap:16px;
  }

  .nav-menu a{
    font-size:13px;
  }

}

/* Laptop */
@media (max-width: 1366px){

  .navbar{
    padding:0 20px;
  }

  .nav-menu{
    gap:12px;
  }

  .nav-menu a{
    font-size:12px;
  }

  .nav-btn{
    padding:12px 20px;
    font-size:13px;
  }

  .pb-h1,
  .story-title,
  .services-heading h2{
    font-size:clamp(2.5rem,4vw,4rem);
  }

  .hero-short-desc{
    max-width:700px;
  }

}

/* Small Laptop / Tablet */
@media (max-width: 1024px){

  .nav-actions{
    display:none;
  }

  .hamburger{
    display:flex;
  }

  .pb-stats{
    grid-template-columns:repeat(2,1fr);
  }

  .services-grid,
  .work-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .scroll-story-inner{
    grid-template-columns:1fr;
    gap:50px;
  }

  .story-left,
  .story-right{
    width:100%;
  }

  .story-img-wrap{
    width:350px;
    height:350px;
    margin:auto;
  }

}

/* Tablet */
@media (max-width: 768px){

  .pb-h1{
    font-size:2.5rem;
  }

  .hero-short-desc{
    font-size:16px;
  }

  .services-grid,
  .work-grid,
  .gallery-grid{
    grid-template-columns:1fr;
  }

  .pb-stats{
    grid-template-columns:1fr 1fr;
  }

  .story-title{
    font-size:2rem;
  }

  .story-img-wrap{
    width:300px;
    height:300px;
  }

}

/* Mobile */
@media (max-width: 576px){

  .pb-main{
    padding:60px 20px;
  }

  .pb-logo-card{
    width:130px;
    height:130px;
  }

  .pb-h1{
    font-size:2rem;
    line-height:1.2;
  }

  .pb-sub{
    font-size:14px;
  }

  .hero-short-desc{
    font-size:15px;
  }

  .hero-buttons{
    flex-direction:column;
    gap:15px;
  }

  .hero-btn,
  .hero-btn-outline{
    width:100%;
    justify-content:center;
  }

  .pb-stats{
    grid-template-columns:1fr;
  }

  .work-card,
  .service-card{
    padding:25px;
  }

  .story-img-wrap{
    width:250px;
    height:250px;
  }

}

/*==================================================
            OUR PARTNERS — PREMIUM
==================================================*/

.partners-section{
    position: relative;
    padding: 130px 8%;
    background: radial-gradient(circle at 50% 30%, #7c56a3 0%, #6E4A8E 55%, #5a3b76 100%);
    overflow: hidden;
}

.partners-glow{
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 0;
    pointer-events: none;
    animation: partnersGlowFloat 12s ease-in-out infinite alternate;
}
.partners-glow-1{ width: 380px; height: 380px; background: rgba(255,255,255,0.12); top: -120px; left: -100px; }
.partners-glow-2{ width: 380px; height: 380px; background: rgba(125,95,255,0.35); bottom: -140px; right: -100px; animation-delay: 3s; }

@keyframes partnersGlowFloat{
    0%   { transform: translate(0,0) scale(1); }
    100% { transform: translate(30px,-20px) scale(1.1); }
}

.partners-section .container{
    position: relative;
    z-index: 2;
}

.section-heading{
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.heading-badge{
    display: inline-block;
    padding: 10px 22px;
    border-radius: 999px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.25);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 22px;
    box-shadow: 0 0 25px rgba(255,255,255,0.1);
    animation: badgeGlowPulse 3s ease-in-out infinite;
}

@keyframes badgeGlowPulse{
    0%, 100% { box-shadow: 0 0 15px rgba(255,255,255,0.08); }
    50% { box-shadow: 0 0 28px rgba(255,255,255,0.22); }
}

.section-heading p{
    color: rgba(255,255,255,0.85);
    font-size: 17px;
    line-height: 1.8;
}

.partners-grid{
    margin-top: 70px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
}

.partner-card{
    position: relative;
    overflow: hidden;
    background: rgba(255,255,255,0.97);
    border-radius: 26px;
    padding: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    border: 1px solid rgba(255,255,255,0.5);
    box-shadow: 0 15px 40px rgba(0,0,0,0.18);
    transition: transform 0.45s cubic-bezier(0.22,1,0.36,1),
                box-shadow 0.45s ease,
                border-color 0.45s ease;
}

/* sheen sweep on hover */
.partner-card::before{
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(125,95,255,0.08), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}
.partner-card:hover::before{ left: 130%; }

/* glowing top accent line reveal */
.partner-card::after{
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 55%;
    height: 3px;
    background: linear-gradient(90deg, #7d5fff, #b39dff);
    transition: transform 0.4s ease;
    transform-origin: center;
}
.partner-card:hover::after{ transform: translateX(-50%) scaleX(1); }

.partner-card:hover{
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 55px rgba(78,63,150,0.28);
    border-color: #7d5fff;
}

.partner-logo{
    position: relative;
    z-index: 2;
}

.partner-logo img{
    max-width: 220px;
    width: 100%;
    object-fit: contain;
    transition: transform 0.45s ease, filter 0.45s ease;
    filter: grayscale(100%);
    opacity: 0.75;
}

.partner-card:hover .partner-logo img{
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.08);
}


/* Mobile */

@media(max-width:768px){

.partners-section{
    padding: 90px 6%;
}

.partners-grid{
    gap: 22px;
    margin-top: 50px;
}

.partner-card{
    padding: 32px;
    min-height: 160px;
    border-radius: 20px;
}

.partner-logo img{
    max-width: 170px;
}

}