/* =====================================================
   BHARAT PRASAD SHAH — PORTFOLIO
   Statesman Aesthetic: Deep Navy · Antique Gold · Ivory
   Fonts: Playfair Display + Lato + Cormorant Garamond
   ===================================================== */

/* ── CSS VARIABLES ── */
:root {
  --navy:       #0d1b2a;
  --navy-mid:   #1a2d42;
  --navy-light: #243b55;
  --gold:       #b8892a;
  --gold-light: #d4a843;
  --gold-pale:  #f0d080;
  --ivory:      #f7f3ec;
  --ivory-dark: #ede7da;
  --white:      #ffffff;
  --text-dark:  #1a1a1a;
  --text-mid:   #3d3d3d;
  --text-muted: #6e6e6e;
  --border:     rgba(184, 137, 42, 0.25);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Lato', 'Helvetica Neue', sans-serif;
  --font-accent:  'Cormorant Garamond', Georgia, serif;

  --radius: 2px;
  --transition: 0.3s ease;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-deep: 0 12px 48px rgba(0,0,0,0.16);
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--ivory);
  color: var(--text-dark);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── TYPOGRAPHY ── */
h1, h2, h3 { font-family: var(--font-display); font-weight: 700; line-height: 1.2; }
h4 { font-family: var(--font-body); font-weight: 700; }
em { font-family: var(--font-accent); font-style: italic; color: var(--gold); }

/* ── UTILITY ── */
.section { padding: 96px 0; }
.section__container { max-width: 1180px; margin: 0 auto; padding: 0 32px; }
.section__label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section__title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--navy);
  margin-bottom: 24px;
  line-height: 1.2;
}
.section__title--center { text-align: center; }
.section__subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  text-align: center;
  max-width: 560px;
  margin: 0 auto 56px;
  font-style: italic;
}
.section__subtitle--left {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 48px;
  font-style: italic;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 13px 32px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
}
.btn--primary {
  background: var(--gold);
  color: var(--white);
  border: 2px solid var(--gold);
}
.btn--primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(184, 137, 42, 0.35);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn--outline:hover {
  border-color: var(--gold-pale);
  color: var(--gold-pale);
  transform: translateY(-2px);
}

/* ── BADGE ── */
.badge {
  display: inline-block;
  padding: 5px 14px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid rgba(240, 208, 128, 0.45);
  color: var(--gold-pale);
  border-radius: 20px;
  background: rgba(184, 137, 42, 0.12);
}

/* =====================================================
   NAVIGATION
   ===================================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 32px;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  background: rgba(13, 27, 42, 0.97);
  box-shadow: 0 2px 24px rgba(0,0,0,0.3);
  backdrop-filter: blur(12px);
}
.nav__container {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav__logo {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.nav__logo-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}
.nav__logo-title {
  font-size: 0.65rem;
  color: var(--gold-pale);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__link {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  transition: color var(--transition);
}
.nav__link:hover { color: var(--gold-pale); }
.nav__link--cta {
  padding: 9px 22px;
  border: 1px solid var(--gold);
  color: var(--gold-pale);
  border-radius: var(--radius);
}
.nav__link--cta:hover {
  background: var(--gold);
  color: var(--white);
}
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

/* =====================================================
   HERO
   ===================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 60% 40%, rgba(184, 137, 42, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 10% 80%, rgba(36, 59, 85, 0.8) 0%, transparent 60%);
  pointer-events: none;
}
.hero__backdrop::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 79px,
      rgba(184, 137, 42, 0.04) 79px,
      rgba(184, 137, 42, 0.04) 80px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 79px,
      rgba(184, 137, 42, 0.04) 79px,
      rgba(184, 137, 42, 0.04) 80px
    );
}
.hero__container {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  padding: 120px 32px 80px;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 72px;
  align-items: center;
  width: 100%;
}
.hero__portrait-wrap { display: flex; justify-content: center; }
.hero__portrait-frame {
  width: 300px;
  height: 380px;
  border: 3px solid var(--gold);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  box-shadow: 16px 16px 0 rgba(184, 137, 42, 0.18), var(--shadow-deep);
}
.hero__portrait-frame--placeholder {
  background: var(--navy-light);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__portrait-frame--placeholder::after {
  content: 'B P S';
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--gold);
  font-weight: 700;
}
.hero__portrait {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.hero__content { color: var(--white); }
.hero__pre-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.hero__name {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 24px;
}
.hero__name span { color: var(--gold); }
.hero__divider {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin-bottom: 24px;
}
.hero__tagline {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 28px;
  line-height: 1.7;
  font-family: var(--font-accent);
  font-size: 1.1rem;
}
.hero__badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px; }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 1;
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(184,137,42,0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

/* =====================================================
   STATS STRIP
   ===================================================== */
.stats {
  background: var(--navy-mid);
  padding: 0;
  border-bottom: 1px solid var(--border);
}
.stats__container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: stretch;
}
.stats__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 36px 24px;
  gap: 6px;
  text-align: center;
}
.stats__number {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.stats__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.stats__divider {
  width: 1px;
  background: rgba(184, 137, 42, 0.2);
  align-self: stretch;
  margin: 12px 0;
}

/* =====================================================
   ABOUT
   ===================================================== */
.about { background: var(--ivory); }
.about__grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 64px;
  align-items: start;
}

.about__lead {
  font-size: 1.2rem;
  font-family: var(--font-accent);
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.75;
}
.about__body {
  font-size: 0.97rem;
  color: var(--text-mid);
  margin-bottom: 16px;
  line-height: 1.8;
}
.about__quote {
  border-left: 3px solid var(--gold);
  padding: 16px 24px;
  margin-top: 32px;
  font-family: var(--font-accent);
  font-size: 1.1rem;
  color: var(--navy);
  font-style: italic;
  background: rgba(184, 137, 42, 0.04);
}
.about__sidebar { display: flex; flex-direction: column; gap: 20px; }
.about__card {
  background: var(--white);
  border: 1px solid var(--ivory-dark);
  border-top: 3px solid var(--gold);
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.about__card--family { border-top-color: var(--navy); }
.about__card-title {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.about__card p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.6;
}
.about_card--family .about_card-title { color: var(--navy); }

/* =====================================================
   TIMELINE / JOURNEY
   ===================================================== */
.journey { background: var(--navy); }
.journey .section__label { color: var(--gold); }
.journey .section__title { color: var(--white); }
.journey .section__subtitle { color: rgba(255,255,255,0.55); }

.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 16px 0;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  transform: translateX(-50%);
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold), var(--gold), transparent);
  opacity: 0.35;
}
.timeline__block {
  display: grid;
  gap: 24px;
  margin-bottom: 40px;
  position: relative;
}
.timeline__block--left {
  grid-template-columns: 1fr 40px;
  text-align: right;
}
.timeline__block--right {
  grid-template-columns: 40px 1fr;
  text-align: left;
}
.timeline_block--left .timeline_card { order: 1; }
.timeline_block--left .timeline_dot { order: 2; }
.timeline_block--right .timeline_card { order: 2; }
.timeline_block--right .timeline_dot { order: 1; }

.timeline__dot {
  width: 16px;
  height: 16px;
  background: var(--navy-light);
  border: 2px solid var(--gold);
  border-radius: 50%;
  align-self: start;
  margin-top: 20px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  justify-self: center;
}
.timeline__dot--gold {
  background: var(--gold);
  box-shadow: 0 0 12px rgba(184, 137, 42, 0.5);
}
.timeline__card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(184, 137, 42, 0.18);
  padding: 24px 28px;
  border-radius: 4px;
  transition: var(--transition);
}
.timeline__card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(184, 137, 42, 0.4);
}
.timeline__card--highlight {
  background: rgba(184, 137, 42, 0.08);
  border-color: rgba(184, 137, 42, 0.35);
}
.timeline__era {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 6px;
}
.timeline__year {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 4px;
}
.timeline__role {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--ivory-dark);
  margin-bottom: 10px;
}
.timeline__desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}

/* =====================================================
   MILESTONES
   ===================================================== */
.milestones { background: var(--ivory-dark); }
.milestones__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.milestone__card {
  background: var(--white);
  border: 1px solid var(--ivory-dark);
  padding: 32px 28px;
  border-radius: 4px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-bottom: 3px solid transparent;
}
.milestone__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-deep);
  border-bottom-color: var(--gold);
}
.milestone__icon { font-size: 2rem; margin-bottom: 16px; }
.milestone__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 10px;
}
.milestone__desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* =====================================================
   EDUCATION
   ===================================================== */
.education { background: var(--white); }
.edu__list { display: flex; flex-direction: column; gap: 0; }
.edu__item {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--ivory-dark);
  transition: var(--transition);
}
.edu__item:first-child { border-top: 1px solid var(--ivory-dark); }
.edu__item:hover { background: var(--ivory); margin: 0 -16px; padding-left: 16px; padding-right: 16px; }
.edu_item--current .edu_year { color: var(--gold); }
.edu__year {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-muted);
  text-align: right;
}
.edu__year span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 4px;
}
.edu__degree {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 4px;
}
.edu__institution {
  font-size: 0.875rem;
  color: var(--text-muted);
}
.edu__badge {
  padding: 5px 14px;
  background: rgba(184, 137, 42, 0.1);
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  border-radius: 20px;
  white-space: nowrap;
}

/* =====================================================
   VALUES

.values { background: var(--navy); }
.values .section__label { color: var(--gold); }
.values .section__title { color: var(--white); }
.values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 48px;
  margin-top: 16px;
}
.value__item {}
.value__line {
  width: 32px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 20px;
}
.value__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 12px;
}
.value__desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
}

/* =====================================================
   CONTACT
   ===================================================== */
.contact { background: var(--ivory); }
.contact__subtitle {
  text-align: center;
  font-size: 1rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 56px;
}
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact__info { display: flex; flex-direction: column; gap: 28px; }
.contact__item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.contact__icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.contact__item strong {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.contact__item p {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.65;
}
.contact__message {
  background: var(--navy);
  padding: 40px;
  border-radius: 4px;
  position: relative;
}
.contact__message-text {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin-bottom: 28px;
}
.contact__quote-mark {
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: -16px;
}
.contact__quote-body {
  font-family: var(--font-accent);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--ivory);
  line-height: 1.7;
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
  background: var(--navy);
  border-top: 1px solid rgba(184, 137, 42, 0.2);
  padding: 40px 0;
}
.footer__container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}
.footer__top {
  text-align: center;
  margin-bottom: 20px;
}
.footer__name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--white);
  font-weight: 700;
}
.footer__party {
  font-size: 0.72rem;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 4px;
}
.footer__line {
  height: 1px;
  background: rgba(184, 137, 42, 0.15);
  margin-bottom: 20px;
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer_copy, .footer_note {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

/* =====================================================
   RESPONSIVE — TABLET
   ===================================================== */
@media (max-width: 960px) {
  .hero__container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
    padding-top: 100px;
  }
  .hero__portrait-frame { width: 220px; height: 280px; }
  .hero__divider { margin: 0 auto 24px; }
  .hero__badges { justify-content: center; }
  .hero__actions { justify-content: center; }
  .about__grid { grid-template-columns: 1fr; }
  .about__sidebar { display: grid; grid-template-columns: repeat(2, 1fr); }
  .milestones__grid { grid-template-columns: repeat(2, 1fr); }
  .values__grid { grid-template-columns: repeat(2, 1fr); }
  .contact__grid { grid-template-columns: 1fr; }
  .stats__container { flex-wrap: wrap; }
  .stats__item { flex: 0 0 50%; }
  .stats__divider { display: none; }
  .timeline::before { left: 20px; }
  .timeline__block--left,
  .timeline__block--right {
    grid-template-columns: 40px 1fr;
    text-align: left;
  }
  .timeline_block--left .timeline_card { order: 2; }
  .timeline_block--left .timeline_dot { order: 1; }
}

/* =====================================================
   RESPONSIVE — MOBILE
   ===================================================== */
@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .section__container { padding: 0 20px; }
  .nav { padding: 0 20px; }
  .nav__links {
    display: none;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: rgba(13, 27, 42, 0.98);
    flex-direction: column;
    padding: 24px 20px;
    gap: 20px;
    border-top: 1px solid var(--border);
  }
  .nav__links.open { display: flex; }
  .nav__toggle { display: flex; }
  .hero__portrait-frame { width: 180px; height: 230px; }
  .hero__name { font-size: 2.4rem; }
  .milestones__grid { grid-template-columns: 1fr; }
  .values__grid { grid-template-columns: 1fr; gap: 28px; }
  .about__sidebar { grid-template-columns: 1fr; }
  .edu__item { grid-template-columns: 80px 1fr; gap: 16px; }
  .edu__badge { display: none; }
  .edu__year { font-size: 0.8rem; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .stats__item { flex: 0 0 100%; }
  .hero__actions { flex-direction: column; align-items: center; }
  .hero__actions .btn { width: 100%; max-width: 280px; text-align: center; }
}.hero__portrait-frame {
  animation: fadeInUp 1.2s ease forwards;
  opacity: 0;
  transform: translateY(40px);
}
@keyframes fadeInUp {
  to { opacity: 1; transform: translateY(0); }
}

.hero__actions .btn--primary:hover {
  box-shadow: 0 0 20px rgba(184,137,42,0.6);
}
.hero__actions .btn--outline:hover {
  box-shadow: 0 0 16px rgba(255,255,255,0.4);
}
.hero__portrait-frame {
  animation: fadeInUp 1.2s ease forwards;
  opacity: 0;
  transform: translateY(40px);
}
@keyframes fadeInUp {
  to { opacity: 1; transform: translateY(0); }
}

.hero__actions .btn--primary:hover {
  box-shadow: 0 0 20px rgba(184,137,42,0.6);
}
.hero__actions .btn--outline:hover {
  box-shadow: 0 0 16px rgba(255,255,255,0.4);
}
.hero__stats--inline {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__stat h3 {
  margin: 0;
  font-size: 1.8rem;
  font-weight: 700;
}

.hero__stat p {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.8;
}
.contributions {
  padding: 6rem 0;
  background: #fafafa;
}

.contributions__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.contribution__card {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: 0.3s ease;
}

.contribution__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.contribution__card h3 {
  margin-bottom: 0.8rem;
  font-size: 1.3rem;
  font-weight: 700;
}

.contribution__card p {
  opacity: 0.85;
  line-height: 1.6;
}
/* ===== CONTACT SECTION ===== */

.contact {
  padding: 6rem 0;
  background: #f8f8f8;
}

.contact__container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 3rem;
  align-items: start;
}

.contact__title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.contact__subtitle {
  opacity: 0.8;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.contact__details .detail {
  margin-bottom: 1.5rem;
}

.contact__details h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.contact__details p a {
  color: #0077cc;
  text-decoration: none;
  font-weight: 600;
}

.contact__form {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.contact__form h3 {
  margin-bottom: 1rem;
  font-size: 1.4rem;
  font-weight: 700;
}

.contact__form input,
.contact__form textarea {
  width: 100%;
  padding: 0.9rem;
  margin-bottom: 1rem;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 1rem;
}

.contact__form textarea {
  height: 140px;
  resize: none;
}

.contact__form button {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  border-radius: 8px;
}
/* ===== FOOTER FINAL ===== */

.footer {
  background: linear-gradient(135deg, #0b2c4a 0%, #0f3d63 100%);
  color: #f2f7ff;
  padding: 2.2rem 0 1.2rem;
  margin-top: 3rem;
}

.footer__container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  padding: 0 1rem;
}

.footer__name {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.footer__title {
  opacity: 0.85;
  font-size: 0.95rem;
}

/* QUICK LINKS 2 COLUMN */
.footer__links-grid {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.4rem 1rem;
}

.footer__links a,
.footer__contact a {
  color: #ffdd57;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.footer__links a:hover,
.footer__contact a:hover,
.footer__bottom a:hover {
  color: #ffffff;
}

/* BOTTOM CENTER BLOCK */
.footer__bottom {
  text-align: center;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.3);
}

.footer__bottom p {
  margin: 4px 0;
  font-size: 0.95rem;
}

.footer__bottom a {
  color: #ffdd57;
  text-decoration: none;
  font-weight: 600;
}
/* ═══════════════════════════════════════════════════════════════════════════════
   WORLD TOP CLASS PREMIUM FOOTER CSS
   Bharat Prasad Shah • Premium Design
   ═══════════════════════════════════════════════════════════════════════════════ */

/* ── Footer Main Container ── */
.premium-footer {
    position: relative;
    background: linear-gradient(180deg, #071a2b 0%, #061420 40%, #030d18 100%);
    color: #c5c5c5;
    font-family: 'Inter', 'Plus Jakarta Sans', 'Outfit', system-ui, sans-serif;
    overflow: hidden;
    isolation: isolate;
}

/* ── Gold Decorative Line on Top ── */
.premium-footer__gold-line {
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(201, 160, 58, 0.3) 10%,
            #c9a03a 25%,
            #f0d878 40%,
            #c9a03a 55%,
            #e0c878 70%,
            rgba(201, 160, 58, 0.3) 90%,
            transparent 100%);
    animation: footerGoldShimmer 4s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

@keyframes footerGoldShimmer {
    0%, 100% {
        opacity: 0.8;
        background-position: 0% 50%;
    }
    50% {
        opacity: 1;
        background-position: 100% 50%;
    }
}

/* ── Background Glow Effect ── */
.premium-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(ellipse at center, rgba(201, 160, 58, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.premium-footer::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle at bottom right, rgba(201, 160, 58, 0.04) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
}

/* ── Footer Container ── */
.premium-footer__container {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1.2fr;
    gap: 40px;
    padding: 50px 40px 35px;
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* ── Column: Brand ── */
.premium-footer__col--brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.premium-footer__brand-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #c9a03a, #e2b85c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #061420;
    margin-bottom: 6px;
    box-shadow: 0 8px 25px rgba(201, 160, 58, 0.4);
    animation: footerIconPulse 3s ease-in-out infinite;
}

@keyframes footerIconPulse {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(201, 160, 58, 0.4);
    }
    50% {
        box-shadow: 0 8px 40px rgba(201, 160, 58, 0.7), 0 0 60px rgba(201, 160, 58, 0.2);
    }
}

.premium-footer__name {
    font-family: 'Playfair Display', 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #f5e7c6;
    letter-spacing: 1px;
    margin: 0;
    text-shadow: 1px 2px 0 rgba(0, 0, 0, 0.3);
    transition: color 0.3s ease;
}

.premium-footer__name:hover {
    color: #fff;
    text-shadow: 0 0 20px rgba(201, 160, 58, 0.5);
}

.premium-footer__designation {
    font-size: 1rem;
    color: var(--royal-gold, #c9a03a);
    font-weight: 600;
    letter-spacing: 0.5px;
    margin: 0;
}

.premium-footer__location {
    font-size: 0.9rem;
    color: #a0a0a0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.premium-footer__location::before {
    content: "\f3c5";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--royal-gold, #c9a03a);
    font-size: 0.85rem;
}

/* ── Social Buttons Row ── */
.premium-footer__social-row {
    display: flex;
    gap: 10px;
    margin-top: 8px;
}

.premium-footer__social-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1.5px solid rgba(201, 160, 58, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c9a03a;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(4px);
}

.premium-footer__social-btn:hover {
    background: #c9a03a;
    color: #061420;
    border-color: #c9a03a;
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(201, 160, 58, 0.5);
}

/* ── Column: Quick Links ── */
.premium-footer__col--links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.premium-footer__heading {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 8px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(201, 160, 58, 0.5);
    letter-spacing: 0.5px;
    position: relative;
    display: inline-block;
}

.premium-footer__heading::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40px;
    height: 2px;
    background: #c9a03a;
}

.premium-footer__links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 14px;
}

.premium-footer__links-list li {
    margin: 0;
}

.premium-footer__links-list a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 5px 8px;
    border-radius: 6px;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
}

.premium-footer__links-list a i {
    font-size: 0.6rem;
    color: #c9a03a;
    transition: transform 0.3s ease;
}

.premium-footer__links-list a:hover {
    color: #ffffff;
    background: rgba(201, 160, 58, 0.1);
    padding-left: 14px;
    transform: translateX(2px);
}

.premium-footer__links-list a:hover i {
    transform: translateX(3px);
    color: #f0d878;
}

/* ── Column: Contact ── */
.premium-footer__col--contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.premium-footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(201, 160, 58, 0.1);
    transition: all 0.3s ease;
}

.premium-footer__contact-item:hover {
    background: rgba(201, 160, 58, 0.06);
    border-color: rgba(201, 160, 58, 0.35);
    transform: translateX(4px);
}

.premium-footer__contact-item i {
    font-size: 1.1rem;
    color: #c9a03a;
    margin-top: 2px;
    width: 20px;
    text-align: center;
}

.premium-footer__contact-item span {
    display: block;
    font-size: 0.7rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.premium-footer__contact-item a {
    color: #d5d5d5;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.premium-footer__contact-item a:hover {
    color: #f0d878;
    text-shadow: 0 0 8px rgba(201, 160, 58, 0.4);
}

/* ── Bottom Bar ── */
.premium-footer__bottom {
    border-top: 1px solid rgba(201, 160, 58, 0.2);
    position: relative;
    z-index: 2;
    background: rgba(3, 13, 24, 0.6);
    backdrop-filter: blur(10px);
}

.premium-footer__bottom::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg,
            transparent,
            rgba(201, 160, 58, 0.3),
            rgba(201, 160, 58, 0.6),
            rgba(201, 160, 58, 0.3),
            transparent);
}

.premium-footer__bottom-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 18px 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.premium-footer__copyright {
    font-size: 0.85rem;
    color: #999;
    margin: 0;
}

.premium-footer__copyright strong {
    color: #ddd;
    font-weight: 600;
}

.premium-footer__dev-info {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: #999;
}

.premium-footer__dev-label {
    color: #888;
}

.premium-footer__dev-name {
    color: #c9a03a;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.premium-footer__dev-separator {
    color: rgba(201, 160, 58, 0.4);
}

.premium-footer__dev-fb {
    color: #c9a03a;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: all 0.3s ease;
}

.premium-footer__dev-fb:hover {
    color: #f0d878;
    text-shadow: 0 0 8px rgba(201, 160, 58, 0.4);
}

.premium-footer__dev-wa {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #25D366;
    color: #ffffff !important;
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.8rem;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.premium-footer__dev-wa:hover {
    background: #1ebc59;
    transform: translateY(-3px);
    box-shadow: 0 8px 22px rgba(37, 211, 102, 0.5);
    color: #ffffff !important;
}

/* ── Responsive Design ── */
@media (max-width: 1024px) {
    .premium-footer__container {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        padding: 35px 25px 30px;
    }
    
    .premium-footer__col--brand {
        grid-column: 1 / -1;
        align-items: center;
        text-align: center;
    }
    
    .premium-footer__social-row {
        justify-content: center;
    }
    
    .premium-footer__bottom-container {
        flex-direction: column;
        text-align: center;
        padding: 14px 20px;
    }
    
    .premium-footer__dev-info {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .premium-footer__container {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 30px 18px 25px;
    }
    
    .premium-footer_col--links .premium-footer_links-list {
        grid-template-columns: 1fr 1fr;
    }
    
    .premium-footer__bottom-container {
        padding: 12px 16px;
        gap: 8px;
    }
    
    .premium-footer__dev-info {
        flex-direction: column;
        gap: 6px;
    }
    
    .premium-footer__dev-separator {
        display: none;
    }
}

@media (max-width: 480px) {
    .premium-footer__container {
        padding: 25px 12px 20px;
    }
    
    .premium-footer__name {
        font-size: 1.4rem;
    }
    
    .premium-footer__links-list {
        grid-template-columns: 1fr !important;
    }
    
    .premium-footer__dev-wa {
        padding: 5px 10px;
        font-size: 0.75rem;
    }
}
/* ═══════════════════════════════════════════════════════════ */
/* PREMIUM FOOTER UPGRADE — Existing .footer class enhance */
/* ═══════════════════════════════════════════════════════════ */

.footer {
    background: linear-gradient(180deg, #071a2b 0%, #061420 50%, #030d18 100%) !important;
    border-top: 3px solid #c9a03a !important;
    position: relative !important;
    overflow: hidden !important;
    padding: 0 !important;
}

.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 30% 10%, rgba(201,160,58,0.04) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 90%, rgba(201,160,58,0.03) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.footer__container {
    display: grid !important;
    grid-template-columns: 1.2fr 1fr 1fr !important;
    gap: 35px !important;
    padding: 45px 35px 30px !important;
    max-width: 1300px !important;
    margin: 0 auto !important;
    position: relative !important;
    z-index: 2 !important;
}

.footer__brand {
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
}

.footer__name {
    font-family: 'Playfair Display', 'Cormorant Garamond', serif !important;
    font-size: 1.8rem !important;
    font-weight: 700 !important;
    color: #f5e7c6 !important;
    text-shadow: 1px 2px 0 rgba(0,0,0,0.3) !important;
    letter-spacing: 1px !important;
    position: relative !important;
    display: inline-block !important;
    transition: all 0.3s ease !important;
}

.footer__name:hover {
    text-shadow: 0 0 25px rgba(201,160,58,0.6) !important;
    color: #fff !important;
}

.footer__title {
    color: #c9a03a !important;
    font-weight: 600 !important;
    font-size: 0.95rem !important;
    letter-spacing: 0.5px !important;
}

.footer__links h3,
.footer__contact h3 {
    font-family: 'Playfair Display', serif !important;
    font-size: 1.15rem !important;
    color: #fff !important;
    margin-bottom: 12px !important;
    padding-bottom: 8px !important;
    border-bottom: 2px solid rgba(201,160,58,0.5) !important;
    display: inline-block !important;
    position: relative !important;
}

.footer__links h3::after,
.footer__contact h3::after {
    content: "" !important;
    position: absolute !important;
    bottom: -2px !important;
    left: 0 !important;
    width: 35px !important;
    height: 2px !important;
    background: #c9a03a !important;
}

.footer__links-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 5px 12px !important;
    list-style: none !important;
    padding: 0 !important;
}

.footer__links-grid a {
    color: #b0b0b0 !important;
    text-decoration: none !important;
    font-size: 0.85rem !important;
    padding: 5px 8px !important;
    border-radius: 5px !important;
    display: block !important;
    transition: all 0.3s cubic-bezier(0.34,1.56,0.64,1) !important;
}

.footer__links-grid a:hover {
    color: #fff !important;
    background: rgba(201,160,58,0.1) !important;
    padding-left: 14px !important;
    transform: translateX(3px) !important;
}

.footer__contact p {
    margin-bottom: 8px !important;
    font-size: 0.88rem !important;
    color: #b0b0b0 !important;
}

.footer__contact strong {
    color: #ddd !important;
}

.footer__contact a {
    color: #c9a03a !important;
    text-decoration: none !important;
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
}

.footer__contact a:hover {
    color: #f0d878 !important;
    text-shadow: 0 0 8px rgba(201,160,58,0.4) !important;
}

.footer__bottom {
    border-top: 1px solid rgba(201,160,58,0.2) !important;
    padding: 16px 35px !important;
    background: rgba(3,13,24,0.5) !important;
    backdrop-filter: blur(10px) !important;
    text-align: center !important;
    position: relative !important;
    z-index: 2 !important;
}

.footer__bottom::before {
    content: "" !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 1px !important;
    background: linear-gradient(90deg, transparent, rgba(201,160,58,0.4), rgba(201,160,58,0.7), rgba(201,160,58,0.4), transparent) !important;
}

.copy {
    color: #999 !important;
    font-size: 0.85rem !important;
    margin-bottom: 5px !important;
}

.dev {
    color: #888 !important;
    font-size: 0.82rem !important;
    margin-bottom: 5px !important;
}

.dev strong {
    color: #c9a03a !important;
    font-weight: 700 !important;
}

.dev-link a {
    color: #c9a03a !important;
    text-decoration: none !important;
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
}

.dev-link a:hover {
    color: #f0d878 !important;
    text-shadow: 0 0 8px rgba(201,160,58,0.4) !important;
}

.dev-whatsapp a {
    display: inline-flex !important;
    align-items: center !important;
    gap: 5px !important;
    background: #25D366 !important;
    color: #fff !important;
    padding: 6px 16px !important;
    border-radius: 20px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    font-size: 0.82rem !important;
    transition: all 0.4s cubic-bezier(0.34,1.56,0.64,1) !important;
    box-shadow: 0 4px 14px rgba(37,211,102,0.3) !important;
    margin-top: 5px !important;
}

.dev-whatsapp a:hover {
    background: #1ebc59 !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 22px rgba(37,211,102,0.5) !important;
}

/* Responsive */
@media (max-width: 900px) {
    .footer__container {
        grid-template-columns: 1fr 1fr !important;
        gap: 25px !important;
        padding: 30px 20px !important;
    }
    .footer__brand {
        grid-column: 1 / -1 !important;
        text-align: center !important;
        align-items: center !important;
    }
}

@media (max-width: 600px) {
    .footer__container {
        grid-template-columns: 1fr !important;
        padding: 25px 15px !important;
    }
    .footer__links-grid {
        grid-template-columns: 1fr 1fr !important;
    }
    .footer__bottom {
        padding: 12px 15px !important;
    }
}
/* ===========================
   FOREIGN TRIP SECTION
=========================== */

#foreign-trip {
  padding: 60px 20px;
  background: #f8fafc;
}

.foreign-container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 8px;
}

.section-subtitle {
  font-size: 1rem;
  color: #6b7280;
  margin-bottom: 35px;
}

.foreign-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 18px;
}

.foreign-card {
  background: #ffffff;
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 1rem;
  color: #111827;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
  transition: 0.2s ease;
}

.foreign-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}
/* ===========================
   WORLD-CLASS NAVBAR DESIGN
=========================== */

.nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  transition: all 0.3s ease;
}
.nav__link {
  position: relative;
  padding-bottom: 4px;
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: #0077ff;
  transition: width 0.3s ease;
}

.nav__link:hover::after {
  width: 100%;
}
/* Shadow appears when scrolling */
.nav.scrolled {
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
}

/* ===========================
   WORLD-CLASS NAVBAR
=========================== */

.nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  transition: all 0.3s ease;
}

/* Scroll shadow */
.nav.scrolled {
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.15);
}

/* Navbar links */
.nav__link {
  position: relative;
  padding: 6px 0;
  font-weight: 500;
  transition: color 0.3s ease;
}

/* Hover underline animation */
.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 2px;
  background: #0077ff;
  transition: width 0.3s ease;
}

.nav__link:hover::after {
  width: 100%;
}

/* CTA button */
.nav__link--cta {
  padding: 8px 16px;
  background: #0077ff;
  color: #fff !important;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.nav__link--cta:hover {
  background: #005fcc;
}

/* NAVBAR TEXT FIX FOR TABLET & MOBILE */
.nav__link {
  color: #111 !important;
}

.nav__link--cta {
  color: #fff !important;
}

/* ===========================
   TABLET & MOBILE NAVBAR FIX
=========================== */

/* Text color fix */
.nav__link {
  color: #111 !important;
  position: relative;
  padding: 6px 0;
  font-weight: 500;
  transition: color 0.3s ease, opacity 0.3s ease;
}

/* Hover fade + underline animation */
.nav__link:hover {
  opacity: 0.8;
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0%;
  height: 2px;
  background: #0077ff;
  transition: width 0.3s ease;
}

.nav__link:hover::after {
  width: 100%;
}

/* CTA button stays premium */
.nav__link--cta {
  background: #0077ff;
  color: #fff !important;
  padding: 8px 16px;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.nav__link--cta:hover {
  background: #005fcc;
}

/* Tablet/mobile menu animation */
#navLinks {
  transition: transform 0.35s ease, opacity 0.35s ease;
}

#navLinks.open {
  transform: translateY(0);
  opacity: 1;
}