/* ═══════════════════════════════════════════════════════════════
   MEHTA & MEHTA ADVISORY — MAIN STYLESHEET  v2
   Palette:
     Navy      #1B365D  deep corporate navy
     Gold      #FFB81C  warm amber-yellow
     Gold-glow rgba(255,184,28,.28)
     Sapphire  #254E8A  medium blue accent
     Cream     #F9F6EF  warm off-white
     Slate     #475569  body text
═══════════════════════════════════════════════════════════════ */

:root {
  --navy:          #1B365D;   /* Brand navy (HEX #1B365D)        */
  --navy-mid:      #254E8A;   /* Medium blue accent               */
  --navy-light:    #2E5DA0;   /* Bright blue for gradients       */
  --navy-dark:     #0E1F38;   /* Deeper shade for hero/footer    */
  --gold:          #FFB81C;
  --gold-dark:     #D99A00;
  --gold-light:    #FFD166;
  --gold-glow:     rgba(255,184,28,.28);
  --gold-glow-sm:  rgba(255,184,28,.15);
  --cream:         #F9F6EF;
  --white:         #FFFFFF;
  --slate:         #475569;
  --slate-dark:    #1E293B;
  --border:        #E4DDD0;
  --border-light:  #EDE8DF;
  --shadow-sm:     0 2px 14px rgba(27,54,93,.08);
  --shadow-md:     0 8px 32px rgba(27,54,93,.13);
  --shadow-lg:     0 20px 60px rgba(27,54,93,.18);
  --glow-gold:     0 0 24px rgba(255,184,28,.35);
  --radius:        10px;
  --radius-lg:     16px;
  --radius-xl:     24px;
  --transition:    all .3s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; }
html  { scroll-behavior: smooth; overflow-x: hidden; }
body  { overflow-x: hidden; }
body  {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--slate);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
h1,h2,h3,h4,h5,h6 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--navy);
  line-height: 1.22;
}
a { color: var(--gold); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold-dark); }
img { max-width: 100%; height: auto; }

/* ═══════════════════════════════════════════════════════════════
   TOP BAR
═══════════════════════════════════════════════════════════════ */
.topbar {
  background: linear-gradient(90deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: rgba(255,255,255,.72);
  font-size: .78rem;
  padding: .42rem 0;
  letter-spacing: .02em;
  border-bottom: none;
}
.topbar a { color: rgba(255,255,255,.72); }
.topbar a:hover { color: var(--gold-light); }
.topbar-divider {
  display: inline-block; width: 1px; height: 13px;
  background: rgba(255,255,255,.2); vertical-align: middle;
}
.topbar-tag {
  color: var(--gold-light);
  font-weight: 600;
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════════════════════ */
.main-nav,
.main-nav.navbar {
  background: #ffffff;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
  padding: .8rem 0;
  transition: background .3s;
  position: relative;
  z-index: 1030;
}
.main-nav.scrolled {
  box-shadow: 0 2px 16px rgba(11,29,64,.08) !important;
  background: rgba(255,255,255,1);
}

/* Brand emblem */
.brand-emblem {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-weight: 700; font-size: .88rem;
  display: flex; align-items: center; justify-content: center;
  border-radius: 8px; flex-shrink: 0;
  box-shadow: 0 2px 10px rgba(11,29,64,.25), 0 0 0 1px rgba(255,184,28,.3);
  letter-spacing: .02em;
}
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.18rem; font-weight: 700; color: var(--navy);
}
.brand-name .amp { color: var(--gold); }
.brand-sub {
  font-size: .63rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--slate);
  font-weight: 600; margin-top: .18rem;
}

/* Split nav link (Services) */
.nav-link-split {
  display: inline-flex;
  align-items: center;
  border-radius: 6px;
  position: relative;
}
.nav-link-split.active .nav-link-text,
.nav-link-split.active .nav-link-caret { color: var(--navy); }
.nav-link-split.active .nav-link-text::after,
.nav-link-split.active .nav-link-caret::after { left: .8rem; right: .8rem; }

.nav-link-text {
  font-size: .875rem; font-weight: 500;
  color: var(--slate-dark);
  padding: .45rem .5rem .45rem .8rem;
  border-radius: 6px 0 0 6px;
  letter-spacing: .02em;
  transition: var(--transition);
  text-decoration: none;
  position: relative;
}
.nav-link-text::after {
  content: ''; position: absolute; bottom: -2px; left: 50%; right: 50%;
  height: 2px; background: var(--gold); border-radius: 2px;
  transition: left .25s, right .25s;
}
.nav-link-text:hover { color: var(--navy); }
.nav-link-text:hover::after { left: .5rem; right: .5rem; }

.nav-link-caret {
  font-size: .875rem;
  color: var(--slate-dark);
  padding: .45rem .6rem .45rem .3rem;
  border-radius: 0 6px 6px 0;
  transition: var(--transition);
  text-decoration: none;
}
.nav-link-caret:hover { color: var(--navy); }
.nav-link-caret::after {
  display: inline-block !important;
}

/* Nav links */
.main-nav .nav-link {
  font-size: .875rem; font-weight: 500;
  color: var(--slate-dark);
  padding: .45rem .8rem;
  border-radius: 6px; letter-spacing: .02em;
  transition: var(--transition);
  position: relative;
}
.main-nav .nav-link::after {
  content: ''; position: absolute; bottom: -2px; left: 50%; right: 50%;
  height: 2px; background: var(--gold); border-radius: 2px;
  transition: left .25s, right .25s;
}
.main-nav .nav-link:hover,
.main-nav .nav-link.active { color: var(--navy); }
.main-nav .nav-link:hover::after,
.main-nav .nav-link.active::after { left: .8rem; right: .8rem; }

.btn-consult {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%) !important;
  color: var(--white) !important;
  border-radius: 8px !important;
  padding: .5rem 1.3rem !important;
  font-size: .85rem !important; font-weight: 600 !important;
  box-shadow: 0 2px 12px rgba(11,29,64,.25) !important;
  transition: var(--transition) !important;
}
.btn-consult::after { display: none !important; }
.btn-consult:hover {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%) !important;
  color: var(--navy) !important;
  box-shadow: var(--glow-gold) !important;
  transform: translateY(-1px) !important;
}

.navbar-toggler { border: none; padding: .5rem; background: transparent; }
.navbar-toggler:focus { box-shadow: none; }
.toggler-icon { display: flex; flex-direction: column; gap: 5px; }
.toggler-icon span {
  display: block; width: 24px; height: 2px;
  background: var(--navy); border-radius: 2px; transition: var(--transition);
}

/* ═══════════════════════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════════════════════ */
.btn-primary-gold {
  background: linear-gradient(135deg, var(--gold) 0%, #D99A00 100%);
  color: var(--navy);
  border: none;
  font-weight: 700; font-size: .9rem;
  padding: .72rem 1.9rem;
  border-radius: var(--radius);
  letter-spacing: .02em;
  transition: var(--transition);
  box-shadow: 0 4px 16px var(--gold-glow-sm);
}
.btn-primary-gold:hover {
  transform: translateY(-2px);
  box-shadow: var(--glow-gold);
  color: var(--navy);
  background: linear-gradient(135deg, #FFCA3A 0%, var(--gold) 100%);
}

.btn-outline-light-custom {
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,.5);
  font-weight: 600; font-size: .9rem;
  padding: .7rem 1.8rem; border-radius: var(--radius);
  transition: var(--transition);
}
.btn-outline-light-custom:hover {
  background: rgba(255,255,255,.12); border-color: var(--white); color: var(--white);
}

.btn-outline-dark-custom {
  background: transparent; color: var(--navy);
  border: 2px solid var(--navy);
  font-weight: 600; font-size: .9rem;
  padding: .7rem 1.8rem; border-radius: var(--radius);
  transition: var(--transition);
}
.btn-outline-dark-custom:hover {
  background: var(--navy); color: var(--white); transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(11,29,64,.2);
}

.btn-outline-gold {
  background: transparent; color: var(--gold-light);
  border: 2px solid rgba(255,184,28,.6);
  font-weight: 600; font-size: .9rem;
  padding: .7rem 1.8rem; border-radius: var(--radius);
  transition: var(--transition);
}
.btn-outline-gold:hover {
  background: var(--gold); color: var(--navy);
  border-color: var(--gold); transform: translateY(-2px);
  box-shadow: var(--glow-gold);
}

/* ═══════════════════════════════════════════════════════════════
   TYPOGRAPHY HELPERS
═══════════════════════════════════════════════════════════════ */
.section-eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .73rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold); margin-bottom: .8rem;
}
.section-eyebrow::before {
  content: ''; display: inline-block;
  width: 22px; height: 2px;
  background: var(--gold); border-radius: 2px; flex-shrink: 0;
}
.section-eyebrow-light { color: var(--gold-light); }
.section-eyebrow-light::before { background: var(--gold-light); }

.section-title {
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-weight: 700; color: var(--navy); margin-bottom: .75rem;
}
.section-subtitle {
  font-size: 1.05rem; color: var(--slate);
  max-width: 600px; margin: 0 auto;
}
.section-text {
  color: var(--slate); font-size: .97rem;
  line-height: 1.85; margin-bottom: 1rem;
}

/* ═══════════════════════════════════════════════════════════════
   SPACING / BG
═══════════════════════════════════════════════════════════════ */
.section-pad    { padding: 3.5rem 0; }
.section-pad-sm { padding: 2rem 0; }
.bg-light-cream {
  background: var(--cream);
  background-image: radial-gradient(ellipse at 80% 20%, rgba(255,184,28,.06) 0%, transparent 60%);
}
.bg-navy-dark {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, var(--navy-mid) 100%);
  position: relative; overflow: hidden;
}
.bg-navy-dark::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(255,184,28,.09) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(34,96,200,.18) 0%, transparent 50%);
  pointer-events: none;
}
.min-vh-85 { min-height: unset; }

/* ═══════════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════════ */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, #071A4A 0%, var(--navy-dark) 40%, var(--navy) 100%);
  overflow: hidden;
  padding: 2rem 0 1rem;
}
/* Animated radial glow */
.hero-section::before {
  content: '';
  position: absolute;
  top: -20%; left: -10%;
  width: 70%; height: 80%;
  background: radial-gradient(ellipse, rgba(255,184,28,.12) 0%, transparent 65%);
  pointer-events: none;
}
.hero-section::after {
  content: '';
  position: absolute;
  bottom: -10%; right: -5%;
  width: 55%; height: 70%;
  background: radial-gradient(ellipse, rgba(26,79,160,.18) 0%, transparent 65%);
  pointer-events: none;
}
.hero-overlay {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23FFB81C' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}
.hero-content { position: relative; z-index: 2; }

.hero-actions .btn-primary-gold,
.hero-actions .btn-outline-light-custom {
  font-size: .78rem;
  padding: .5rem 1.3rem;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .75rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.2rem;
  padding: .3rem .9rem;
  border: 1px solid rgba(255,184,28,.35);
  border-radius: 30px;
  background: rgba(255,184,28,.06);
}
.hero-eyebrow::before {
  content: ''; width: 6px; height: 6px;
  background: var(--gold); border-radius: 50%;
  box-shadow: 0 0 8px var(--gold); flex-shrink: 0;
}
.hero-title {
  font-size: 1.9rem !important;
  font-weight: 700; color: var(--white);
  line-height: 1.15; margin-bottom: 1.5rem;
  text-shadow: 0 2px 30px rgba(0,0,0,.3);
}
.hero-title-accent {
  color: var(--gold);
  text-shadow: 0 0 30px rgba(255,184,28,.5);
}
.hero-services-line {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1rem;
  text-align: center;
}
.hero-desc {
  font-size: .9rem !important; color: rgba(255,255,255,.78);
  max-width: 560px; line-height: 1.82;
}

/* ── Hero Achievement Panel ── */
.hero-achieve-panel {
  display: flex; flex-direction: column; gap: .9rem;
  position: relative; z-index: 2;
}
.hap-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(12px);
  border-radius: 14px;
  padding: .8rem 1rem;
  display: flex; align-items: center; gap: .8rem;
  transition: var(--transition);
}
.hap-card:hover {
  background: rgba(255,255,255,.13);
  border-color: rgba(255,184,28,.45);
  transform: translateX(6px);
  box-shadow: 0 4px 20px rgba(0,0,0,.2);
}
.hap-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  background: rgba(255,184,28,.15);
  border: 1px solid rgba(255,184,28,.35);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--gold);
  box-shadow: 0 0 12px rgba(255,184,28,.2);
}
.hap-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem !important; font-weight: 700;
  color: var(--white); line-height: 1.2;
}
.hap-label {
  font-size: .68rem !important; color: rgba(255,255,255,.6);
  font-weight: 400; margin-top: .2rem; line-height: 1.4;
}

/* Decorative geometric rings */
.hero-rings {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 480px; height: 480px;
  pointer-events: none;
  z-index: 1;
}
.hero-ring {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(255,184,28,.12);
}
.hero-ring:nth-child(1) { inset: 0; }
.hero-ring:nth-child(2) { inset: 50px; border-color: rgba(255,184,28,.09); }
.hero-ring:nth-child(3) { inset: 100px; border-color: rgba(255,184,28,.06); }
.hero-ring::after {
  content: ''; position: absolute;
  top: 50%; left: -4px;
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--gold);
  transform: translateY(-50%);
}

/* ═══════════════════════════════════════════════════════════════
   STATS BAR
═══════════════════════════════════════════════════════════════ */
.stats-bar {
  background: var(--white);
  border: none;
  box-shadow: none;
}
.stat-item { padding: 1.8rem 1rem; text-align: center; }
.border-end-stat { border-right: 1px solid var(--border); }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem; font-weight: 700; color: var(--navy); line-height: 1;
}
.stat-label {
  font-size: .78rem; font-weight: 600;
  letter-spacing: .07em; text-transform: uppercase;
  color: var(--slate); margin-top: .3rem;
}

/* ═══════════════════════════════════════════════════════════════
   ABOUT PANEL (HOME + ABOUT PAGE)
   Replaces the empty dark box with a visual highlights panel
═══════════════════════════════════════════════════════════════ */
.about-visual-panel {
  position: relative;
  height: 460px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Main navy card */
.avp-main {
  width: 88%;
  height: 100%;
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-mid) 60%, #0F2D6A 100%);
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
/* gold glow top-left */
.avp-main::before {
  content: ''; position: absolute;
  top: -60px; left: -60px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(255,184,28,.22) 0%, transparent 65%);
  pointer-events: none;
}
/* decorative ring */
.avp-main::after {
  content: ''; position: absolute;
  bottom: -80px; right: -80px;
  width: 280px; height: 280px;
  border: 40px solid rgba(255,184,28,.07);
  border-radius: 50%; pointer-events: none;
}

.avp-inner {
  position: relative; z-index: 2;
  height: 100%;
  display: flex; flex-direction: column;
  justify-content: space-between;
  padding: 2.2rem;
}

/* Year badge */
.avp-year {
  display: inline-flex; align-items: baseline; gap: .3rem;
}
.avp-year-num {
  font-family: 'Playfair Display', serif;
  font-size: 4rem; font-weight: 700;
  color: var(--gold);
  line-height: 1;
  text-shadow: 0 0 30px rgba(255,184,28,.5);
}
.avp-year-label {
  font-size: .75rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.6);
}

/* Mini stat pills */
.avp-pills { display: flex; flex-direction: column; gap: .8rem; }
.avp-pill {
  display: flex; align-items: center; gap: .8rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px; padding: .75rem 1rem;
  backdrop-filter: blur(4px);
  transition: var(--transition);
}
.avp-pill:hover { background: rgba(255,184,28,.1); border-color: rgba(255,184,28,.25); }
.avp-pill-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; font-weight: 700; color: var(--gold);
  line-height: 1; min-width: 60px;
}
.avp-pill-text { font-size: .82rem; font-weight: 500; color: rgba(255,255,255,.75); }
.avp-pill-icon { font-size: 1.2rem; color: var(--gold); margin-left: auto; opacity: .7; }

/* Floating badge */
.avp-badge {
  position: absolute;
  bottom: 2rem; right: -1.5rem;
  background: var(--gold);
  color: var(--navy);
  border-radius: var(--radius);
  padding: 1rem 1.3rem;
  box-shadow: var(--glow-gold), var(--shadow-md);
  text-align: center;
  z-index: 3;
}
.avp-badge-num { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; line-height: 1; }
.avp-badge-txt { font-size: .73rem; font-weight: 700; letter-spacing: .06em; }

.about-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: .65rem .5rem; }
.pillar { font-size: .88rem; font-weight: 500; color: var(--slate-dark); }
.pillar i { color: var(--gold); margin-right: .4rem; }

/* ═══════════════════════════════════════════════════════════════
   SERVICE CARDS
═══════════════════════════════════════════════════════════════ */
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.8rem;
  height: 100%;
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
  transform: scaleX(0); transition: transform .35s;
}
.service-card:hover {
  box-shadow: 0 12px 40px rgba(11,29,64,.12), 0 0 0 1px rgba(255,184,28,.15);
  transform: translateY(-5px);
}
.service-card:hover::before { transform: scaleX(1); }

.svc-icon-wrap {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, rgba(255,184,28,.12) 0%, rgba(255,184,28,.06) 100%);
  color: var(--gold); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 1.2rem;
  box-shadow: 0 0 0 1px rgba(255,184,28,.2);
  transition: var(--transition);
}
.service-card:hover .svc-icon-wrap { box-shadow: 0 0 16px var(--gold-glow-sm); }
.svc-title  { font-size: 1.15rem; color: var(--navy); margin-bottom: .6rem; }
.svc-text   { font-size: .9rem; color: var(--slate); line-height: 1.7; margin-bottom: 1rem; }
.svc-link   { font-size: .85rem; font-weight: 600; color: var(--gold); }
.svc-link i { transition: transform .25s; }
.svc-link:hover { color: var(--gold-dark); }
.svc-link:hover i { transform: translateX(4px); }

/* ═══════════════════════════════════════════════════════════════
   REASON CARDS (legacy — kept for any other use)
═══════════════════════════════════════════════════════════════ */
.reason-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.6rem;
  height: 100%;
  transition: var(--transition);
}
.reason-card:hover {
  box-shadow: var(--shadow-sm);
  border-color: rgba(255,184,28,.3);
  transform: translateY(-2px);
}
.reason-icon { font-size: 1.8rem; color: var(--gold); margin-bottom: .8rem; }
.reason-title { font-size: 1rem; color: var(--navy); margin-bottom: .5rem; }
.reason-text  { font-size: .87rem; color: var(--slate); margin: 0; line-height: 1.7; }

/* ═══════════════════════════════════════════════════════════════
   WHY US SECTION
═══════════════════════════════════════════════════════════════ */
.why-us-section { background: #f8f5ef; padding-top: 0; }

.whyus-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2rem 1.6rem;
  height: 100%;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.whyus-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform .3s ease;
}
.whyus-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  transform: translateY(-4px);
  border-color: rgba(255,184,28,.25);
}
.whyus-card:hover::before { transform: scaleX(1); }

.whyus-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255,184,28,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  transition: background .3s;
}
.whyus-card:hover .whyus-icon-wrap { background: rgba(255,184,28,.18); }
.whyus-icon-wrap i { font-size: 1.6rem; color: var(--gold); }

.whyus-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: .7rem;
}
.whyus-text {
  font-size: .875rem;
  color: var(--slate);
  line-height: 1.75;
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════════
   TEAM CARDS — HOMEPAGE FEATURED
═══════════════════════════════════════════════════════════════ */
.team-card-featured {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,184,28,.2);
  border-radius: var(--radius-xl);
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.team-card-featured::before {
  content: ''; position: absolute; top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at center, rgba(255,184,28,.06) 0%, transparent 55%);
  opacity: 0; transition: opacity .4s;
}
.team-card-featured:hover { border-color: var(--gold); transform: translateY(-4px); }
.team-card-featured:hover::before { opacity: 1; }

.team-avatar-wrap { margin-bottom: 1.2rem; position: relative; display: inline-block; }
.team-avatar-photo {
  width: 90px; height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold);
  box-shadow: 0 0 18px rgba(255,184,28,.4);
}
.team-avatar-placeholder {
  width: 90px; height: 90px;
  background: rgba(255,184,28,.12);
  border: 3px solid var(--gold);
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; font-weight: 700;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto;
  box-shadow: 0 0 18px rgba(255,184,28,.35);
}
.team-name  { font-size: 1.1rem; color: var(--white); margin-bottom: .3rem; }
.team-desig { font-size: .83rem; color: var(--gold-light); margin-bottom: .25rem; }
.team-qual  { font-size: .8rem; color: rgba(255,255,255,.55); margin-bottom: .6rem; }
.team-qual i { color: var(--gold); }
.team-linkedin {
  display: inline-flex; align-items: center; gap: .35rem;
  font-size: .78rem; font-weight: 600;
  color: rgba(255,255,255,.65);
  padding: .3rem .7rem;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 20px;
  transition: var(--transition);
}
.team-linkedin:hover { color: var(--gold-light); border-color: rgba(255,184,28,.4); }

/* ═══════════════════════════════════════════════════════════════
   CTA BANNER
═══════════════════════════════════════════════════════════════ */
.cta-banner {
  background: linear-gradient(120deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-mid) 100%);
  padding: 4.5rem 0;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(255,184,28,.12) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 50%, rgba(26,79,160,.12) 0%, transparent 55%);
  pointer-events: none;
}
.cta-banner .container { position: relative; z-index: 1; }
.cta-title  { font-size: clamp(1.5rem, 3vw, 2.1rem); color: var(--white); margin-bottom: .6rem; }
.cta-text   { color: rgba(255,255,255,.7); font-size: 1.02rem; margin: 0; }

/* ═══════════════════════════════════════════════════════════════
   PAGE HERO (inner pages)
═══════════════════════════════════════════════════════════════ */
.page-hero {
  position: relative;
  background: linear-gradient(135deg, #071A4A 0%, var(--navy-dark) 35%, var(--navy) 100%);
  padding: 2.8rem 0 2rem; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 15% 60%, rgba(255,184,28,.1) 0%, transparent 50%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23FFB81C' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero-content *,
.page-hero-content span,
.page-hero-content h1,
.page-hero-content nav,
.page-hero-content ol {
  background: transparent !important;
  background-color: transparent !important;
}
.page-hero-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--white); margin-bottom: .6rem;
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.page-breadcrumb { margin: 0; }
.page-breadcrumb .breadcrumb-item a { color: var(--gold-light); }
.page-breadcrumb .breadcrumb-item.active { color: rgba(255,255,255,.55); }
.page-breadcrumb .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.35); }

/* Decorative ring (top right) */
.page-hero::after {
  content: ''; position: absolute;
  right: -80px; top: -80px;
  width: 360px; height: 360px;
  border: 50px solid rgba(255,184,28,.06);
  border-radius: 50%; pointer-events: none;
}


/* Locations page – "Our Locations" heading in navy blue */
.page-hero-sm .page-hero-title { color: var(--navy); text-shadow: none; }

/* ═══════════════════════════════════════════════════════════════
   ABOUT PAGE — STORY IMAGE BLOCK
═══════════════════════════════════════════════════════════════ */
.story-img-block { position: relative; height: 400px; }
.story-img-bg {
  width: 84%; height: 100%;
  background: linear-gradient(145deg, #080F22 0%, var(--navy) 55%, #0F2D6A 100%);
  border-radius: var(--radius-xl); position: relative; overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.story-img-bg::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 30%, rgba(255,184,28,.15) 0%, transparent 55%);
}
.story-img-bg::after {
  content: ''; position: absolute;
  bottom: -60px; right: -60px;
  width: 200px; height: 200px;
  border: 35px solid rgba(255,184,28,.08);
  border-radius: 50%;
}
.story-card-float {
  position: absolute; bottom: 2rem; right: 0;
  background: linear-gradient(135deg, var(--gold) 0%, #D99A00 100%);
  color: var(--navy); padding: 1.2rem 1.6rem;
  border-radius: var(--radius);
  display: flex; align-items: center; gap: 1rem;
  box-shadow: var(--glow-gold), var(--shadow-md);
}
.story-card-icon { font-size: 2rem; }
.story-card-num  { font-family: 'Playfair Display', serif; font-size: 2.1rem; font-weight: 700; line-height: 1; }
.story-card-txt  { font-size: .8rem; font-weight: 700; }

/* ═══════════════════════════════════════════════════════════════
   VALUES
═══════════════════════════════════════════════════════════════ */
.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.6rem; height: 100%;
  transition: var(--transition);
}
.value-card:hover {
  box-shadow: 0 8px 30px rgba(11,29,64,.1);
  border-color: rgba(255,184,28,.3);
  transform: translateY(-3px);
}
.value-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, rgba(255,184,28,.14) 0%, rgba(255,184,28,.06) 100%);
  color: var(--gold); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 1rem;
  box-shadow: 0 0 0 1px rgba(255,184,28,.18);
}
.value-title { font-size: 1rem; color: var(--navy); margin-bottom: .5rem; }
.value-text  { font-size: .88rem; color: var(--slate); margin: 0; line-height: 1.7; }

/* ═══════════════════════════════════════════════════════════════
   TIMELINE
═══════════════════════════════════════════════════════════════ */
.timeline { position: relative; max-width: 860px; margin: 0 auto; }
.timeline::before {
  content: ''; position: absolute;
  left: 50%; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold) 0%, var(--border) 100%);
  transform: translateX(-50%);
}
.timeline-item {
  display: flex; align-items: flex-start;
  gap: 2rem; margin-bottom: 2.5rem; position: relative;
}
.timeline-left  { flex-direction: row; }
.timeline-right { flex-direction: row-reverse; }
.timeline-left  .timeline-content { text-align: right; }
.timeline-right .timeline-content { text-align: left; }
.timeline-content {
  flex: 1; background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.4rem 1.6rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.timeline-content:hover { box-shadow: var(--shadow-md); border-color: rgba(255,184,28,.25); }
.timeline-year {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold) 0%, #D99A00 100%);
  color: var(--navy); font-weight: 700; font-size: .78rem;
  padding: .2rem .75rem; border-radius: 20px; margin-bottom: .6rem;
  letter-spacing: .04em;
}
.timeline-title { font-size: 1rem; color: var(--navy); margin-bottom: .4rem; }
.timeline-text  { font-size: .87rem; color: var(--slate); margin: 0; line-height: 1.7; }
.timeline-dot {
  width: 16px; height: 16px;
  background: var(--gold); border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 2px var(--gold), 0 0 12px rgba(255,184,28,.5);
  flex-shrink: 0; margin-top: 1.4rem; position: relative; z-index: 1;
}

/* ═══════════════════════════════════════════════════════════════
   SECTOR PILLS
═══════════════════════════════════════════════════════════════ */
.sector-pill {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,184,28,.18);
  color: rgba(255,255,255,.8); border-radius: 8px;
  padding: .65rem 1rem; font-size: .83rem; font-weight: 500;
  text-align: center; transition: var(--transition);
}
.sector-pill:hover {
  background: rgba(255,184,28,.1);
  border-color: var(--gold); color: var(--gold-light);
  box-shadow: 0 0 12px rgba(255,184,28,.15);
}
.sector-pill i { color: var(--gold); }

/* ═══════════════════════════════════════════════════════════════
   SERVICES DETAIL PAGE
═══════════════════════════════════════════════════════════════ */
.svc-detail-block { padding: 3rem 0; }
.svc-detail-visual {
  display: flex; align-items: center; justify-content: center; height: 280px;
}
.svc-detail-icon-bg {
  width: 180px; height: 180px;
  background: linear-gradient(135deg, rgba(255,184,28,.12) 0%, rgba(11,29,64,.06) 100%);
  border: 2px solid rgba(255,184,28,.22);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 4.5rem; color: var(--gold);
  transition: var(--transition);
  box-shadow: 0 0 0 12px rgba(255,184,28,.04);
}
.svc-detail-block:hover .svc-detail-icon-bg {
  box-shadow: 0 0 30px rgba(255,184,28,.2), 0 0 0 12px rgba(255,184,28,.06);
  transform: scale(1.05);
}
.svc-number {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem; font-weight: 700;
  color: rgba(255,184,28,.18); line-height: 1;
  display: block; margin-bottom: -.5rem;
}
.svc-detail-title { font-size: 1.6rem; color: var(--navy); margin-bottom: .8rem; }
.svc-detail-desc  { font-size: .95rem; color: var(--slate); margin-bottom: 1.2rem; line-height: 1.8; }
.svc-detail-list {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: .4rem .5rem;
}
.svc-detail-list li { font-size: .88rem; color: var(--slate-dark); font-weight: 500; }
.svc-detail-list li i { color: var(--gold); font-size: .7rem; }
.svc-divider { border-color: var(--border); margin: 1rem 0; }

.approach-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem 1.6rem;
  text-align: center; height: 100%; transition: var(--transition);
}
.approach-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(255,184,28,.3);
  transform: translateY(-4px);
}
.approach-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem; font-weight: 700;
  color: var(--gold); line-height: 1; margin-bottom: .8rem;
  text-shadow: 0 0 20px rgba(255,184,28,.3);
}
.approach-title { font-size: 1rem; color: var(--navy); margin-bottom: .5rem; }
.approach-text  { font-size: .87rem; color: var(--slate); margin: 0; line-height: 1.7; }

/* ═══════════════════════════════════════════════════════════════
   TEAM PAGE
═══════════════════════════════════════════════════════════════ */
/* Founding / Senior partner cards */
.partner-card {
  display: flex; align-items: center; gap: 1.8rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 2rem;
  transition: var(--transition); cursor: pointer;
}
.partner-card:hover {
  box-shadow: 0 12px 40px rgba(11,29,64,.12), 0 0 0 1px rgba(255,184,28,.2);
  transform: translateY(-3px);
}
.partner-avatar-wrap { flex-shrink: 0; }
.partner-avatar {
  width: 96px; height: 96px;
  border-radius: 50%; overflow: hidden;
  border: 3px solid var(--gold);
  box-shadow: 0 0 20px rgba(255,184,28,.3);
}
.partner-avatar img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.partner-avatar-initials {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.partner-name   { font-size: 1.25rem; color: var(--navy); margin-bottom: .3rem; }
.partner-desig  { font-size: .85rem; color: var(--gold-dark); font-weight: 600; margin-bottom: .3rem; }
.partner-qual   { font-size: .82rem; color: var(--slate); margin-bottom: .6rem; }
.partner-qual i { color: var(--gold); }
.partner-actions { display: flex; align-items: center; gap: .75rem; flex-wrap: wrap; }
.partner-read-more { font-size: .82rem; font-weight: 600; color: var(--gold); }
.partner-read-more:hover { color: var(--gold-dark); }
.btn-linkedin {
  display: inline-flex; align-items: center; gap: .35rem;
  font-size: .78rem; font-weight: 600;
  color: #0077B5; background: rgba(0,119,181,.08);
  border: 1px solid rgba(0,119,181,.25);
  border-radius: 20px; padding: .3rem .75rem;
  transition: var(--transition);
}
.btn-linkedin:hover { background: #0077B5; color: var(--white); border-color: #0077B5; }

/* Associate cards */
.associate-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.8rem 1.5rem;
  text-align: center; height: 100%;
  transition: var(--transition); position: relative; overflow: hidden;
  cursor: pointer;
}
.associate-card:hover {
  box-shadow: 0 12px 36px rgba(11,29,64,.12);
  border-color: rgba(255,184,28,.3);
  transform: translateY(-3px);
}
.assoc-avatar-wrap { margin-bottom: 1rem; position: relative; display: inline-block; }
.assoc-avatar {
  width: 72px; height: 72px;
  border-radius: 50%; overflow: hidden;
  border: 2px solid var(--gold);
  margin: 0 auto;
  box-shadow: 0 0 14px rgba(255,184,28,.25);
}
.assoc-avatar img { width: 100%; height: 100%; object-fit: cover; }
.assoc-avatar-initials {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.associate-card:hover .assoc-avatar-initials { background: var(--gold); color: var(--navy); }
.assoc-name  { font-size: 1rem; color: var(--navy); margin-bottom: .25rem; }
.assoc-desig { font-size: .82rem; color: var(--gold-dark); font-weight: 600; margin-bottom: .25rem; }
.assoc-qual  { font-size: .8rem; color: var(--slate); margin-bottom: .5rem; }
.assoc-qual i { color: var(--gold); }
.assoc-linkedin {
  display: inline-flex; align-items: center; gap: .3rem;
  font-size: .75rem; font-weight: 600; color: #0077B5;
  padding: .2rem .6rem; border: 1px solid rgba(0,119,181,.25);
  border-radius: 20px; transition: var(--transition);
}
.assoc-linkedin:hover { background: #0077B5; color: var(--white); border-color: #0077B5; }
.assoc-hover-overlay {
  position: absolute; inset: 0;
  background: rgba(11,29,64,.88);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-weight: 600; font-size: .9rem;
  opacity: 0; transition: opacity .3s; border-radius: var(--radius-lg);
}
.associate-card:hover .assoc-hover-overlay { opacity: 1; }

/* Modal */
.team-modal .modal-content {
  border: none;
  border-radius: var(--radius-xl);
  box-shadow: 0 30px 80px rgba(11,29,64,.25);
  position: relative;
  overflow: visible;
}

/* Custom close button */
.team-modal-close {
  position: absolute;
  top: -14px; right: -14px;
  width: 38px; height: 38px;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem; color: var(--navy);
  cursor: pointer; z-index: 1060;
  transition: var(--transition);
  box-shadow: 0 2px 10px rgba(11,29,64,.15);
}
.team-modal-close:hover {
  background: var(--navy); color: var(--white);
  border-color: var(--navy); transform: rotate(90deg);
}
.modal-avatar {
  width: 110px; height: 110px;
  border-radius: 50%; overflow: hidden;
  border: 3px solid var(--gold);
  margin: 0 auto;
  box-shadow: 0 0 24px rgba(255,184,28,.4);
}
.modal-avatar img { width: 100%; height: 100%; object-fit: cover; }
.modal-avatar-initials {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.modal-member-name  { font-size: 1.45rem; color: var(--navy); margin-bottom: .25rem; }
.modal-member-desig { font-size: .88rem; color: var(--gold-dark); font-weight: 600; margin-bottom: .25rem; }
.modal-member-qual  { font-size: .85rem; color: var(--slate); margin-bottom: .5rem; }
.modal-member-qual i { color: var(--gold); }
.modal-divider { border-color: var(--border); margin: 1rem 0; }
.modal-avatar-initials {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.modal-member-bio   { font-size: .92rem; color: var(--slate); line-height: 1.82; margin: 0; }

/* ── TEAM: Member Modal ── */
.tm-modal-content {
  border: none; border-radius: var(--radius-xl);
  overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,.18);
}
.tm-modal-close {
  position: absolute; top: 1rem; right: 1rem; z-index: 10;
  background: rgba(255,255,255,.85); border-radius: 50%;
  width: 32px; height: 32px; padding: 0;
  display: flex; align-items: center; justify-content: center;
}
.tm-modal-header {
  display: flex; align-items: center; gap: 1.4rem;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 2rem 2rem 1.5rem;
  position: relative;
}
.tm-modal-header::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 10% 50%, rgba(255,184,28,.12) 0%, transparent 55%);
  pointer-events: none;
}
.tm-modal-photo {
  flex-shrink: 0; width: 90px; height: 90px;
  border-radius: 50%; overflow: hidden;
  border: 3px solid var(--gold);
  box-shadow: 0 0 0 4px rgba(255,184,28,.2);
  position: relative; z-index: 1;
}
.tm-modal-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.tm-modal-initials {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  background: var(--navy-light); color: var(--gold);
  font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700;
}
.tm-modal-meta { position: relative; z-index: 1; }
.tm-modal-name  { font-size: 1.25rem; color: #fff; margin-bottom: .2rem; font-weight: 700; }
.tm-modal-desig { font-size: .8rem; color: var(--gold); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; margin-bottom: .35rem; }
.tm-modal-loc   { font-size: .78rem; color: rgba(255,255,255,.65); margin: 0; }
.tm-modal-loc i { color: var(--gold); }
.tm-modal-body  { padding: 1.5rem 2rem 2rem; }
.tm-modal-qual  { font-size: .82rem; color: var(--slate); margin-bottom: .9rem; }
.tm-modal-qual i { color: var(--gold); }
.tm-modal-bio   { font-size: .9rem; color: var(--slate); line-height: 1.85; margin-bottom: 1.1rem; }
.tm-modal-links { display: flex; flex-wrap: wrap; gap: .6rem; }
.tm-link-btn {
  display: inline-flex; align-items: center; gap: .35rem;
  font-size: .78rem; font-weight: 600; padding: .4rem 1rem;
  border-radius: 50px; text-decoration: none;
  background: var(--cream); color: var(--navy);
  border: 1px solid var(--border); transition: var(--transition);
}
.tm-link-btn:hover { background: var(--navy); color: #fff; }
.tm-link-btn.tm-link-li { background: #e8f0fe; color: #0a66c2; border-color: #c5d8ff; }
.tm-link-btn.tm-link-li:hover { background: #0a66c2; color: #fff; }

/* clickable cursor on team cards */
.team-card-clickable { cursor: pointer; }
.team-card-clickable:hover { border-color: var(--gold-glow-sm) !important; box-shadow: var(--shadow-md) !important; }

/* ── TEAM: Basic Card (Founding / Chief) ── */
.team-basic-card {
  display: flex; gap: 1.1rem; align-items: flex-start;
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.25rem;
  box-shadow: var(--shadow-sm); height: 100%;
}
.tbc-avatar { flex-shrink: 0; width: 140px; height: 140px; border-radius: 50%; overflow: hidden; border: 3px solid var(--gold-glow); }
.tbc-avatar img { width: 100%; height: 100%; object-fit: cover; }
.tbc-initials { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: var(--navy); color: #fff; font-size: 1.2rem; font-weight: 700; }
.tbc-info { flex: 1; }
.tbc-name  { font-size: .95rem; font-weight: 700; color: var(--navy); margin-bottom: .2rem; }
.tbc-desig { font-size: .78rem; color: var(--gold); font-weight: 600; margin-bottom: .3rem; text-transform: uppercase; letter-spacing: .04em; }
.tbc-qual  { font-size: .75rem; color: var(--slate); margin-bottom: .6rem; }
.tbc-links { display: flex; flex-direction: column; gap: .25rem; }
.tbc-link  { font-size: .73rem; color: var(--slate); text-decoration: none; display: flex; align-items: center; gap: .35rem; transition: color .15s; }
.tbc-link:hover { color: var(--navy); }
.tbc-link i { color: var(--gold); }

/* ── TEAM: Senior Partner Card ── */
.sp-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column; height: 100%;
  border-top: 3px solid var(--gold);
}
.sp-photo { width: 100%; height: 220px; overflow: hidden; background: var(--cream); }
.sp-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.sp-initials { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: var(--navy); color: #fff; font-size: 2.5rem; font-weight: 700; }
.sp-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.sp-name  { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: .2rem; }
.sp-desig { font-size: .78rem; color: var(--gold); font-weight: 600; text-transform: uppercase; letter-spacing: .05em; margin-bottom: .4rem; }
.sp-qual  { font-size: .78rem; color: var(--slate); margin-bottom: .3rem; }
.sp-loc   { font-size: .75rem; color: var(--slate); margin-bottom: .7rem; }
.sp-loc i { color: var(--gold); }
.sp-bio   { font-size: .82rem; color: var(--slate); line-height: 1.7; flex: 1; margin-bottom: .9rem; }
.sp-links { display: flex; gap: .5rem; flex-wrap: wrap; margin-top: auto; }
.sp-link-btn { display: inline-flex; align-items: center; gap: .35rem; font-size: .73rem; font-weight: 600; padding: .35rem .8rem; border-radius: 50px; text-decoration: none; background: var(--cream); color: var(--navy); border: 1px solid var(--border); transition: var(--transition); }
.sp-link-btn:hover { background: var(--navy); color: #fff; }
.sp-link-btn.sp-li { background: #e8f0fe; color: #0a66c2; border-color: #c5d8ff; }
.sp-link-btn.sp-li:hover { background: #0a66c2; color: #fff; }

/* ── TEAM: Partner Row Card ── */
.partner-row-card {
  display: flex; gap: .85rem; align-items: flex-start;
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); padding: .9rem 1rem;
  box-shadow: var(--shadow-sm); height: 100%;
  transition: var(--transition);
}
.partner-row-card:hover { border-color: var(--gold-glow-sm); box-shadow: var(--shadow-md); }
.prc-avatar { flex-shrink: 0; width: 100px; height: 100px; border-radius: 50%; overflow: hidden; border: 2px solid var(--border); }
.prc-avatar img { width: 100%; height: 100%; object-fit: cover; }
.prc-initials { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: var(--navy); color: #fff; font-size: .8rem; font-weight: 700; }
.prc-info { flex: 1; min-width: 0; }
.prc-name  { font-size: .85rem; font-weight: 700; color: var(--navy); margin-bottom: .1rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.prc-desig { font-size: .72rem; color: var(--gold); font-weight: 600; margin-bottom: .1rem; }
.prc-qual  { font-size: .7rem; color: var(--slate); margin-bottom: .2rem; }
.prc-loc   { font-size: .68rem; color: var(--slate); margin-bottom: .3rem; }
.prc-loc i { color: var(--gold); font-size: .65rem; }
.prc-links { display: flex; gap: .4rem; }
.prc-links a { color: var(--slate); font-size: .8rem; text-decoration: none; transition: color .15s; }
.prc-links a:hover { color: var(--navy); }

/* ── TEAM: Manager Card ── */
.mgr-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.1rem;
  text-align: center; box-shadow: var(--shadow-sm);
  transition: var(--transition); height: 100%;
}
.mgr-card:hover { border-color: var(--gold); box-shadow: var(--shadow-md); }
.mgr-avatar { width: 110px; height: 110px; border-radius: 50%; overflow: hidden; margin: 0 auto .7rem; border: 2px solid var(--border); }
.mgr-avatar img { width: 100%; height: 100%; object-fit: cover; }
.mgr-initials { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: var(--navy); color: #fff; font-size: .85rem; font-weight: 700; }
.mgr-name  { font-size: .85rem; font-weight: 700; color: var(--navy); margin-bottom: .1rem; }
.mgr-desig { font-size: .72rem; color: var(--gold); font-weight: 600; margin-bottom: .2rem; }
.mgr-qual  { font-size: .7rem; color: var(--slate); margin-bottom: .2rem; }
.mgr-loc   { font-size: .68rem; color: var(--slate); margin-bottom: .4rem; }
.mgr-loc i { color: var(--gold); font-size: .65rem; }
.mgr-links { display: flex; justify-content: center; gap: .5rem; }
.mgr-links a { color: var(--slate); font-size: .85rem; text-decoration: none; transition: color .15s; }
.mgr-links a:hover { color: var(--navy); }

/* ── Team page: tighter section spacing ── */
.team-page .section-pad { padding: 3rem 0; }

/* Join banner */
.join-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--radius-xl); padding: 2.5rem 3rem;
  position: relative; overflow: hidden;
}
.join-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(255,184,28,.1) 0%, transparent 55%);
}
.join-banner > .row { position: relative; z-index: 1; }
.join-title { font-size: 1.35rem; color: var(--white); margin-bottom: .5rem; }
.join-text  { font-size: .9rem; color: rgba(255,255,255,.68); margin: 0; line-height: 1.75; }

/* ═══════════════════════════════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════════════════════════════ */
.contact-info-blocks { display: flex; flex-direction: column; gap: 1.4rem; }
.contact-info-item   { display: flex; align-items: flex-start; gap: 1rem; }
.contact-info-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, rgba(255,184,28,.14) 0%, rgba(255,184,28,.06) 100%);
  color: var(--gold); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0; margin-top: .2rem;
  box-shadow: 0 0 0 1px rgba(255,184,28,.2);
}
.contact-info-label { font-size: .75rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--slate); margin-bottom: .2rem; }
.contact-info-text  { font-size: .9rem; color: var(--slate-dark); margin: 0; line-height: 1.75; }
.contact-info-text a { color: var(--slate-dark); }
.contact-info-text a:hover { color: var(--gold); }

.office-cards { display: flex; flex-direction: column; gap: 1rem; }
.office-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.2rem 1.4rem;
  display: flex; gap: .9rem; align-items: flex-start;
  transition: var(--transition);
}
.office-card.primary-office { border-color: rgba(255,184,28,.3); }
.office-card:hover { box-shadow: var(--shadow-sm); border-color: rgba(255,184,28,.35); }
.office-card-icon { font-size: 1.3rem; color: var(--gold); flex-shrink: 0; margin-top: .15rem; }
.office-card-city { font-size: .82rem; font-weight: 700; color: var(--navy); margin-bottom: .25rem; }
.office-card-addr { font-size: .85rem; color: var(--slate); line-height: 1.65; margin: 0; white-space: pre-line; }

.contact-form-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}
.contact-form-title { font-size: 1.3rem; color: var(--navy); margin-bottom: .25rem; }
.contact-form-sub   { font-size: .88rem; color: var(--slate); }
.custom-input {
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: .68rem 1rem; font-size: .9rem; color: var(--slate-dark);
  background: var(--white); transition: border-color .2s, box-shadow .2s;
}
.custom-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(255,184,28,.14); outline: none;
}
.form-label { font-size: .83rem; font-weight: 600; color: var(--slate-dark); margin-bottom: .35rem; }

.map-section { height: 320px; position: relative; overflow: hidden; }
.map-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #EDE8DF 0%, var(--cream) 100%);
  display: flex; align-items: center; justify-content: center; position: relative;
}
.map-placeholder::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,184,28,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,184,28,.07) 1px, transparent 1px);
  background-size: 40px 40px;
}
.map-overlay-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem 2.5rem;
  text-align: center; box-shadow: var(--shadow-md);
  position: relative; z-index: 1;
}
.map-pin-icon { font-size: 2.5rem; color: var(--gold); margin-bottom: .8rem; text-shadow: 0 0 15px rgba(255,184,28,.4); }
.map-overlay-card h5 { color: var(--navy); margin-bottom: .4rem; }
.map-overlay-card p  { font-size: .88rem; color: var(--slate); margin-bottom: .3rem; }

/* ═══════════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════════ */
.site-footer {
  background: linear-gradient(180deg, #071A4A 0%, var(--navy-dark) 100%);
  border-top: 1px solid rgba(255,184,28,.15);
  color: rgba(255,255,255,.85);
}
.footer-top { padding: 2.5rem 0 2rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 1.2rem 0;
  font-size: .78rem; color: rgba(255,255,255,.38);
}
.footer-bottom a { color: rgba(255,255,255,.38); }

/* Footer social icons */
.footer-social {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; border-radius: 6px;
  font-size: .85rem; color: #fff;
  transition: opacity .2s, transform .2s;
}
.footer-social:hover { opacity: .85; transform: translateY(-2px); color: #fff; }
.footer-social--instagram { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }
.footer-social--facebook  { background: #1877F2; }
.footer-social--linkedin  { background: #0A66C2; }
.footer-social--twitter   { background: #000; }
.footer-social--youtube   { background: #FF0000; }

.footer-brand { display: flex; align-items: center; }
.brand-emblem-sm { width: 36px; height: 36px; font-size: .75rem; }
.footer-desc { font-size: .875rem; color: rgba(255,255,255,.5); line-height: 1.8; margin: 0; }

.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.55); border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1rem; transition: var(--transition);
  border: 1px solid rgba(255,255,255,.08);
}
.footer-social a:hover { background: var(--gold); color: var(--navy); box-shadow: var(--glow-gold); border-color: var(--gold); }

.footer-heading {
  font-family: 'Inter', sans-serif;
  font-size: .7rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.2rem;
}
.footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .28rem; }
.footer-links a {
  font-size: .8rem; color: rgba(255,255,255,.9);
  transition: var(--transition);
  display: flex; align-items: baseline; gap: .35rem;
}
.footer-links a::before {
  content: '›';
  color: var(--gold);
  font-size: .9rem;
  flex-shrink: 0;
}
.footer-links a:hover { color: var(--gold-light); }

.footer-cat-label {
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: var(--gold-light);
  margin-bottom: .4rem;
  padding-bottom: .25rem;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer-heading { margin-bottom: .6rem !important; }

.footer-contact-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 1rem; }
.footer-contact-list li {
  display: flex; align-items: flex-start; gap: .75rem;
  font-size: .875rem; color: rgba(255,255,255,.48);
}
.footer-contact-list li i { color: var(--gold); margin-top: .2rem; flex-shrink: 0; }
.footer-contact-list a { color: rgba(255,255,255,.48); }
.footer-contact-list a:hover { color: var(--gold-light); }
.footer-disclaimer { font-size: .72rem; color: rgba(255,255,255,.85); }

/* ═══════════════════════════════════════════════════════════════
   NAV DROPDOWNS (shared)
═══════════════════════════════════════════════════════════════ */
.nav-dropdown-menu {
  --bs-dropdown-border-color: transparent;
  min-width: 300px;
  padding: .5rem;
  border: none !important;
  border-top: 3px solid var(--gold) !important;
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: 0 8px 40px rgba(10,20,50,.15);
  background: #fff;
  margin-top: -1px !important;
}
.nav-dropdown-item {
  display: flex !important;
  align-items: center;
  gap: .85rem;
  padding: .65rem .75rem !important;
  border-radius: 8px;
  transition: background .18s, color .18s;
  color: var(--text-dark) !important;
}
.nav-dropdown-item:hover,
.nav-dropdown-item:focus {
  background: rgba(180,145,75,.08) !important;
  color: var(--navy) !important;
}
.nav-dd-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem; color: #fff;
}
.nav-dd-text {
  display: flex; flex-direction: column; line-height: 1.35;
}
.nav-dd-text strong { font-size: .85rem; font-weight: 600; color: var(--navy); }
.nav-dd-text small  { font-size: .72rem; color: var(--text-muted); }
.nav-dropdown-item:hover .nav-dd-text strong { color: var(--gold); }
.nav-dd-divider { margin: .35rem .75rem; border-color: var(--border); }

/* ── SERVICES MEGA-MENU ── */
@media (min-width: 992px) {
  /* Both Services and Research anchor to their own nav item */
  .mega-menu-parent { position: relative !important; }

  .mega-menu {
    --bs-dropdown-border-color: transparent;
    position: absolute !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: min(560px, 96vw);
    padding: .75rem !important;
    border: none !important;
    border-top: 3px solid var(--gold) !important;
    border-radius: 0 0 var(--radius) var(--radius);
    box-shadow: 0 8px 40px rgba(10,20,50,.15);
    background: #fff;
    margin-top: -1px !important;
    outline: none;
  }

  /* Research dropdown — anchored to the nav item, auto width */
  .research-mega-menu {
    left: 0 !important;
    transform: none !important;
    width: auto !important;
    min-width: 160px !important;
  }

  /* remove focus ring on Services toggle */
  .mega-menu-parent > .nav-link:focus,
  .mega-menu-parent > .nav-link:focus-visible,
  .mega-menu-parent > .nav-link:focus-within {
    outline: none !important;
    box-shadow: none !important;
  }

  /* hide navbar border under open dropdown */
  .mega-menu-parent.show {
    border-bottom: none;
  }

  .nav-item.dropdown:hover > .dropdown-menu,
  .nav-item.dropdown:hover > .nav-link-split > .dropdown-menu { display: block; }
  .nav-item.dropdown > .dropdown-toggle::after,
  .nav-item.dropdown .nav-link-caret::after { transition: transform .2s; }
  .nav-item.dropdown:hover .nav-link-caret::after { transform: rotate(180deg); }
}

.mega-menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

/* 4-column grouped layout */
.mega-menu-grouped {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.mega-col {
  padding: .25rem 0;
  border-right: 1px solid #f0f0f0;
}
.mega-col:last-child { border-right: none; }

.mega-col-head {
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--navy);
  padding: .5rem 1rem .4rem;
  margin-bottom: .2rem;
  border-bottom: 2px solid var(--gold);
  margin-left: .5rem;
  margin-right: .5rem;
}

.research-mega-grid { grid-template-columns: 1fr !important; }
.research-mega-menu .mega-svc-item { padding: .5rem .75rem; white-space: nowrap; }

.mega-svc-item {
  display: block;
  padding: .32rem .7rem;
  font-size: .75rem;
  font-weight: 500;
  color: var(--text-dark);
  text-decoration: none;
  border-left: 2px solid transparent;
  transition: background .15s, color .15s, border-color .15s;
  line-height: 1.35;
}
.mega-svc-item:hover {
  background: rgba(180,145,75,.07);
  color: var(--gold);
  border-left-color: var(--gold);
}

/* ── TWO-PANEL TABBED MEGA-MENU ── */
.mega-menu-tabbed {
  padding: 0 !important;
  overflow: hidden;
}
/* Show as flex (not block) when Bootstrap or CSS hover opens it */
.mega-menu-tabbed.show,
.nav-item.dropdown:hover > .mega-menu-tabbed {
  display: flex !important;
}

/* Left sidebar — category tabs */
.mmt-tabs {
  display: flex;
  flex-direction: column;
  width: 155px;
  min-width: 155px;
  background: var(--navy);
  padding: .3rem 0;
}

.mmt-tab {
  display: flex;
  align-items: center;
  gap: .45rem;
  padding: .5rem .8rem;
  color: rgba(255,255,255,.78);
  font-size: .75rem;
  font-weight: 500;
  cursor: pointer;
  border-left: 3px solid transparent;
  transition: background .15s, color .15s, border-color .15s;
  user-select: none;
}
.mmt-tab i:first-child { font-size: .8rem; flex-shrink: 0; }
.mmt-tab .mmt-arrow { margin-left: auto; font-size: .6rem; opacity: .5; }

.mmt-tab:hover {
  background: rgba(255,255,255,.08);
  color: var(--gold-light);
  border-left-color: var(--gold-light);
}
.mmt-tab.active {
  background: rgba(255,255,255,.13);
  color: #fff;
  border-left-color: var(--gold);
  font-weight: 600;
}
.mmt-tab.active .mmt-arrow { opacity: 1; color: var(--gold); }

.mmt-all-link {
  display: block;
  margin-top: auto;
  padding: .5rem .8rem;
  font-size: .7rem;
  font-weight: 600;
  color: var(--gold-light);
  text-decoration: none;
  border-top: 1px solid rgba(255,255,255,.12);
  letter-spacing: .02em;
  transition: color .15s;
}
.mmt-all-link:hover { color: #fff; }

/* Right panel — service links */
.mmt-panels {
  flex: 1;
  background: #fff;
  padding: .75rem .85rem;
  min-height: 0;
}

.mmt-panel { display: none; }
.mmt-panel.active { display: block; }

/* CSS-only fallback: show panel matching hovered tab */
.mega-menu-tabbed:has(.mmt-tab[data-panel="secretarial"]:hover) #mmt-secretarial,
.mega-menu-tabbed:has(.mmt-tab[data-panel="legal"]:hover) #mmt-legal,
.mega-menu-tabbed:has(.mmt-tab[data-panel="finance"]:hover) #mmt-finance,
.mega-menu-tabbed:has(.mmt-tab[data-panel="others"]:hover) #mmt-others { display: block; }

.mega-menu-tabbed:has(.mmt-tab[data-panel="secretarial"]:hover) .mmt-tab[data-panel="secretarial"],
.mega-menu-tabbed:has(.mmt-tab[data-panel="legal"]:hover) .mmt-tab[data-panel="legal"],
.mega-menu-tabbed:has(.mmt-tab[data-panel="finance"]:hover) .mmt-tab[data-panel="finance"],
.mega-menu-tabbed:has(.mmt-tab[data-panel="others"]:hover) .mmt-tab[data-panel="others"] {
  background: rgba(255,255,255,.13); color: #fff; border-left-color: var(--gold); font-weight: 600;
}

.mmt-panel-label {
  font-size: .62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: var(--navy);
  margin-bottom: .5rem;
  padding-bottom: .3rem;
  border-bottom: 2px solid var(--gold);
}

.mmt-panel-grid {
  display: flex;
  flex-direction: column;
}

/* ═══════════════════════════════════════════════════════════════
   PAN-INDIA PRESENCE MAP
═══════════════════════════════════════════════════════════════ */
#india-map {
  height: 460px;
  border-radius: var(--radius-lg);
  border: 2px solid var(--border);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  z-index: 0;
}

.map-pin {
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 0 6px rgba(0,0,0,.4);
}
.hq-pin {
  width: 18px; height: 18px;
  background: var(--gold);
}
.branch-pin {
  width: 12px; height: 12px;
  background: var(--navy);
}

.presence-legend {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid var(--border);
}
.presence-hq {
  display: flex;
  gap: .85rem;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.presence-hq strong { font-size: .9rem; color: var(--navy); display: block; margin-bottom: .25rem; }
.presence-hq p { font-size: .78rem; color: var(--slate); margin: 0; line-height: 1.55; }

.presence-dot {
  display: inline-block;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 4px;
  border: 2px solid #fff;
  box-shadow: 0 0 4px rgba(0,0,0,.25);
}
.presence-dot.hq     { width: 14px; height: 14px; background: var(--gold); }
.presence-dot.branch { width: 10px; height: 10px; background: var(--navy); }

.presence-branch-label {
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--slate);
  margin-bottom: .6rem;
}
.presence-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .3rem 0;
}
.presence-city {
  display: flex;
  align-items: center;
  gap: .45rem;
  font-size: .8rem;
  color: var(--slate-dark);
}

/* ── HQ close-up map ── */
#hq-map {
  height: 220px;
  border-radius: var(--radius);
  border: 2px solid var(--border);
  overflow: hidden;
  z-index: 0;
}

/* ── HQ detail card ── */
.location-hq-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}
.loc-card-title { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: .5rem; }
.loc-card-addr  { font-size: .9rem; color: var(--slate); line-height: 1.75; margin-bottom: 1rem; }
.loc-contact-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .4rem; }
.loc-contact-list li { display: flex; align-items: center; gap: .5rem; font-size: .85rem; color: var(--slate); }
.loc-contact-list i  { color: var(--gold); font-size: .9rem; }
.loc-contact-list a  { color: var(--slate); text-decoration: none; }
.loc-contact-list a:hover { color: var(--navy); }

/* ── Branch cards ── */
.branch-card {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .75rem 1rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: .85rem;
  font-weight: 500;
  color: var(--slate-dark);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.branch-card i { color: var(--gold); font-size: 1rem; }
.branch-card:hover { border-color: var(--gold); color: var(--navy); box-shadow: var(--shadow-md); }

/* ═══════════════════════════════════════════════════════════════
   CORPORATE TRAINING
═══════════════════════════════════════════════════════════════ */
.training-page .section-pad { padding: 3rem 0; }
@media (max-width: 767.98px) {
  .training-page .section-pad { padding: 2rem 0; }
}

/* Training bullet list */
.training-bullet-list {
  list-style: none; padding: 0; margin: 1.5rem 0 0;
}
.training-bullet-list li {
  position: relative;
  padding: .75rem 0 .75rem 1.4rem;
  border-bottom: 1px solid var(--border);
  font-size: .93rem; color: var(--text-muted);
  line-height: 1.7;
}
.training-bullet-list li::before {
  content: '';
  position: absolute; left: 0; top: 1.3rem;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold);
}

/* Impact box */
.training-impact-box {
  background: var(--navy);
  border-top: 3px solid var(--gold);
  padding: 2.5rem;
  border-radius: 0 0 var(--radius) var(--radius);
}
.training-impact-box h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem; font-weight: 700;
  color: #fff; margin-bottom: 1.1rem;
}
.training-impact-box p { font-size: .88rem; color: rgba(255,255,255,.72); margin-bottom: .8rem; }
.training-impact-box p:last-child { margin-bottom: 0; }

/* Regulation box */
.training-reg-box {
  background: var(--surface);
  border-left: 3px solid var(--gold);
  padding: 1.6rem;
}
.training-reg-box h5 {
  font-family: 'Playfair Display', serif;
  font-size: .95rem; font-weight: 700;
  color: var(--navy); margin-bottom: .8rem;
}
.training-reg-box p { font-size: .85rem; color: var(--text-muted); margin: 0; }
.training-reg-box .mt-2 { margin-top: .6rem; }

/* Quote box */
.training-quote-box {
  background: var(--surface);
  border-top: 3px solid var(--gold);
  padding: 2rem 2rem;
}
.training-quote-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem; font-style: italic; font-weight: 500;
  color: var(--navy); line-height: 1.6; margin: 0;
}

/* Who would benefit */
.training-who-box {
  background: var(--navy);
  border-top: 3px solid var(--gold);
  padding: 2rem 2rem;
}
.training-who-box h5 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem; font-weight: 700;
  color: var(--gold); margin-bottom: .6rem;
  text-transform: uppercase; letter-spacing: .06em;
}
.training-who-box > p { font-size: .88rem; color: rgba(255,255,255,.7); margin-bottom: .9rem; }
.training-audience-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: .4rem .5rem;
}
.training-audience-grid span {
  font-size: .8rem; color: rgba(255,255,255,.78);
  display: flex; align-items: center;
}
.training-audience-grid i { color: var(--gold); }

/* Topics grid */
.training-topics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.training-topic-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-bottom: 3px solid transparent;
  padding: 1.6rem 1.2rem;
  border-radius: var(--radius);
  transition: var(--transition);
}
.training-topic-card:hover {
  border-bottom-color: var(--gold);
  box-shadow: 0 8px 28px rgba(10,20,50,.09);
  transform: translateY(-3px);
}
.training-topic-card--accent {
  background: var(--navy);
  border-color: var(--gold);
}
.training-topic-card--accent .training-topic-name { color: rgba(255,255,255,.85); }
.training-topic-icon { font-size: 1.7rem; display: block; margin-bottom: .75rem; }
.training-topic-name { font-size: .83rem; font-weight: 500; color: var(--navy); line-height: 1.45; margin: 0; }

/* Speaker cards */
.training-speaker-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  padding: 2rem 1.8rem;
  height: 100%;
  transition: var(--transition);
}
.training-speaker-card:hover {
  box-shadow: 0 12px 40px rgba(10,20,50,.1);
  transform: translateY(-3px);
}
.training-speaker-avatar {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; font-weight: 700;
  color: var(--gold);
  margin-bottom: 1.1rem;
  letter-spacing: .02em;
}
.training-speaker-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem; font-weight: 700;
  color: var(--navy); margin-bottom: .2rem;
}
.training-speaker-role {
  font-size: .7rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: .9rem;
}
.training-speaker-bio {
  font-size: .83rem; color: var(--text-muted); line-height: 1.65; margin: 0;
}

/* About / stats */
.training-stats-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; background: var(--border);
  border: 1px solid var(--border);
}
.training-stat {
  background: #fff;
  padding: 1.8rem 1.5rem;
  text-align: center;
}
.training-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem; font-weight: 900;
  color: var(--gold); line-height: 1;
  display: block; margin-bottom: .3rem;
}
.training-stat-lbl {
  font-size: .73rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: var(--text-muted);
}
.training-offices-box {
  background: var(--surface);
  border-left: 3px solid var(--gold);
  padding: 1.2rem 1.4rem;
}
.training-offices-box h6 {
  font-family: 'Inter', sans-serif;
  font-size: .7rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--navy); margin-bottom: .4rem;
}
.training-offices-box p { font-size: .83rem; color: var(--text-muted); margin: 0; }

/* Gallery */
.training-gallery-img {
  width: 100%; height: auto; display: block;
  border-radius: var(--radius);
  border: 2px solid var(--border);
  box-shadow: 0 8px 40px rgba(10,20,50,.1);
}

@media (max-width: 991.98px) {
  .training-topics-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 767.98px) {
  .training-topics-grid { grid-template-columns: repeat(2, 1fr); }
  .training-audience-grid { grid-template-columns: 1fr; }
  .training-stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ═══════════════════════════════════════════════════════════════
   SERVICE DETAIL PAGE
═══════════════════════════════════════════════════════════════ */

/* ── Left sidebar nav ── */
.svc-sidebar-nav {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.svc-sidebar-nav-item {
  display: flex;
  align-items: center;
  gap: .7rem;
  padding: .75rem 1rem;
  text-decoration: none;
  font-size: .82rem;
  font-weight: 500;
  color: var(--text-dark);
  border-left: 3px solid transparent;
  border-bottom: 1px solid var(--border);
  background: #fff;
  transition: background .18s, color .18s, border-color .18s;
  line-height: 1.35;
}
.svc-sidebar-nav-item:last-child { border-bottom: none; }
.svc-sidebar-nav-item:hover {
  background: rgba(180,145,75,.06);
  color: var(--gold);
  border-left-color: var(--gold);
}
.svc-sidebar-nav-item.active {
  background: var(--navy);
  color: #fff;
  border-left-color: var(--gold);
}
.svc-sidebar-nav-icon {
  width: 28px; height: 28px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: .88rem;
  color: var(--gold);
}
.svc-sidebar-nav-item.active .svc-sidebar-nav-icon { color: var(--gold); }
.svc-sidebar-nav-text { flex: 1; }
.svc-sidebar-nav-arrow {
  font-size: .65rem;
  color: var(--text-muted);
  flex-shrink: 0;
  opacity: 0;
  transition: opacity .15s, transform .15s;
}
.svc-sidebar-nav-item:hover .svc-sidebar-nav-arrow,
.svc-sidebar-nav-item.active .svc-sidebar-nav-arrow {
  opacity: 1;
  color: var(--gold);
}

/* ── Right content panel ── */
.svc-content-panel {
  padding: 2.5rem 2.8rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  min-height: 500px;
}
.svc-content-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .6rem;
  line-height: 1.2;
}
.svc-content-rule {
  width: 52px; height: 3px;
  background: var(--gold);
  margin-bottom: 1.4rem;
}
.svc-content-lead {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--navy);
  line-height: 1.65;
  margin-bottom: 1rem;
}
.svc-content-body {
  font-size: .92rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.svc-content-points-heading {
  font-family: 'Inter', sans-serif;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: .9rem;
}
.svc-content-points {
  list-style: none;
  padding: 0; margin: 0;
}
.svc-content-points li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  padding: .55rem 0;
  border-bottom: 1px solid var(--border);
  font-size: .88rem;
  color: var(--text-dark);
  line-height: 1.55;
}
.svc-content-points li:last-child { border-bottom: none; }
.svc-point-dash {
  color: var(--gold);
  font-size: .7rem;
  margin-top: .35rem;
  flex-shrink: 0;
}

/* ── Prev / Next ── */
.svc-prevnext {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 1.2rem 0;
}
.svc-prevnext-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.svc-prevnext-btn {
  display: flex;
  flex-direction: column;
  gap: .2rem;
  text-decoration: none;
  max-width: 46%;
}
.svc-pn-dir {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
}
.svc-pn-title {
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy);
  transition: color .18s;
}
.svc-prevnext-btn:hover .svc-pn-title { color: var(--gold); }

/* ── services listing page tweaks ── */
.svc-more-hint {
  color: var(--text-muted) !important;
  font-style: italic;
  font-size: .82rem;
}

@media (max-width: 991.98px) {
  .svc-content-panel { padding: 1.5rem; }
}

/* ═══════════════════════════════════════════════════════════════
   RESEARCH (MCA / RBI UPDATES)
═══════════════════════════════════════════════════════════════ */
.research-intro-bar {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 1.2rem 0;
}
.research-intro-eyebrow {
  font-size: .68rem; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--gold); margin-bottom: .25rem;
}
.research-intro-desc {
  font-size: .83rem; color: var(--text-muted); margin: 0;
}

/* Category switcher */
.research-switcher {
  display: flex; gap: .5rem; flex-wrap: wrap;
}
.research-switch-btn {
  display: inline-flex; align-items: center;
  padding: .55rem 1.3rem;
  font-size: .8rem; font-weight: 600; letter-spacing: .04em;
  border: 1.5px solid var(--border);
  border-radius: 30px;
  color: var(--text-muted);
  background: var(--surface);
  text-decoration: none;
  transition: var(--transition);
}
.research-switch-btn:hover {
  border-color: var(--gold); color: var(--gold);
}
.research-switch-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

/* Post cards */
.research-card-link {
  text-decoration: none; display: block; height: 100%;
}
.research-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 3px solid transparent;
  border-radius: var(--radius);
  overflow: hidden;
  height: 100%;
  display: flex; flex-direction: column;
  transition: var(--transition);
  padding: 0;
}
.research-card-img {
  width: 100%; aspect-ratio: 16/7; overflow: hidden;
}
.research-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s ease;
}
.research-card-link:hover .research-card-img img { transform: scale(1.04); }
.research-card-body {
  padding: 1.4rem; display: flex; flex-direction: column; flex: 1;
}
.research-card-link:hover .research-card {
  border-top-color: var(--gold);
  box-shadow: 0 8px 32px rgba(10,20,50,.1);
  transform: translateY(-4px);
}
.research-card-top {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1rem; flex-wrap: wrap; gap: .4rem;
}
.research-card-badge {
  font-size: .68rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase;
  background: rgba(180,145,75,.12);
  color: var(--gold);
  border: 1px solid rgba(180,145,75,.3);
  padding: .2rem .6rem; border-radius: 20px;
}
.research-card-date {
  font-size: .72rem; color: var(--text-muted);
}
.research-card-title {
  font-family: 'Playfair Display', serif;
  font-size: .98rem; font-weight: 600;
  color: var(--navy); line-height: 1.4;
  margin-bottom: .75rem; flex: 1;
}
.research-card-link:hover .research-card-title { color: var(--gold); }
.research-card-excerpt {
  font-size: .81rem; color: var(--text-muted);
  line-height: 1.6; margin-bottom: 1rem;
}
.research-card-footer {
  font-size: .78rem; font-weight: 600;
  color: var(--gold); margin-top: auto;
}

/* RBI vertical list */
.rbi-list { display: flex; flex-direction: column; gap: 1.25rem; }
.rbi-list-item {
  display: flex; gap: 1.25rem; align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid transparent;
  border-radius: var(--radius);
  padding: 1.25rem;
  text-decoration: none;
  transition: var(--transition);
}
.rbi-list-item:hover {
  border-left-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}
.rbi-list-img {
  flex-shrink: 0; width: 140px; height: 90px;
  border-radius: 6px; overflow: hidden;
}
.rbi-list-img img {
  width: 100%; height: 100%; object-fit: cover;
}
.rbi-list-body { flex: 1; min-width: 0; }
.rbi-list-meta {
  display: flex; align-items: center; gap: .75rem;
  margin-bottom: .5rem; flex-wrap: wrap;
}
.rbi-list-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem; font-weight: 600;
  color: var(--navy); line-height: 1.4;
  margin-bottom: .45rem;
}
.rbi-list-item:hover .rbi-list-title { color: var(--gold); }
.rbi-list-excerpt {
  font-size: .83rem; color: var(--slate);
  line-height: 1.6; margin-bottom: .5rem;
}
.rbi-list-read {
  font-size: .78rem; font-weight: 600;
  color: var(--gold); letter-spacing: .02em;
}
.rbi-list-item--no-img .rbi-list-body { width: 100%; }
@media (max-width: 575px) {
  .rbi-list-item { flex-direction: column; }
  .rbi-list-img { width: 100%; height: 160px; }
}

/* RBI post detail page */
.rbi-post-img-wrap { border-radius: var(--radius-lg); overflow: hidden; display: inline-block; max-width: 480px; }
.rbi-post-img { width: 100%; max-height: 180px; object-fit: cover; object-position: left center; display: block; }
.rbi-post-meta { display: flex; align-items: center; flex-wrap: wrap; gap: .75rem; }
.rbi-post-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.65rem; font-weight: 700;
  color: var(--navy); line-height: 1.3;
}
.rbi-post-content {
  font-size: .97rem; color: var(--slate);
  line-height: 1.85;
}
.rbi-post-link { font-size: .85rem; color: var(--slate); word-break: break-all; }
.rbi-post-link-label { font-weight: 600; color: var(--navy); margin-right: .35rem; }
.rbi-post-link a { color: var(--navy); text-decoration: underline; }
.rbi-post-link a:hover { color: var(--gold-dark); }
.rbi-post-source { border-top: 1px solid var(--border); padding-top: 2rem; }
.rbi-inline-link {
  display: inline-block;
  margin: .4rem 0;
  font-size: .82rem; font-weight: 600;
  color: var(--navy);
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: .3rem .85rem;
  text-decoration: none;
  transition: var(--transition);
}
.rbi-inline-link:hover {
  background: var(--navy); color: #fff; border-color: var(--navy);
}
.rbi-link-url {
  font-size: .78rem; color: var(--slate);
  margin-left: .6rem; word-break: break-all;
  vertical-align: middle;
}

/* ── SEBI PDF viewer ─────────────────────────────────────────────────── */
.sebi-pdf-wrap {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 2rem;
}
.sebi-pdf-header {
  display: flex;
  align-items: center;
  padding: .75rem 1.25rem;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  font-weight: 600;
  font-size: .9rem;
  color: var(--navy);
}
.sebi-pdf-download {
  font-size: .8rem;
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
}
.sebi-pdf-download:hover { color: var(--navy); }
.sebi-pdf-embed {
  width: 75%;
  height: 520px;
  display: block;
  border: none;
  margin: 0 auto;
}
.sebi-pdf-external {
  text-align: center;
  padding: 3rem;
  background: var(--cream);
}

/* ── Services listing page ───────────────────────────────────────────────── */
.svc-card-link { text-decoration: none; display: block; height: 100%; }
.svc-list-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: .9rem;
  transition: var(--transition);
}
.svc-list-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.svc-list-icon {
  width: 48px; height: 48px;
  background: var(--cream);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: var(--gold);
  flex-shrink: 0;
}
.svc-list-title {
  font-size: 1rem; font-weight: 700;
  color: var(--navy); margin: 0;
  line-height: 1.35;
}
.svc-list-short {
  font-size: .83rem; color: var(--slate);
  line-height: 1.6; margin: 0;
  flex-grow: 1;
}
.svc-list-more {
  font-size: .8rem; font-weight: 600;
  color: var(--gold);
}
.svc-list-card:hover .svc-list-more { color: var(--navy); }

/* Research pagination */
.research-pagination .page-link {
  border-color: var(--border); color: var(--navy);
  font-size: .82rem; padding: .4rem .75rem;
}
.research-pagination .page-item.active .page-link {
  background: var(--navy); border-color: var(--navy); color: #fff;
}
.research-pagination .page-link:hover {
  background: var(--cream); color: var(--gold);
}

/* ═══════════════════════════════════════════════════════════════
   CAREERS
═══════════════════════════════════════════════════════════════ */
.careers-perks-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
}
.careers-perk {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: .8rem 1rem;
  transition: var(--transition);
  display: flex;
  align-items: flex-start;
  gap: .7rem;
}
.careers-perk:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(180,145,75,.12);
}
.careers-perk-icon {
  width: 30px; height: 30px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; color: #fff;
  flex-shrink: 0;
}
.careers-perk h6 {
  font-family: 'Inter', sans-serif;
  font-size: .78rem; font-weight: 700;
  color: var(--navy); margin-bottom: .15rem;
}
.careers-perk p {
  font-size: .74rem; color: var(--text-muted); margin: 0; line-height: 1.4;
}

/* Job Cards */
.job-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.6rem;
  height: 100%;
  display: flex; flex-direction: column;
  transition: var(--transition);
}
.job-card:hover {
  border-color: var(--gold);
  box-shadow: 0 6px 28px rgba(180,145,75,.13);
  transform: translateY(-4px);
}
.job-card-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1rem;
}
.job-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem; color: #fff;
}
.job-type-badge {
  font-size: .7rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase;
  background: rgba(180,145,75,.12);
  color: var(--gold);
  border: 1px solid rgba(180,145,75,.3);
  padding: .25rem .65rem; border-radius: 20px;
}
.job-title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem; font-weight: 600;
  color: var(--navy); margin-bottom: .6rem;
}
.job-meta {
  display: flex; flex-wrap: wrap; gap: .5rem 1.2rem;
  font-size: .78rem; color: var(--text-muted);
  margin-bottom: .8rem;
}
.job-desc {
  font-size: .83rem; color: var(--text-muted);
  line-height: 1.55; flex: 1; margin-bottom: .5rem;
}

/* Resume Upload */
.resume-upload-area {
  position: relative;
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 2rem 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}
.resume-upload-area:hover,
.resume-upload-area.drag-over {
  border-color: var(--gold);
  background: rgba(180,145,75,.04);
}
.resume-upload-area.has-file {
  border-color: var(--gold);
  background: rgba(180,145,75,.06);
}
.resume-file-input {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  opacity: 0; cursor: pointer; z-index: 2;
}
.resume-upload-icon {
  font-size: 2.2rem;
  color: var(--gold);
  display: block; margin-bottom: .6rem;
}
.resume-upload-text {
  font-size: .9rem; color: var(--text-dark);
  margin-bottom: .2rem;
}
.resume-upload-hint {
  font-size: .75rem; color: var(--text-muted); margin: 0;
}
.resume-file-name {
  font-size: .82rem; font-weight: 600;
  color: var(--gold); margin-top: .5rem; margin-bottom: 0;
}

/* ═══════════════════════════════════════════════════════════════
   EVENTS ALBUMS & GALLERY
═══════════════════════════════════════════════════════════════ */
/* Album card */
.ev-album-card {
  display: block; text-decoration: none;
  border-radius: 12px; overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform .3s, box-shadow .3s;
}
.ev-album-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.ev-album-thumb {
  position: relative; aspect-ratio: 4/3; overflow: hidden;
}
.ev-album-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.ev-album-card:hover .ev-album-thumb img { transform: scale(1.06); }
.ev-album-overlay {
  position: absolute; inset: 0;
  background: rgba(7,26,74,.55);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: .4rem; color: #fff;
  font-size: 1.8rem;
  opacity: 0; transition: opacity .3s;
}
.ev-album-overlay span { font-size: .85rem; font-weight: 600; letter-spacing: .05em; }
.ev-album-card:hover .ev-album-overlay { opacity: 1; }
.ev-album-info {
  background: #fff; padding: 1rem 1.2rem;
  border: 1px solid var(--border); border-top: none;
  border-radius: 0 0 12px 12px;
}
.ev-album-title {
  font-size: .95rem; font-weight: 600;
  color: var(--navy-dark); margin-bottom: .4rem; line-height: 1.4;
}
.ev-album-count { font-size: .78rem; color: var(--slate); }

.event-photo-count {
  display: inline-block;
  background: var(--gold-glow-sm);
  border: 1px solid rgba(255,184,28,.3);
  color: var(--gold-dark);
  font-size: .78rem; font-weight: 600;
  padding: .3rem .9rem; border-radius: 20px;
  margin-top: .5rem;
}
.event-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 767px) { .event-gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .event-gallery-grid { grid-template-columns: 1fr; } }

.event-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 4/3;
  display: block;
  background: #e8e8e8;
}
.event-gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.event-gallery-item:hover img { transform: scale(1.07); }
.event-gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(7,26,74,.45);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .3s;
  font-size: 1.6rem; color: #fff;
}
.event-gallery-item:hover .event-gallery-overlay { opacity: 1; }

/* Lightbox */
.ev-lightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.92);
  z-index: 10000;
  display: none; align-items: center; justify-content: center;
}
.ev-lightbox.active { display: flex; }
.ev-lb-img-wrap { max-width: 90vw; max-height: 88vh; }
.ev-lb-img-wrap img { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: 6px; }
.ev-lb-close, .ev-lb-prev, .ev-lb-next {
  position: absolute;
  background: rgba(255,255,255,.12);
  border: none; color: #fff;
  border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.ev-lb-close:hover, .ev-lb-prev:hover, .ev-lb-next:hover { background: rgba(255,255,255,.25); }
.ev-lb-close { top: 18px; right: 18px; width: 40px; height: 40px; font-size: 1rem; }
.ev-lb-prev  { left: 16px;  top: 50%; transform: translateY(-50%); width: 44px; height: 44px; font-size: 1.2rem; }
.ev-lb-next  { right: 16px; top: 50%; transform: translateY(-50%); width: 44px; height: 44px; font-size: 1.2rem; }
.ev-lb-counter { position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,.7); font-size: .82rem; }

/* ═══════════════════════════════════════════════════════════════
   WHATSAPP FLOATING BUTTON
═══════════════════════════════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  z-index: 9999;
  transition: transform .2s, box-shadow .2s;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,.6);
}
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,.4);
  animation: wa-pulse 2s ease-out infinite;
}
@keyframes wa-pulse {
  0%   { transform: scale(1);   opacity: .8; }
  70%  { transform: scale(1.35); opacity: 0; }
  100% { transform: scale(1.35); opacity: 0; }
}

/* ═══════════════════════════════════════════════════════════════
   INDIA MAP (Hero)
═══════════════════════════════════════════════════════════════ */
.india-map-wrap {
  position: relative;
  width: 100%;
  max-width: 460px;
  z-index: 2;
}
.india-map-img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 8px 40px rgba(0,0,0,.5));
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════════ */
@media (max-width: 991.98px) {
  .timeline::before { left: 16px; }
  .timeline-item { flex-direction: column !important; padding-left: 3rem; }
  .timeline-left .timeline-content,
  .timeline-right .timeline-content { text-align: left; }
  .timeline-dot { position: absolute; left: 8px; top: 1.4rem; }
  .partner-card { flex-direction: column; text-align: center; }
  .partner-avatar { margin: 0 auto; }
  .partner-actions { justify-content: center; }
  .svc-detail-list { grid-template-columns: 1fr; }
  .about-pillars { grid-template-columns: 1fr; }
  .about-visual-panel { height: auto; min-height: 340px; }
  .avp-main { width: 100%; height: 340px; }
  .avp-badge { right: 1rem; }
}

@media (max-width: 767.98px) {
  .section-pad { padding: 3.5rem 0; }
  .hero-rings { display: none; }
  .stat-number { font-size: 1.8rem; }
  .border-end-stat { border-right: none; border-bottom: 1px solid var(--border); }
  .stat-item { padding: 1.2rem; }
  .contact-form-card { padding: 1.5rem; }
  .join-banner { padding: 1.8rem; }
  .story-img-block { height: 280px; }
}
