
:root {
  --navy: #0D1629;
  --gold-dark: #7D5A24;
  --gold-mid: #B99A45;
  --gold-light: #F1E7B0;
  --tagline-gold: #C7AE6A;
  --text: #111827;
  --muted: #6b7280;
  --border: #e5e7eb;
}

/* Global */
html, body {
  scroll-behavior: smooth;
  background: #ffffff;
  color: var(--text);
}

a { color: var(--navy); }
a:hover { color: var(--gold-mid); }

.gold-gradient-text {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-mid), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* Navbar + hero */
.navbar-custom {
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.navbar-custom .navbar-brand, .navbar-custom .nav-link {
  color: var(--gold-light) !important;
}
.navbar-custom .nav-link:hover { color: var(--gold-mid) !important; }

.hero {
  background: var(--navy);
  color: var(--gold-light);
  padding: 7rem 0 5rem;
  text-align:center;
}
.tagline { color: var(--tagline-gold); font-style: italic; }

/* Sections */
.section { padding: 4.5rem 0; background: #ffffff; }
.section-title { font-weight: 800; color: var(--navy); }

.card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 1rem;
}
.card p { color: var(--muted); }

.profile-avatar {
  width: 100px; height: 100px; object-fit: cover; border-radius: 9999px; border: 2px solid var(--gold-mid);
}

/* Form */
.form-control { border-radius: .5rem; border: 1px solid var(--border); }
.btn-outline-gold {
  border: 1px solid var(--gold-mid);
  color: var(--gold-dark);
  background: #ffffff;
}
.btn-outline-gold:hover {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-mid));
  color: #0b1324;
  border-color: transparent;
}

/* Footer */
.footer {
  background: var(--navy);
  color: var(--gold-light);
  padding: 2rem 0;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer a { color: var(--gold-mid); }
.footer a:hover { color: var(--gold-light); }

/* --- Popup Modal --- */
.bb-modal { position: fixed; inset: 0; display: none; z-index: 9999; }
.bb-modal.is-open { display: block; }
.bb-modal__backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.6); }
.bb-modal__panel {
  position: relative; max-width: 800px; margin: 8vh auto; background: #fff; color: var(--text);
  border-radius: 1rem; border: 1px solid var(--border); box-shadow: 0 20px 60px rgba(0,0,0,.25); padding: 2rem;
}
.bb-modal__close {
  position: absolute; top: 12px; right: 16px; border: 0; background: transparent;
  font-size: 28px; line-height: 1; cursor: pointer; color: var(--muted);
}
.bb-modal__close:hover { color: var(--gold-mid); }

.cv-btn-outline{
  border: 1px solid var(--gold-mid);
  color: var(--gold-dark);
  background: #ffffff;
  border-radius: 9999px;
  padding: .5rem 1rem;
  font-weight: 600;
  cursor: pointer;
}
.cv-btn-outline:hover{
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-mid));
  color: #0b1324;
  border-color: transparent;
}

/* Why Choose Us bullets */
.why-list {
  max-width: 900px;
  margin: 1.5rem auto 0;
  padding-left: 1.2rem;
  list-style: disc;
}
.why-list li {
  margin-bottom: .5rem;
  color: var(--text);
  line-height: 1.6;
}
.why-list li::marker {
  color: var(--gold-mid);
  font-size: 1.2em;
}

/* Polished Why Us */
.why-list {max-width:900px;margin:2rem auto 0;padding-left:1.5rem;list-style:disc;font-size:1.1rem;line-height:1.7;}
.why-list li::marker {color: var(--gold-mid);font-size:1.3em;}
.section-title {font-size:2.2rem;}


/* Anchor offset for sticky header */
.section { scroll-margin-top: 96px; }


/* Heading visual tuning */
.section-title { margin-bottom: 1.2rem; }
#why-us .section-title { margin-bottom: 1.6rem; }
.why-list { margin-top: 1rem; }

/* CTA button fix */
.btn-outline-gold {
  white-space: nowrap;
}

/* CTA button fix v2 */
.btn-outline-gold {
  display: inline-block;
  white-space: nowrap;
  padding: 12px 20px;
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
}


/* --- NAV single-line fix --- */
.navbar-custom .container { 
  display: flex; 
  align-items: center; 
  justify-content: space-between; 
  flex-wrap: nowrap;
}
.navbar-custom .container > div { 
  display: flex; 
  align-items: center; 
  gap: 22px; 
  flex-wrap: nowrap; 
  white-space: nowrap;
}
.navbar-custom .nav-link { 
  padding: 0 .15rem; 
  margin: 0; 
  white-space: nowrap; 
}

/* keep it responsive on smaller screens */
@media (max-width: 980px){
  .navbar-custom .container { flex-wrap: wrap; }
  .navbar-custom .container > div { 
    flex-basis: 100%; 
    justify-content: center; 
    flex-wrap: wrap; 
    gap: 16px;
  }
}

/* Consistent gold-filled CTA buttons */
.btn-gold {
  display:inline-block;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-mid));
  color: #fff !important;
  font-weight: 700;
  border: none;
  border-radius: .6rem;
  padding: 14px 28px;
  font-size: 1.05rem;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: background 0.3s ease;
}
.btn-gold:hover {
  background: linear-gradient(90deg, var(--gold-mid), var(--gold-light));
  color: #0D1629 !important;
}

/* Force navbar links inline */
.navbar-custom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar-custom .container > div {
  display: flex;
  align-items: center;
  gap: 28px;
  white-space: nowrap;
}
.navbar-custom .nav-link {
  margin: 0;
  padding: 0;
  white-space: nowrap;
}

/* Leadership card CTA compact */
#leadership .card .btn-gold{
  display:inline-block;
  width:auto;
  min-width:160px;
  padding:10px 18px;
  font-size:0.95rem;
  border-radius:999px;
  margin:10px auto 6px;
}
