* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Open Sans', sans-serif;
}

:root {
  --primary-blue: #163a70;
  --primary-blue-dark: #0b2e57;
  --primary-blue-soft: #edf4fb;
  --accent-gold: #f5a623;
  --text-dark: #1d2b3a;
  --text-soft: #5c6b7a;
  --light-bg: #f5f8fc;
  --white: #ffffff;
  --shadow: 0 14px 40px rgba(12, 42, 74, 0.08);
  --radius: 18px;
}

body {
  padding-top: 96px;
  color: var(--text-dark);
  background: #fff;
  line-height: 1.65;
}

a {
  text-decoration: none;
}

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

/* Navbar */
.navbar-custom {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1050;
  background: linear-gradient(180deg, rgba(8,61,107,0.96), rgba(11,79,138,0.93));
  padding: 12px 20px;
  box-shadow: 0 10px 30px rgba(10, 31, 56, 0.18);
}

.navbar-brand {
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-title {
  display: block;
  font-weight: 700;
  font-size: 1.4rem;
  color: white;
}

.navbar-text {
  display: block;
  font-size: 0.78rem;
  color: #dbe7f4;
  line-height: 1.1;
}

.logo-circle {
  position: relative;
  width: 40px;
  height: 40px;
  border: 2px solid #fff;
  border-radius: 50%;
  flex: 0 0 auto;
}

.logo-circle::before,
.logo-circle::after {
  content: "";
  position: absolute;
  background: #fff;
}

.logo-circle::before {
  width: 3px;
  height: 24px;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
}

.logo-circle::after {
  width: 20px;
  height: 3px;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
}

.cap {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-bottom: 12px solid #fff;
}

.tassel {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: white;
}

.navbar-nav .nav-link {
  color: #fff;
  font-weight: 600;
  margin-left: 18px;
  position: relative;
  transition: .25s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--accent-gold);
}

.navbar-nav .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 3px;
  border-radius: 10px;
  background: var(--accent-gold);
}

.navbar-toggler {
  border: 1px solid rgba(255,255,255,.5);
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  filter: invert(1);
}

/* Buttons */
.btn-warning,
.btn-primary,
.btn-secondary,
.btn-blue,
.learn-more-btn,
.btn-outline-light-custom {
  border-radius: 999px;
  padding: 12px 28px;
  font-weight: 700;
  transition: .25s ease;
}

.btn-warning {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  color: #102947;
}

.btn-warning:hover {
  background: #ffb834;
  border-color: #ffb834;
  color: #102947;
}

.btn-primary,
.btn-blue,
.learn-more-btn {
  background: linear-gradient(180deg, #0d5a9b, #0a4678);
  border-color: #0a4678;
  color: #fff;
}

.btn-primary:hover,
.btn-blue:hover,
.learn-more-btn:hover {
  background: linear-gradient(180deg, #0c4f89, #083b66);
  color: #fff;
}

.btn-secondary {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.4);
  color: #fff;
}

.btn-secondary:hover {
  background: rgba(255,255,255,.2);
  color: #fff;
}

.btn-outline-light-custom {
  background: transparent;
  border: 1px solid rgba(255,255,255,.55);
  color: #fff;
}

.btn-outline-light-custom:hover {
  background: rgba(255,255,255,.12);
  color: #fff;
}

/* Home page */
.fw-semibold {
  font-weight: 600 !important;
  color: white;
}

.GaNcyZ-banner-sec1 {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.GaNcyZ-banner-sec1 .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(9, 34, 63, 0.82), rgba(9, 34, 63, 0.38));
  z-index: 1;
}

.GaNcyZ-banner-sec1 .container {
  position: relative;
  z-index: 2;
}

.GaNcyZ-sec2 {
  background-color: #f2f6fb;
}

.card-box {
  background: #fff;
  border-radius: 14px;
  height: 100%;
  transition: .3s;
  box-shadow: var(--shadow);
}

.card-box:hover {
  transform: translateY(-6px);
}

.icon svg {
  width: 68px;
  height: 68px;
  fill: var(--primary-blue);
}

.GaNcyZ-sec2 h5 {
  font-weight: 700;
  color: var(--primary-blue);
  font-size: 1.35rem;
  margin-bottom: .25rem;
}

.GaNcyZ-sec2 p {
  color: var(--text-soft);
  font-size: .98rem;
  margin-bottom: 0;
}

.GaNcyZ-sec3,
.GaNcyZ-sec4,
.GaNcyZ-sec5,
.GaNcyZ-sec6,
.GaNcyZ-sec7 {
  overflow: hidden;
}

.custom-hr {
  border: none;
  height: 3px;
  background-color: var(--primary-blue);
  width: 80%;
  margin: 10px 0 20px;
}

.about-h1,
.fw-bold.mb-2,
.text-primary-blue {
  color: var(--primary-blue) !important;
}

.about-h1 {
  font-size: 3rem;
  font-weight: 700;
}

.about-h3 {
  color: var(--primary-blue);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.about-p {
  color: var(--text-soft);
  font-size: 1rem;
  padding: 8px 0 14px;
}

.aboutt-img img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.GaNcyZ-sec4 {
  background-color: #edf2f8;
  padding: 48px 0;
}

.GaNcyZ-sec4 h5,
.GaNcyZ-sec5 h2,
.GaNcyZ-sec6 h2 {
  color: var(--primary-blue);
}

.bg-light {
  background-color: #edf2f8 !important;
}

.border-line {
  border-top: 2px solid var(--primary-blue);
  display: inline-block;
  flex-grow: 1;
  max-width: 24vw;
}

.card:hover {
  transform: translateY(-4px);
  transition: transform .25s ease;
}

.cta {
  background: linear-gradient(rgba(8,61,107,0.92), rgba(8,61,107,0.92)), radial-gradient(circle at center, #0f66ab, #083d6b);
  color: #fff;
}

.cta h2 {
  font-size: 3rem;
  color: #fff;
}

/* Shared inner pages */
.page-hero {
  position: relative;
  min-height: 48vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 37, 69, .88), rgba(16, 58, 112, .58));
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  color: #fff;
  font-size: 3.2rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.page-hero p {
  color: rgba(255,255,255,.92);
  max-width: 760px;
  font-size: 1.08rem;
}

.page-section {
  padding: 82px 0;
}

.page-section.alt {
  background: var(--light-bg);
}

.section-kicker {
  color: var(--accent-gold);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .84rem;
  margin-bottom: .9rem;
}

.section-title {
  font-size: 2.35rem;
  color: var(--primary-blue);
  font-weight: 800;
  margin-bottom: 1rem;
}

.section-copy,
.copy-muted,
.page-section p,
.contact-detail,
.legal-card p,
.footer-copy {
  color: var(--text-soft);
  font-size: 1rem;
}

.content-card,
.feature-card,
.stat-card,
.contact-card,
.legal-card,
.trust-card,
.program-card,
.info-box,
.cta-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  height: 100%;
}

.content-card,
.contact-card,
.legal-card,
.info-box,
.cta-card {
  padding: 30px;
}

.feature-card,
.program-card,
.trust-card,
.stat-card {
  padding: 28px;
}

.feature-icon,
.circle-icon {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  background: linear-gradient(180deg, #edf5ff, #e5eef9);
  color: var(--primary-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  font-weight: 800;
  margin-bottom: 18px;
}

.feature-card h3,
.program-card h3,
.contact-card h3,
.legal-card h3,
.content-card h3,
.info-box h3,
.cta-card h3 {
  color: var(--primary-blue);
  font-weight: 800;
  font-size: 1.38rem;
  margin-bottom: .8rem;
}

.check-list,
.simple-list,
.legal-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.check-list li,
.simple-list li,
.legal-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 12px;
  color: var(--text-soft);
}

.check-list li::before,
.simple-list li::before,
.legal-list li::before {
  content: '•';
  position: absolute;
  left: 8px;
  top: 0;
  color: var(--accent-gold);
  font-weight: 700;
}

.image-frame img {
  border-radius: 22px;
  box-shadow: var(--shadow);
  min-height: 360px;
  object-fit: cover;
}

.highlight-strip {
  background: linear-gradient(135deg, var(--primary-blue), #0f66ab);
  color: #fff;
  border-radius: 28px;
  padding: 36px;
  box-shadow: var(--shadow);
}

.highlight-strip h2,
.highlight-strip p,
.highlight-strip li {
  color: #fff;
}

.tag-pill {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--primary-blue-soft);
  color: var(--primary-blue);
  font-weight: 700;
  font-size: .92rem;
  margin: 0 8px 10px 0;
}

.split-banner {
  background: linear-gradient(135deg, rgba(22,58,112,.08), rgba(245,166,35,.08));
  border-radius: 26px;
  padding: 32px;
}

.timeline-step {
  border-left: 3px solid rgba(22,58,112,.16);
  padding-left: 18px;
  margin-bottom: 18px;
}

.timeline-step strong {
  color: var(--primary-blue);
}

.contact-detail strong {
  color: var(--primary-blue);
}

.form-panel {
  background: #fff;
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 30px;
}

.form-control,
.form-select {
  border-radius: 14px;
  padding: 14px 16px;
  border: 1px solid #d7e1ec;
}

.form-control:focus,
.form-select:focus {
  border-color: #87a8ce;
  box-shadow: 0 0 0 .2rem rgba(22, 58, 112, .12);
}

.legal-sidebar {
  position: sticky;
  top: 118px;
}

.legal-sidebar .content-card a {
  display: block;
  color: var(--primary-blue);
  font-weight: 700;
  padding: 10px 0;
  border-bottom: 1px solid #edf1f6;
}

.legal-sidebar .content-card a:last-child {
  border-bottom: 0;
}

.notice-box {
  background: #fff8e8;
  border: 1px solid #ffe1a1;
  color: #6e5726;
  border-radius: 18px;
  padding: 18px 20px;
}

/* Footer */
.bg-footer {
  background: linear-gradient(180deg, #0a3560, #082948);
}

.footer-heading,
.footer-heading-sm,
.footer-list a,
.footer-bottom span,
.footer-contact strong {
  color: #fff;
}

.footer-heading {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.footer-heading-sm {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 14px;
}

.footer-copy,
.footer-contact,
.footer-bottom span {
  color: rgba(255,255,255,.78);
}

.footer-list li {
  margin-bottom: 10px;
}

.footer-list a {
  color: rgba(255,255,255,.88);
}

.footer-list a:hover {
  color: var(--accent-gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
}

/* Responsive */
@media (max-width: 991px) {
  body {
    padding-top: 84px;
  }

  .navbar-collapse {
    background: rgba(8,61,107,0.98);
    margin-top: 12px;
    padding: 18px;
    border-radius: 16px;
  }

  .navbar-nav .nav-link {
    margin-left: 0;
    margin-bottom: 8px;
  }

  .GaNcyZ-banner-sec1 {
    min-height: 62vh;
    text-align: center;
  }

  .GaNcyZ-banner-sec1 .btn {
    display: block;
    width: 100%;
    margin: 10px 0;
  }

  .about-h1 {
    font-size: 2.4rem;
  }

  .about-h3,
  .section-title {
    font-size: 1.8rem;
  }

  .cta h2,
  .page-hero h1 {
    font-size: 2.4rem;
  }

  .legal-sidebar {
    position: static;
  }
}

@media (max-width: 767.98px) {
  .program-icon {
    width: 30px !important;
    height: 30px !important;
  }

  .program-text {
    font-size: .9rem;
  }

  .page-section {
    padding: 62px 0;
  }

  .content-card,
  .feature-card,
  .stat-card,
  .contact-card,
  .legal-card,
  .trust-card,
  .program-card,
  .info-box,
  .cta-card,
  .form-panel {
    padding: 22px;
  }

  .page-hero {
    min-height: 42vh;
  }

  .page-hero h1 {
    font-size: 2rem;
  }

  .highlight-strip,
  .split-banner {
    padding: 24px;
  }
}

@media (max-width: 576px) {
  .logo-circle {
    width: 32px;
    height: 32px;
  }

  .cap {
    top: -10px;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #fff;
  }

  .brand-title {
    font-size: 1rem;
  }

  .navbar-text {
    font-size: .65rem;
  }

  .GaNcyZ-banner-sec1 {
    min-height: 52vh;
  }

  .GaNcyZ-banner-sec1 h1 {
    font-size: 1.95rem;
  }

  .cta h2,
  .section-title,
  .about-h1,
  .page-hero h1 {
    font-size: 1.7rem;
  }
}
