/* ==========================================================================
   Arvindkumar R. Maniar & Co. - Main Stylesheet
   Modern, Mobile-Friendly, High-Performance CSS with Minimal Hover Effects
   ========================================================================== */

:root {
  --navy: #0e2036;
  --navy-2: #16314c;
  --slate: #7f93a6;
  --slate-light: #c3d0dc;
  --gold: #b98a3d;
  --gold-light: #d9b36c;
  --cream: #f8f6f0;
  --cream-2: #efe9dd;
  --ink: #1c2733;
  --ink-soft: #5b6773;
  --white: #ffffff;
  --line: rgba(14, 32, 54, 0.12);
  --line-light: rgba(255, 255, 255, 0.12);
  --shadow-sm: 0 4px 12px rgba(14, 32, 54, 0.05);
  --shadow-md: 0 12px 32px rgba(14, 32, 54, 0.1);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Box Sizing */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--ink);
  background-color: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--navy);
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul, ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button, input, select, textarea {
  font-family: inherit;
}

/* Utility Classes */
.eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section {
  padding: 90px 6vw;
  position: relative;
}

.section-inner {
  max-width: 1240px;
  margin: 0 auto;
}

.section-head {
  max-width: 640px;
  margin-bottom: 48px;
}

.section-head h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
}

.section-head p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  margin-top: 12px;
}

/* ---------- HEADER & NAVIGATION ---------- */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(14, 32, 54, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-light);
  transition: var(--transition);
}

.nav-wrap {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  padding: 0;
  border: 2px solid var(--gold-light);
  overflow: hidden;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.brand-mark-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-text .name {
  font-family: 'Fraunces', serif;
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.2;
}

.brand-text .sub {
  font-size: 0.7rem;
  color: var(--slate-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

nav.menu {
  display: flex;
  align-items: center;
  gap: 6px;
}

nav.menu a.nav-link {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 20px;
  transition: var(--transition);
}

nav.menu a.nav-link:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

nav.menu a.nav-link.active {
  color: var(--gold-light);
  background: #16314c;
  border: 1px solid var(--gold-light);
  font-weight: 600;
}

.nav-cta {
  background: transparent;
  border: 1.5px solid var(--gold-light);
  color: var(--gold-light);
  padding: 9px 22px;
  border-radius: 20px;
  font-size: 0.84rem;
  font-weight: 600;
  white-space: nowrap;
  transition: var(--transition);
}

.nav-cta:hover {
  background: #16314c;
  color: var(--gold-light);
  border-color: var(--gold-light);
}

/* Burger Button (BLACK LINES AS REQUESTED) */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  z-index: 1100;
  width: 40px;
  height: 40px;
  padding: 6px;
  background: var(--white);
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  box-shadow: var(--shadow-sm);
}

.burger span {
  width: 22px;
  height: 2.5px;
  background: #000000 !important; /* BLACK LINES */
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

.burger.open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.burger.open span:nth-child(2) {
  opacity: 0;
}

.burger.open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-overlay.active {
  display: block;
  opacity: 1;
}

/* ---------- HERO SECTION ---------- */
.hero {
  position: relative;
  margin-top: 76px;
  min-height: 88vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  background: var(--navy);
  overflow: hidden;
}

.hero-left {
  position: relative;
  z-index: 3;
  padding: 80px 5vw 80px 7vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--navy);
}

.hero-left .eyebrow {
  color: var(--gold-light);
}

.hero-firm {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.7rem;
  color: var(--slate-light);
  margin-bottom: 2px;
}

.hero-name {
  font-size: clamp(2.2rem, 4.4vw, 3.8rem);
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 20px;
}

.hero-name span {
  color: var(--gold-light);
}

.hero-tagline {
  font-size: 1.18rem;
  color: var(--slate-light);
  font-weight: 500;
  max-width: 480px;
  margin-bottom: 12px;
}

.hero-desc {
  font-size: 0.96rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 480px;
  margin-bottom: 34px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-primary {
  background: #16314c;
  color: var(--white);
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  transition: var(--transition);
  border: 1.5px solid var(--gold-light);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--navy);
  border-color: var(--white);
  color: var(--white);
}

.btn-ghost {
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  color: var(--white);
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.88rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.btn-ghost:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.hero-right {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 5vw;
  background: radial-gradient(ellipse at center, rgba(22, 49, 76, 0.85) 0%, var(--navy) 85%);
  min-height: 460px;
}

.hero-image-wrapper {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 500px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 6px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(217, 179, 108, 0.35);
  transition: var(--transition);
  overflow: hidden;
}

.hero-image-wrapper:hover {
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.55), 0 0 0 1px var(--gold-light);
}

.hero-image-wrapper img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}

.hero-image-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(14, 32, 54, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(217, 179, 108, 0.4);
  border-radius: 6px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow-md);
}

.hero-image-badge .badge-title {
  font-family: 'Fraunces', serif;
  color: var(--gold-light);
  font-size: 0.95rem;
  font-weight: 600;
}

.hero-image-badge .badge-sub {
  font-size: 0.74rem;
  color: var(--slate-light);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ---------- CAROUSEL COMPONENTS (STEADY & STABLE) ---------- */
.carousel-wrap {
  position: relative;
  margin: 0 -12px;
  padding: 0 12px;
}

.carousel-container {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 12px 4px 24px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.carousel-container::-webkit-scrollbar {
  display: none;
}

/* Fixed, static Carousel Arrows */
.car-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  color: var(--navy);
  font-size: 1.1rem;
  transition: var(--transition);
}

.car-arrow:hover {
  background: var(--navy);
  color: var(--gold-light);
  border-color: var(--navy);
}

.car-arrow:active {
  transform: translateY(-50%) scale(0.95);
}

.car-arrow.left {
  left: -16px;
}

.car-arrow.right {
  right: -16px;
}

/* ---------- ABOUT THE FIRM SECTION ---------- */
.about-section {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: center;
}

.about-text-col {
  border-left: 4px solid var(--gold);
  padding-left: 28px;
}

.about-heading {
  font-size: clamp(2rem, 3.5vw, 2.5rem);
  color: var(--navy);
  margin-bottom: 20px;
}

.about-p {
  font-size: 0.98rem;
  color: var(--ink-soft);
  margin-bottom: 16px;
  line-height: 1.65;
}

.about-p:last-child {
  margin-bottom: 0;
}

.about-stats-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.stat-box {
  padding: 26px 20px;
  border-radius: var(--radius-md);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 135px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.stat-box:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.stat-box.box-navy {
  background: #183b63;
  color: var(--gold-light);
}

.stat-box.box-gold {
  background: #16314c;
  color: var(--gold-light);
  border: 1px solid rgba(217, 179, 108, 0.3);
}

.stat-box.box-dark {
  background: #0c1d30;
  color: var(--gold-light);
}

.stat-num {
  font-family: 'Fraunces', serif;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1.3;
}

/* ---------- LEADERSHIP & FOUNDER BIOGRAPHY ACCORDION ---------- */
.leadership-section {
  background: var(--cream);
}

.founder-banner-wrap {
  margin-bottom: 32px;
}

.founder-banner {
  background: #0c1d30;
  color: var(--white);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: var(--shadow-sm);
  flex-wrap: wrap;
}

.founder-left-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.founder-photo-thumb {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--gold-light);
  background: var(--white);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.founder-photo-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 50%;
}

.founder-title {
  font-family: 'Fraunces', serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
}

.founder-title .star-icon {
  color: var(--gold-light);
  font-size: 1.2rem;
}

.founder-sub-role {
  font-size: 0.8rem;
  color: var(--gold-light);
  letter-spacing: 0.05em;
}

.founder-right-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.founder-tag {
  background: #16314c;
  color: var(--gold-light);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 8px 16px;
  border-radius: 4px;
  border: 1px solid var(--gold-light);
  text-transform: uppercase;
}

.founder-toggle-btn {
  background: var(--gold);
  color: var(--navy);
  border: 1px solid var(--gold-light);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.founder-toggle-btn:hover {
  background: var(--gold-light);
  color: var(--navy);
  transform: scale(1.08);
}

.founder-toggle-btn .toggle-arrow {
  transition: transform 0.3s ease;
}

.founder-toggle-btn.active .toggle-arrow {
  transform: rotate(180deg);
}

.founder-details {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease, margin 0.3s ease;
  margin-top: 0;
}

.founder-details.open {
  max-height: 2500px;
  opacity: 1;
  margin-top: 16px;
}

.founder-details-inner {
  background: var(--white);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 28px 30px;
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.founder-bio-card {
  background: #f8fafc;
  border-radius: 6px;
  padding: 20px 24px;
  border: 1px solid var(--line);
}

.bio-card-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.bio-card-head h3 {
  font-size: 1.15rem;
  color: var(--navy);
}

.bio-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bio-list li {
  font-size: 0.92rem;
  color: var(--ink);
  line-height: 1.55;
}

.bio-list li strong {
  color: var(--navy);
}

.tributes-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.tributes-head h3 {
  font-size: 1.15rem;
  color: var(--navy);
}

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

.tribute-card {
  background: #f2f5f8;
  border-left: 3.5px solid var(--gold);
  border-radius: 6px;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.tribute-quote {
  font-size: 0.88rem;
  color: var(--ink);
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 12px;
}

.tribute-author {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--navy);
}

.tribute-role {
  font-size: 0.76rem;
  color: var(--ink-soft);
}

.partners-grid-full {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 44px;
}

.partner-card-full {
  background: var(--white);
  border-left: 4px solid #183b63;
  border-radius: var(--radius-sm);
  padding: 24px 26px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.03);
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.partner-card-full:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.partner-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.partner-avatar-wrap {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--gold-light);
  background: #f0f4f8;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-avatar-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.partner-avatar-wrap .avatar-initials {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #183b63;
}

.partner-header-info {
  flex: 1;
}

.partner-name-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.partner-name-row h3 {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 1.18rem;
  font-weight: 700;
  font-style: normal;
  color: #183b63;
  letter-spacing: -0.01em;
}

.partner-tag {
  background: #16314c;
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border-radius: 4px;
  text-transform: uppercase;
  white-space: nowrap;
  border: 1px solid var(--gold-light);
}

.partner-qual {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: #5a6e85;
  font-style: normal;
  font-weight: 500;
  margin-top: 2px;
}

.partner-card-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.partner-bio {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

.partner-expertise-box {
  background: #f8fafc;
  border-left: 3px solid var(--gold);
  border-radius: 4px;
  padding: 12px 14px;
  font-size: 0.84rem;
}

.partner-expertise-box .exp-lbl {
  font-weight: 700;
  color: #183b63;
  margin-right: 6px;
  display: inline-block;
}

.partner-expertise-box p {
  color: var(--ink);
  line-height: 1.45;
  display: inline;
}

.advisors-sub-section {
  margin-top: 50px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}

.advisors-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.adv-card-format {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 30px 24px 26px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.03);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.adv-card-format:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
  box-shadow: 0 10px 28px rgba(0,0,0,0.08);
}

.adv-avatar-circle {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--gold-light);
  background: #f0f4f8;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.adv-avatar-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.adv-avatar-circle .avatar-initials-lg {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #183b63;
}

.adv-name {
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #183b63;
  margin-bottom: 4px;
}

.adv-role-gold {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.02em;
  margin-bottom: 14px;
}

.adv-desc {
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.55;
  margin-bottom: 16px;
  text-align: left;
}

.adv-exp-box {
  margin-top: auto;
  background: #f8fafc;
  border-top: 2px solid var(--gold-light);
  border-radius: 4px;
  padding: 12px 14px;
  font-size: 0.82rem;
  text-align: left;
  width: 100%;
}

.adv-exp-box strong {
  color: #183b63;
  display: block;
  margin-bottom: 4px;
}

.adv-exp-box p {
  color: var(--ink);
  line-height: 1.45;
}

.adv-card-new p {
  font-size: 0.82rem;
  color: #5b6773;
  font-style: italic;
  line-height: 1.45;
}

/* ---------- SECTORAL EXPERTISE ---------- */
.sector-section {
  background: #0e2036;
  color: var(--white);
  padding: 90px 6vw;
}

.sector-section .eyebrow {
  color: var(--gold-light);
}

.sector-section h2 {
  color: var(--white);
}

.sector-section .section-head p {
  color: rgba(255, 255, 255, 0.7);
}

.sector-grid-new {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.sector-card {
  display: flex;
  align-items: stretch;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.sector-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.sector-num {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-weight: 700;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  min-width: 76px;
}

.sector-info {
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}

.sector-info h4 {
  font-family: 'Fraunces', serif;
  font-size: 1.22rem;
  font-weight: 600;
  margin-bottom: 4px;
  line-height: 1.25;
}

.sector-info p {
  font-size: 0.88rem;
  font-style: italic;
  line-height: 1.45;
}

/* Dark Card Style (Left Column: 01, 03, 05, 07) */
.sector-card.card-dark {
  background: #183b63;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.sector-card.card-dark .sector-num {
  background: #0c1d30;
  color: #d4a754;
}

.sector-card.card-dark .sector-info h4 {
  color: #d4a754;
}

.sector-card.card-dark .sector-info p {
  color: rgba(255, 255, 255, 0.82);
}

/* Light Card Style (Right Column: 02, 04, 06, 08) */
.sector-card.card-light {
  background: #ffffff;
  color: var(--navy);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.sector-card.card-light .sector-num {
  background: #f0f4f8;
  color: #c5973e;
}

.sector-card.card-light .sector-info h4 {
  color: #183b63;
}

.sector-card.card-light .sector-info p {
  color: #5b6773;
}

/* ---------- SERVICES SECTION (MINIMAL CLEAN GRID, ZERO LAYOUT SHIFT) ---------- */
.services-section {
  background: var(--cream);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 22px;
}

.svc-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

/* Minimal subtle hover effect without any layout shift or size jumping */
.svc-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
}

.svc-img {
  height: 160px;
  overflow: hidden;
  position: relative;
  background: var(--slate-light);
}

.svc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

.svc-body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.svc-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--cream-2);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.78rem;
  margin-bottom: 12px;
  border: 1px solid var(--line);
  transition: var(--transition);
}

.svc-card:hover .svc-tag {
  background: var(--navy);
  color: var(--gold-light);
}

.svc-body h3 {
  font-size: 1.12rem;
  margin-bottom: 8px;
  color: var(--navy);
}

.svc-body p {
  font-size: 0.88rem;
  color: var(--ink-soft);
  margin-bottom: 14px;
  line-height: 1.5;
}

.svc-more {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.svc-more ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.svc-more li {
  font-size: 0.82rem;
  color: var(--navy);
  padding-left: 16px;
  position: relative;
  line-height: 1.4;
}

.svc-more li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.svc-note {
  text-align: center;
  margin-top: 36px;
  font-size: 0.86rem;
  color: var(--ink-soft);
  font-style: italic;
}

/* ---------- MILESTONES (TIMELINE) ---------- */
.milestones-section {
  background: var(--cream-2);
}

.timeline-wrap {
  position: relative;
  margin: 0 -12px;
  padding: 0 12px;
}

.timeline {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 48px 4px 24px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  position: relative;
}

.timeline::-webkit-scrollbar {
  display: none;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 4px;
  right: 4px;
  top: 72px;
  height: 2px;
  background: var(--slate-light);
  z-index: 0;
}

.t-item {
  flex: 0 0 250px;
  max-width: 250px;
  position: relative;
  padding: 0 24px 0 4px;
  scroll-snap-align: start;
}

.t-year {
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 14px;
}

.t-dot {
  position: absolute;
  left: 4px;
  top: 32px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--cream-2);
  box-shadow: 0 0 0 2px var(--gold);
  z-index: 1;
}

.t-content {
  padding-top: 24px;
}

.t-content h4 {
  font-size: 1.04rem;
  margin-bottom: 6px;
}

.t-content p {
  font-size: 0.86rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

/* Testimonials */
.testimonials {
  margin-top: 70px;
}

.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.test-card {
  background: var(--white);
  border: 1.5px solid rgba(185, 138, 61, 0.25);
  border-radius: var(--radius-md);
  padding: 26px 24px;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.test-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
}

.stars {
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.test-card p.quote {
  font-size: 0.92rem;
  color: var(--ink);
  font-style: italic;
  margin-bottom: 18px;
  line-height: 1.55;
}

.test-who {
  display: flex;
  align-items: center;
  gap: 12px;
}

.test-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-size: 0.85rem;
  font-weight: 600;
  flex-shrink: 0;
}

.test-who .tname {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
}

.test-who .trole {
  font-size: 0.76rem;
  color: var(--ink-soft);
}

/* ---------- CONTACT SECTION ---------- */
.contact-section {
  background: var(--navy);
  color: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.contact-section .eyebrow {
  color: var(--gold-light);
}

.contact-section h2 {
  color: var(--white);
}

.info-list {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.info-item {
  border-left: 2px solid var(--gold);
  padding-left: 18px;
}

.info-item .lbl {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-light);
  font-weight: 700;
  margin-bottom: 6px;
}

.info-item p, .info-item a {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
}

.info-item a:hover {
  color: var(--gold-light);
}

.map-btn {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.85rem;
  color: var(--gold-light);
  font-weight: 600;
  border-bottom: 1px solid var(--gold-light);
  padding-bottom: 2px;
}

.form-card {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 34px 30px;
  color: var(--ink);
  box-shadow: var(--shadow-md);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.field {
  display: flex;
  flex-direction: column;
}

.field label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--navy);
  margin-bottom: 6px;
}

.field input, .field select, .field textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--white);
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  color: var(--ink);
  transition: var(--transition);
}

.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(185, 138, 61, 0.2);
}

.field textarea {
  resize: vertical;
  min-height: 96px;
}

.form-card button {
  width: 100%;
  margin-top: 8px;
  background: var(--navy);
  color: var(--white);
  border: none;
  padding: 14px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
}

.form-card button:hover {
  background: var(--navy-2);
}

.map-embed {
  margin-top: 56px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.map-embed iframe {
  width: 100%;
  height: 340px;
  border: 0;
  display: block;
}

/* ---------- FOOTER ---------- */
footer {
  background: #091624;
  color: rgba(255, 255, 255, 0.65);
  padding: 48px 6vw;
}

.foot-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 24px;
}

.foot-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.foot-logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  padding: 0;
  background: var(--white);
  border: 2px solid var(--gold-light);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.foot-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.foot-inner .fname {
  font-family: 'Fraunces', serif;
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 2px;
}

.foot-inner .fsub {
  font-size: 0.8rem;
  color: var(--slate-light);
}

.foot-links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.foot-links a {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.72);
}

.foot-links a:hover {
  color: var(--gold-light);
}

.foot-bottom {
  max-width: 1240px;
  margin: 28px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  line-height: 1.5;
}

/* ---------- REVEAL ANIMATIONS ---------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- RESPONSIVE MEDIA QUERIES (MOBILE FRIENDLY) ---------- */
@media (max-width: 980px) {
  .section {
    padding: 64px 6vw;
  }

  .nav-wrap {
    height: 70px;
  }

  header {
    height: 70px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    margin-top: 70px;
  }

  .hero-right {
    height: auto;
    min-height: auto;
    padding: 32px 5vw 20px;
    order: 1;
  }

  .hero-left {
    order: 2;
    padding: 36px 6vw 56px;
  }

  /* Mobile Navigation Drawer */
  .burger {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  nav.menu {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 82%;
    max-width: 320px;
    background: var(--navy);
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 90px 28px 40px;
    gap: 0;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.4);
    z-index: 1005;
  }

  nav.menu.open {
    transform: translateX(0);
  }

  nav.menu a.nav-link {
    font-size: 1.02rem;
    font-weight: 500;
    width: 100%;
    padding: 16px 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0;
    color: rgba(255, 255, 255, 0.75);
  }

  nav.menu a.nav-link.active {
    color: var(--gold-light);
    background: transparent;
    border-bottom-color: var(--gold-light);
  }

  nav.menu .mobile-cta {
    display: block;
    margin-top: 28px;
    text-align: center;
    background: var(--gold);
    color: var(--navy);
    padding: 14px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.9rem;
  }

  .directors-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .advisors-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sector-grid-new {
    grid-template-columns: 1fr;
  }

  .test-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 52px 5vw;
  }

  .section-head {
    margin-bottom: 36px;
  }

  .directors-grid {
    grid-template-columns: 1fr;
  }

  .advisors-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .test-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-card {
    padding: 26px 20px;
  }

  .foot-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-name {
    font-size: 2.1rem;
  }

  .hero-left {
    padding: 40px 5vw 48px;
  }

  .hero-ctas {
    flex-direction: column;
    width: 100%;
  }

  .btn-primary, .btn-ghost {
    width: 100%;
  }

  .sector-grid {
    grid-template-columns: 1fr;
  }
}
