/* ================================================================
   ASHISH SOMVANSHI — PORTFOLIO CSS
   Design: Dark luxury, gold accents, refined editorial
   ================================================================ */

/* ── CSS Variables ── */
:root {
  --navy:       #040d1a;
  --navy-mid:   #071428;
  --navy-card:  #0a1930;
  --gold:       #c9a84c;
  --gold-light: #e8c96f;
  --gold-pale:  rgba(201,168,76,0.12);
  --white:      #f8f6f0;
  --muted:      #7b8fa8;
  --border:     rgba(201,168,76,0.2);
  --radius:     12px;
  --shadow:     0 8px 40px rgba(0,0,0,0.45);
  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);

  /* Fonts */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;
  --font-mono:    'Space Mono', monospace;
}

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

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

body {
  background-color: var(--navy);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
  padding-top: 80px;
}

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

a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
}

.section-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: block;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.25rem);
  color: var(--white);
  margin-bottom: 1rem;
}

.section-title span { color: var(--gold); }

.section-sub {
  color: var(--muted);
  max-width: 560px;
  font-size: 1.05rem;
}

/* ── Buttons ── */
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  font-family: var(--font-body);
  font-weight: 600;
  border: none;
  border-radius: 50px;
  padding: 0.65rem 1.75rem;
  transition: all var(--transition);
  letter-spacing: 0.02em;
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.4);
}

.btn-gold-outline {
  color: var(--gold);
  border: 1.5px solid var(--gold);
  border-radius: 50px;
  padding: 0.55rem 1.5rem;
  font-weight: 600;
  font-family: var(--font-body);
  transition: all var(--transition);
}
.btn-gold-outline:hover, .btn-gold-outline:focus {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}

.btn-outline-white {
  color: var(--white);
  border: 1.5px solid rgba(248,246,240,0.35);
  border-radius: 50px;
  padding: 0.65rem 1.75rem;
  font-weight: 500;
  transition: all var(--transition);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border-color: var(--white);
}

/* ── Navbar ── */
#mainNav {
  background: rgba(4,13,26,0.0);
  backdrop-filter: blur(0px);
  border-bottom: 1px solid transparent;
  transition: background var(--transition), backdrop-filter var(--transition), border-color var(--transition);
  padding: 1.25rem 0;
  z-index: 1000;
}
#mainNav.scrolled {
  background: rgba(4,13,26,0.93);
  backdrop-filter: blur(18px);
  border-bottom-color: var(--border);
  padding: 0.75rem 0;
}

.brand-initials {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.9rem;
  border-radius: 8px;
  margin-right: 0.5rem;
  flex-shrink: 0;
}
.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
}

.nav-link {
  color: rgba(248,246,240,0.75) !important;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.5rem 0.75rem !important;
  position: relative;
  transition: color var(--transition);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; right: 50%;
  height: 1.5px;
  background: var(--gold);
  transition: left var(--transition), right var(--transition);
}
.nav-link:hover, .nav-link.active {
  color: var(--gold) !important;
}
.nav-link:hover::after, .nav-link.active::after {
  left: 0.75rem; right: 0.75rem;
}

/* Hamburger */
.navbar-toggler { border: none; background: none; padding: 0; }
.navbar-toggler:focus { box-shadow: none; }
.toggler-icon { display: flex; flex-direction: column; gap: 5px; width: 28px; }
.toggler-icon span {
  display: block; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ── Floating CTA Button ── */
#floating-cta {
  position: fixed;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
}
.btn-float {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  border: none;
  border-radius: 50px;
  padding: 1rem 0.65rem;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(201,168,76,0.45);
  transition: all var(--transition);
  writing-mode: vertical-rl;
  text-orientation: mixed;
}
.btn-float i { font-size: 1.2rem; writing-mode: horizontal-tb; }
.btn-float span { font-family: var(--font-body); font-weight: 700; font-size: 0.75rem; letter-spacing: 0.08em; }
.btn-float:hover { transform: scale(1.06); box-shadow: 0 8px 30px rgba(201,168,76,0.6); }

/* ── Side Panel ── */
.panel-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1099;
  opacity: 0; pointer-events: none;
  transition: opacity var(--transition);
}
.panel-overlay.active { opacity: 1; pointer-events: all; }

.side-panel {
  position: fixed;
  top: 0; right: 0;
  width: min(420px, 100vw);
  height: 100vh;
  background: var(--navy-card);
  border-left: 1px solid var(--border);
  z-index: 1100;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  overflow-y: auto;
}
.side-panel.open { transform: translateX(0); }
.side-panel-inner { padding: 2.5rem 2rem; padding-top: 3.5rem; }
.close-panel {
  position: absolute; top: 1.25rem; right: 1.25rem;
  background: none; border: none;
  color: var(--muted); font-size: 1.8rem;
  cursor: pointer; line-height: 1;
  transition: color var(--transition);
}
.close-panel:hover { color: var(--gold); }
.panel-title { font-family: var(--font-display); font-size: 1.75rem; color: var(--white); margin-bottom: 0.4rem; }
.panel-sub { color: var(--muted); margin-bottom: 1.75rem; font-size: 0.9rem; }

/* Form styles inside panel and contact */
.form-control, .form-select {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  color: var(--white);
  border-radius: var(--radius);
  padding: 0.7rem 1rem;
  font-family: var(--font-body);
  transition: border-color var(--transition), background var(--transition);
}
.form-control::placeholder { color: var(--muted); }
.form-control:focus, .form-select:focus {
  background: rgba(201,168,76,0.06);
  border-color: var(--gold);
  color: var(--white);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}
.form-select option { background: var(--navy-card); color: var(--white); }
.form-label { color: var(--muted); font-size: 0.85rem; margin-bottom: 0.4rem; font-weight: 500; }

/* ── Sections ── */
section { padding: 6rem 0; }

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 70% at 70% 50%, #0d2044 0%, var(--navy) 65%);
}
.hero-bg::before {
  content: '';
  position: absolute; inset: 0;
  background: 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='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a84c' fill-opacity='0.03'%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/g%3E%3C/svg%3E");
}
.hero-glow {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.1) 0%, transparent 70%);
  top: 50%; right: 5%;
  transform: translateY(-50%);
  pointer-events: none;
}

.hero-content { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold-pale);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 0.35rem 1rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero-badge span.dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s infinite;
}

.hero-name {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}
.hero-name .gold { color: var(--gold); }

.hero-title {
  font-family: var(--font-mono);
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 1.75rem;
}

.hero-desc {
  color: rgba(248,246,240,0.7);
  font-size: 1.05rem;
  max-width: 500px;
  margin-bottom: 2.5rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.stat-item .stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-item .stat-label { font-size: 0.78rem; color: var(--muted); margin-top: 2px; letter-spacing: 0.05em; }

.hero-img-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-img-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  max-width: 440px;
  width: 100%;
}
.hero-img-frame::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, var(--navy) 0%, transparent 40%);
  z-index: 1;
}
.hero-img-frame img {
  width: 100%; object-fit: cover;
  border-radius: 20px;
  border: 1px solid var(--border);
}
.hero-img-badge {
  position: absolute;
  bottom: 2rem; left: -2rem;
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  z-index: 2;
  backdrop-filter: blur(10px);
}
.hero-img-badge .hib-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.hero-img-badge .hib-label { font-size: 0.72rem; color: var(--muted); }

@keyframes pulse {
  0%, 100% { opacity: 1; } 50% { opacity: 0.3; }
}

/* ── Divider ── */
.gold-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin: 0 auto;
  max-width: 200px;
}

/* ── Cards ── */
.card-dark {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.card-dark:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--gold);
}

/* ── Founder Story ── */
.founder-section { background: var(--navy-mid); }

.timeline-item {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--navy-card);
  transition: all var(--transition);
}
.timeline-item:hover { border-color: var(--gold); transform: translateX(6px); }
.timeline-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--gold-pale);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
}
.timeline-icon img { width: 22px; }
.timeline-text h6 { color: var(--white); font-family: var(--font-body); font-weight: 600; margin-bottom: 0.2rem; }
.timeline-text p { color: var(--muted); font-size: 0.88rem; margin: 0; }

/* ── Services ── */
.service-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  height: 100%;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(201,168,76,0.4); }
.service-num {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}
.service-icon {
  width: 56px; height: 56px;
  background: var(--gold-pale);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.25rem;
  color: var(--gold);
  border: 1px solid var(--border);
}
.service-card h5 { font-family: var(--font-display); font-size: 1.2rem; margin-bottom: 0.75rem; }
.service-card p { color: var(--muted); font-size: 0.9rem; margin: 0; }

/* ── Recognition cards ── */
.recognition-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border);
  height: 100%;
  transition: all var(--transition);
}
.recognition-card:hover { border-color: var(--gold); box-shadow: var(--shadow); transform: translateY(-4px); }
.recognition-card img { width: 100%; height: 460px; object-fit: cover; }
.recognition-body {
  padding: 1.5rem;
  background: var(--navy-card);
}
.recognition-body h6 { font-family: var(--font-display); font-size: 1rem; margin-bottom: 0.4rem; }
.recognition-body p { color: var(--muted); font-size: 0.83rem; margin: 0; }

/* ── Credibility / Brands ── */
/* .credibility-section { background: var(--navy-mid); } */

.brand-logo {
  height: 50px;
  /* filter: brightness(0) invert(1) opacity(1); */
  /* transition: filter var(--transition), opacity var(--transition); */
  object-fit: contain;
  max-width: 220px;
  margin: 0 auto;
  background: #fff;
  padding: 8px 12px;
  height: 80px;
  width: 100%;
  border-radius: 8px;
}
/* .brand-logo:hover { filter: brightness(0) invert(1) opacity(1); } */

/* ── Metrics ── */
.metric-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all var(--transition);
}
.metric-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.metric-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.metric-label { color: var(--muted); font-size: 0.85rem; margin-top: 0.4rem; }

/* ── Ventures ── */
.venture-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  /*display: flex;*/
  gap: 1.5rem;
  align-items: flex-start;
  height: 100%;
  transition: all var(--transition);
}
.venture-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: var(--shadow); }
.venture-logo-wrap {
  /*width: 64px; height: 64px; */
      width: 252px;
    height: 64px;
  flex-shrink: 0;
  background: #fff;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border);
  overflow: hidden;
  padding: 8px;
}
.venture-logo-wrap img { width: 100%; object-fit: contain; }
.venture-initial {
  width: 64px; height: 64px; flex-shrink: 0;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
  border: 1px solid var(--border);
}
.venture-body h5 { font-family: var(--font-display); font-size: 1.1rem; margin-bottom: 0.4rem; }
.venture-body p { color: var(--muted); font-size: 0.88rem; margin: 0; }
.venture-tag {
  display: inline-block;
  background: var(--gold-pale);
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 4px;
  padding: 2px 8px;
  margin-top: 0.5rem;
  border: 1px solid var(--border);
}

/* ── Insights ── */
.insight-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  height: 100%;
  transition: all var(--transition);
  position: relative;
  cursor: pointer;
}
.insight-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.insight-tag { color: var(--gold); font-size: 0.72rem; font-family: var(--font-mono); letter-spacing: 0.1em; text-transform: uppercase; }
.insight-card h6 { font-family: var(--font-display); font-size: 1.05rem; margin: 0.5rem 0 0.5rem; }
.insight-card p { color: var(--muted); font-size: 0.85rem; margin: 0; }
.insight-arrow {
  position: absolute; right: 1.5rem; bottom: 1.5rem;
  color: var(--gold); opacity: 0; transition: opacity var(--transition), transform var(--transition);
}
.insight-card:hover .insight-arrow { opacity: 1; transform: translate(4px, -4px); }

/* ── LinkedIn Recommendations ── */
.linkedin-section { background: var(--navy-mid); }

.linkedin-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.linkedin-logo-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #0077b5;
  border-radius: 8px;
  padding: 0.5rem 1rem;
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
}
.linkedin-logo-badge i { font-size: 1.2rem; }

.rec-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  height: 100%;
  transition: all var(--transition);
}
.rec-card:hover { border-color: #0077b5; transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,119,181,0.15); }
.rec-quote { color: var(--gold); font-size: 2rem; line-height: 1; margin-bottom: 0.75rem; font-family: Georgia; }
.rec-text { color: rgba(248,246,240,0.82); font-size: 0.9rem; line-height: 1.7; margin-bottom: 1.25rem; }
.rec-author { display: flex; align-items: center; gap: 0.75rem; }
.rec-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700; font-size: 0.95rem;
  color: var(--navy); flex-shrink: 0;
}
.rec-name { font-weight: 600; font-size: 0.9rem; }
.rec-role { color: var(--muted); font-size: 0.78rem; }
.rec-stars { color: #0077b5; font-size: 0.75rem; margin-top: 2px; }

.btn-linkedin {
  background: #0077b5;
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 0.65rem 1.75rem;
  font-weight: 600;
  display: inline-flex; align-items: center; gap: 0.5rem;
  transition: all var(--transition);
}
.btn-linkedin:hover { background: #005e8a; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,119,181,0.4); color: #fff; }

/* ── Speaking ── */
.speaking-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  height: 100%;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.speaking-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.speak-icon {
  font-size: 2rem;
  width: 56px; height: 56px;
  background: var(--gold-pale);
  border-radius: 12px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
}
.speaking-card h6 { font-family: var(--font-display); font-size: 1.05rem; margin: 0; }
.speaking-card p { color: var(--muted); font-size: 0.88rem; margin: 0; flex: 1; }

/* ── Newsletter ── */
.newsletter-section {
  background: linear-gradient(135deg, var(--navy-mid), var(--navy));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 5rem 0;
}
.newsletter-box {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.newsletter-box::before {
  content: '';
  position: absolute; top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 60%);
  pointer-events: none;
}

/* ── Media Page ── */
.pr-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  height: 100%;
  transition: all var(--transition);
}
.pr-card:hover { border-color: var(--gold); transform: translateY(-6px); box-shadow: var(--shadow); }
.pr-card-img { width: 100%; height: 200px; object-fit: cover; }
.pr-card-body { padding: 1.5rem; }
.pr-source { font-family: var(--font-mono); font-size: 0.7rem; color: var(--gold); letter-spacing: 0.1em; text-transform: uppercase; }
.pr-card-body h6 { font-family: var(--font-display); font-size: 1rem; margin: 0.5rem 0 0.4rem; }
.pr-card-body p { color: var(--muted); font-size: 0.83rem; margin: 0; }
.pr-badge {
  display: inline-block;
  background: var(--gold-pale);
  color: var(--gold);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 4px;
  padding: 2px 8px;
  margin-bottom: 0.5rem;
  border: 1px solid var(--border);
}

/* ── About ── */
.about-intro { background: var(--navy-mid); }
.timeline-v {
  position: relative;
  padding-left: 2.5rem;
}
.timeline-v::before {
  content: '';
  position: absolute; left: 10px; top: 8px; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}
.timeline-v-item {
  position: relative;
  margin-bottom: 2rem;
}
.timeline-v-item::before {
  content: '';
  position: absolute; left: -2.5rem; top: 8px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--navy);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.3);
}
.timeline-v-year {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--gold);
  letter-spacing: 0.1em;
}
.timeline-v-item h6 { font-family: var(--font-display); margin-bottom: 0.25rem; }
.timeline-v-item p { color: var(--muted); font-size: 0.88rem; margin: 0; }

/* ── Contact ── */
.contact-section { background: var(--navy-mid); }
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.contact-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--gold-pale);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1rem;
}
.contact-info-item strong { display: block; color: var(--white); font-size: 0.9rem; }
.contact-info-item span { color: var(--muted); font-size: 0.85rem; }

/* ── Footer ── */
.site-footer { background: var(--navy-mid); border-top: 1px solid var(--border); }
.footer-top { padding: 4rem 0; }
.footer-heading {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer-bio { color: var(--muted); font-size: 0.88rem; line-height: 1.7; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.65rem; }
.footer-links a { color: var(--muted); font-size: 0.88rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--gold); }
.footer-socials { display: flex; gap: 0.75rem; }
.footer-socials a {
  width: 38px; height: 38px;
  border-radius: 8px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-size: 1rem;
  transition: all var(--transition);
}
.footer-socials a:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-pale); }
.footer-newsletter .form-control {
  border-radius: 50px 0 0 50px;
  border-right: none;
}
.footer-newsletter .btn { border-radius: 0 50px 50px 0; }
.footer-contact-item { color: var(--muted); font-size: 0.85rem; display: flex; align-items: center; margin-bottom: 0.4rem; }
.footer-contact-item i { color: var(--gold); }
.footer-bottom { padding: 1.25rem 0; border-top: 1px solid var(--border); font-size: 0.82rem; color: var(--muted); }
.footer-bottom-right { font-family: var(--font-mono); }

/* ── Page Hero (inner pages) ── */
.page-hero {
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse 70% 60% at 50% 0%, #0d2044 0%, var(--navy) 70%);
}
.page-hero-title { font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 900; }

/* ── Media Queries ── */
@media (max-width: 991px) {
  #floating-cta { right: 14px; }
  .hero-img-badge { left: 0; }
  section { padding: 4rem 0; }
}

@media (max-width: 767px) {
  .hero-name { font-size: 2.5rem; }
  .hero-stats { gap: 1.25rem; }
  #floating-cta { top: auto; bottom: 80px; transform: none; }
  .btn-float { writing-mode: horizontal-tb; flex-direction: row; padding: 0.65rem 1.25rem; border-radius: 50px; }
  .btn-float span { display: block; }
  .venture-card { flex-direction: column; }
  .newsletter-box { padding: 2rem 1.25rem; }
}

@media (max-width: 575px) {
  .hero-img-badge { display: none; }
}

/* ── Scroll animations overrides ── */
[data-aos] { backface-visibility: hidden; }
