:root {
  --nav-bg: #031f4b;
  --primary: #1f5bcb;
  --primary-dark: #0f3d82;
  --secondary: #ff8c2f;
  --success: #2fb77f;
  --light: #f7f9fc;
  --dark: #0b1a33;
  --white: #ffffff;
  --text: #243b5c;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--light);
  color: var(--text);
}

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

.site-header {
  background: rgba(3, 31, 75, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.navbar-brand {
  gap: 0.75rem;
  min-width: 0;
}

.brand-mark {
  width: 3rem;
  height: 3rem;
  flex: 0 0 3rem;
  border-radius: 0.9rem;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #ff8c2f, #ffd166);
  box-shadow: 0 12px 30px rgba(255, 140, 47, 0.28);
  font-weight: 800;
  color: var(--white);
}

.brand-logo-mark {
  overflow: hidden;
  background: var(--white);
  padding: 0.25rem;
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.brand-text {
  display: grid;
  line-height: 1.05;
}

.brand-text strong {
  color: var(--white);
  font-size: 1rem;
  letter-spacing: 0.01em;
}

.brand-text small {
  margin-top: 0.25rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.73rem;
}

.nav-link {
  position: relative;
  margin-inline: 0.2rem;
  border-radius: 999px;
  padding-inline: 0.9rem !important;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.76);
  transition: color 0.25s ease, background-color 0.25s ease;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .nav-link.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.navbar-buttons .btn {
  min-width: 96px;
  border-radius: 999px;
  font-weight: 700;
}

.section {
  padding: 5rem 0;
}

.section-label {
  display: inline-flex;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--secondary);
}

.section-title {
  font-size: clamp(2rem, 2.5vw, 3rem);
  line-height: 1.05;
  margin-bottom: 1rem;
}

.intro-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, #ffffff 0%, #f3f7ff 100%);
}

.intro-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 140, 47, 0.11), transparent 28rem),
    radial-gradient(circle at 86% 68%, rgba(47, 183, 127, 0.12), transparent 26rem);
  pointer-events: none;
}

.intro-section .container {
  position: relative;
  z-index: 1;
}

.intro-section .section-title {
  max-width: 620px;
  color: var(--dark);
}

.intro-section p {
  max-width: 610px;
  color: #50617f;
  font-size: 1.02rem;
  line-height: 1.8;
}

.intro-section .btn-primary {
  margin-top: 0.5rem;
  border: 0;
  border-radius: 999px;
  padding: 0.85rem 1.35rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  font-weight: 800;
  box-shadow: 0 16px 32px rgba(31, 91, 203, 0.2);
}

.intro-section .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(31, 91, 203, 0.26);
}

.intro-visual {
  position: relative;
  min-height: 610px;
  padding: 1.1rem 0 0 1.1rem;
}

.intro-visual::before {
  content: '';
  position: absolute;
  inset: 3rem 2.25rem 2rem 0;
  border-radius: 1.5rem;
  background: linear-gradient(135deg, rgba(31, 91, 203, 0.12), rgba(255, 140, 47, 0.11));
}

.intro-image {
  position: relative;
  z-index: 1;
  width: min(82%, 460px);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 0.65rem solid var(--white);
  border-radius: 1.5rem;
  box-shadow: 0 30px 70px rgba(11, 26, 51, 0.2);
}

.objectives-section,
.services-section {
  position: relative;
  overflow: hidden;
}

.objectives-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.services-section {
  background:
    linear-gradient(180deg, #f8fbff 0%, #eef5ff 100%);
}

.objectives-section::before,
.services-section::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.objectives-section::before {
  background:
    radial-gradient(circle at 8% 18%, rgba(31, 91, 203, 0.08), transparent 24rem),
    radial-gradient(circle at 90% 72%, rgba(255, 140, 47, 0.1), transparent 24rem);
}

.services-section::before {
  background:
    radial-gradient(circle at 18% 84%, rgba(47, 183, 127, 0.11), transparent 25rem),
    radial-gradient(circle at 88% 16%, rgba(31, 91, 203, 0.1), transparent 26rem);
}

.objectives-section .container,
.services-section .container {
  position: relative;
  z-index: 1;
}

.objectives-section .section-heading p,
.services-section .section-heading p {
  max-width: 680px;
  line-height: 1.75;
}

.objectives-section .row,
.services-section .row {
  align-items: stretch;
}

.objective-card,
.service-card {
  position: relative;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(31, 91, 203, 0.08);
  border-radius: 1.25rem !important;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 46px rgba(11, 26, 51, 0.08) !important;
}

.objective-card::before,
.service-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 0.32rem;
  background: linear-gradient(90deg, var(--primary), var(--success), var(--secondary));
}

.objective-card::after,
.service-card::after {
  content: '';
  position: absolute;
  width: 7rem;
  height: 7rem;
  right: -3.2rem;
  top: -3.2rem;
  border-radius: 50%;
  background: rgba(31, 91, 203, 0.06);
}

.objective-card i,
.service-card i {
  position: relative;
  z-index: 1;
  width: 4rem;
  height: 4rem;
  margin-bottom: 1.25rem !important;
  border-radius: 1.1rem;
  background: linear-gradient(135deg, rgba(31, 91, 203, 0.12), rgba(31, 91, 203, 0.04));
  box-shadow: inset 0 0 0 1px rgba(31, 91, 203, 0.08);
}

.objective-card i.text-success,
.service-card i.text-success {
  background: linear-gradient(135deg, rgba(47, 183, 127, 0.15), rgba(47, 183, 127, 0.05));
  box-shadow: inset 0 0 0 1px rgba(47, 183, 127, 0.1);
}

.objective-card i.text-warning,
.service-card i.text-warning {
  background: linear-gradient(135deg, rgba(255, 140, 47, 0.16), rgba(255, 140, 47, 0.05));
  box-shadow: inset 0 0 0 1px rgba(255, 140, 47, 0.12);
}

.service-card i.text-info {
  background: linear-gradient(135deg, rgba(13, 202, 240, 0.14), rgba(31, 91, 203, 0.05));
  box-shadow: inset 0 0 0 1px rgba(13, 202, 240, 0.12);
}

.objective-card h5,
.service-card h5 {
  position: relative;
  z-index: 1;
  margin-bottom: 0.65rem;
  color: var(--dark);
  font-weight: 850;
}

.objective-card p,
.service-card p {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
  color: #627089;
  line-height: 1.7;
}

.objective-card:hover,
.service-card:hover {
  border-color: rgba(31, 91, 203, 0.16);
  background: var(--white);
}

.education-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, #ffffff 0%, #f4f9ff 54%, #fff8ef 100%);
}

.education-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 20%, rgba(31, 91, 203, 0.09), transparent 25rem),
    radial-gradient(circle at 88% 75%, rgba(255, 140, 47, 0.12), transparent 24rem);
  pointer-events: none;
}

.education-section .container {
  position: relative;
  z-index: 1;
}

.education-section .section-label {
  color: var(--primary);
  font-weight: 800;
}

.education-section .section-title {
  max-width: 600px;
  color: var(--dark);
}

.education-section .col-lg-6 > p {
  max-width: 610px;
  color: #52617b;
  font-size: 1.04rem;
  line-height: 1.85;
}

.education-section .feature-list {
  display: grid;
  gap: 0.85rem;
  max-width: 590px;
}

.education-section .feature-list li {
  margin: 0;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(47, 183, 127, 0.14);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.78);
  color: #31415f;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(11, 26, 51, 0.06);
}

.education-section .feature-list i {
  width: 2.15rem;
  height: 2.15rem;
  flex: 0 0 2.15rem;
  display: grid;
  place-items: center;
  border-radius: 0.75rem;
  background: rgba(47, 183, 127, 0.12);
}

.education-section .content-card {
  position: relative;
  overflow: visible;
  opacity: 1;
  transform: none;
  border: 0;
  border-radius: 1.5rem !important;
  background: transparent;
  box-shadow: none !important;
}

.education-section .content-card::before {
  content: '';
  position: absolute;
  inset: 2.4rem 0 -1rem 2.4rem;
  border-radius: 1.6rem;
  background: linear-gradient(135deg, var(--primary), var(--success));
  opacity: 0.14;
}

.education-section .content-card::after {
  content: 'Skills for tomorrow';
  position: absolute;
  left: 0;
  bottom: 2rem;
  z-index: 2;
  max-width: 15rem;
  padding: 1rem 1.15rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.94);
  color: var(--dark);
  font-weight: 850;
  box-shadow: 0 20px 46px rgba(11, 26, 51, 0.16);
}

.education-section .content-card img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  object-fit: contain;
  border: 0.65rem solid var(--white);
  border-radius: 1.45rem !important;
  box-shadow: 0 30px 70px rgba(11, 26, 51, 0.18);
}

.health-employment-section .full-image-card {
  opacity: 1;
  transform: none;
  overflow: hidden;
  border: 1px solid rgba(31, 91, 203, 0.08);
  background: var(--white);
  box-shadow: 0 24px 58px rgba(11, 26, 51, 0.12) !important;
}

.health-employment-section .full-image-card img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.women-business-section {
  position: relative;
  overflow: hidden;
}

.women-business-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 14% 20%, rgba(255, 140, 47, 0.1), transparent 24rem),
    radial-gradient(circle at 88% 74%, rgba(31, 91, 203, 0.09), transparent 26rem);
  pointer-events: none;
}

.women-business-section .container {
  position: relative;
  z-index: 1;
}

.women-business-section .section-title {
  color: var(--dark);
}

.women-business-section .col-lg-6 > p {
  color: #52617b;
  font-size: 1.03rem;
  line-height: 1.82;
}

.women-business-section .feature-list li {
  margin-bottom: 0.8rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(31, 91, 203, 0.08);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.78);
  color: #33425f;
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(11, 26, 51, 0.05);
}

.women-business-section .feature-list i {
  width: 2.1rem;
  height: 2.1rem;
  flex: 0 0 2.1rem;
  display: grid;
  place-items: center;
  border-radius: 0.75rem;
  background: rgba(47, 183, 127, 0.12);
}

.women-business-section .full-image-card {
  opacity: 1;
  transform: none;
  overflow: hidden;
  border: 1px solid rgba(31, 91, 203, 0.08);
  background: var(--white);
  box-shadow: 0 24px 58px rgba(11, 26, 51, 0.12) !important;
}

.women-business-section .full-image-card img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.stats-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, #031f4b 0%, #16499c 52%, #0f3d82 100%);
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 22%, rgba(255, 209, 102, 0.22), transparent 25rem),
    radial-gradient(circle at 88% 70%, rgba(47, 183, 127, 0.2), transparent 26rem),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 18px);
  pointer-events: none;
}

.stats-section .container {
  position: relative;
  z-index: 1;
}

.stats-section .counter-card {
  position: relative;
  min-height: 215px;
  opacity: 1;
  transform: none;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.16);
}

.stats-section .counter-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 0.28rem;
  background: linear-gradient(90deg, #ffd166, var(--success), #ffffff);
}

.stats-section .counter-card i {
  width: 3.75rem;
  height: 3.75rem;
  margin: 0 auto 1rem;
  display: grid;
  place-items: center;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.14);
  color: #ffd166;
  font-size: 1.45rem;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
}

.stats-section .counter-card h3 {
  margin-bottom: 0.55rem;
  color: var(--white);
  font-size: clamp(2.35rem, 4vw, 3.35rem);
  font-weight: 850;
  line-height: 1;
}

.stats-section .counter-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 700;
  line-height: 1.45;
}

.stats-section .counter-card:hover {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.15);
}

.why-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, #ffffff 0%, #f5f9ff 100%);
}

.why-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 18%, rgba(47, 183, 127, 0.11), transparent 24rem),
    radial-gradient(circle at 92% 78%, rgba(255, 140, 47, 0.1), transparent 24rem);
  pointer-events: none;
}

.why-section .container {
  position: relative;
  z-index: 1;
}

.why-section .section-title {
  color: var(--dark);
}

.why-section .col-lg-5 > p {
  color: #52617b;
  font-size: 1.03rem;
  line-height: 1.82;
}

.why-section .feature-list {
  display: grid;
  gap: 0.85rem;
}

.why-section .feature-list li {
  margin: 0;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(47, 183, 127, 0.13);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.82);
  color: #33425f;
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(11, 26, 51, 0.05);
}

.why-section .feature-list i {
  width: 2.1rem;
  height: 2.1rem;
  flex: 0 0 2.1rem;
  display: grid;
  place-items: center;
  border-radius: 0.75rem;
  background: rgba(47, 183, 127, 0.12);
}

.why-section .choose-grid {
  align-items: stretch;
}

.why-section .choose-card {
  position: relative;
  height: 100%;
  opacity: 1;
  transform: none;
  overflow: hidden;
  border: 1px solid rgba(31, 91, 203, 0.08);
  border-radius: 1.25rem !important;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 46px rgba(11, 26, 51, 0.08) !important;
}

.why-section .choose-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 0.3rem;
  background: linear-gradient(90deg, var(--primary), var(--success), var(--secondary));
}

.why-section .choose-card > i {
  width: 3.75rem;
  height: 3.75rem;
  margin-bottom: 1.15rem;
  display: grid;
  place-items: center;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(31, 91, 203, 0.12), rgba(47, 183, 127, 0.08));
  color: var(--primary);
  font-size: 1.35rem;
  box-shadow: inset 0 0 0 1px rgba(31, 91, 203, 0.08);
}

.why-section .choose-card h5 {
  margin-bottom: 0.65rem;
  color: var(--dark);
  font-weight: 850;
}

.why-section .choose-card p {
  margin-bottom: 0;
  color: #627089;
  line-height: 1.7;
}

.why-section .choose-card:hover {
  border-color: rgba(31, 91, 203, 0.16);
  background: var(--white);
}

.lead {
  color: #52618c;
}

.hero-section,
.contact-hero,
.policy-hero {
  position: relative;
  background: linear-gradient(135deg, rgba(154, 193, 255, 0.96), rgba(246, 225, 186, 0.76));
}

.hero-section {
  min-height: calc(100vh - 82px);
  display: flex;
  align-items: center;
  padding: 7rem 0 6rem;
  isolation: isolate;
}

.hero-section::before,
.hero-section::after {
  content: '';
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  z-index: 0;
}

.hero-section::before {
  width: 28rem;
  height: 28rem;
  right: -8rem;
  top: 7rem;
  background: radial-gradient(circle, rgba(255, 140, 47, 0.24), transparent 66%);
}

.hero-section::after {
  width: 20rem;
  height: 20rem;
  left: -7rem;
  bottom: -6rem;
  background: radial-gradient(circle, rgba(47, 183, 127, 0.18), transparent 68%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(3, 31, 75, 0.92) 0%, rgba(3, 31, 75, 0.72) 48%, rgba(3, 31, 75, 0.45) 100%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.055) 0 1px, transparent 1px 18px);
}

.hero-content,
.contact-hero .container,
.policy-hero .container {
  position: relative;
  z-index: 1;
}

.hero-section .eyebrow-label {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1.25rem;
  padding: 0.55rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffd166;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-section .eyebrow-label::before {
  content: '';
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 0.34rem rgba(47, 183, 127, 0.18);
}

.hero-section h1 {
  max-width: 760px;
  margin-bottom: 1.25rem;
  font-size: clamp(2.55rem, 5vw, 5rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-section .lead {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.78) !important;
  font-size: clamp(1.02rem, 1.45vw, 1.25rem);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-section .hero-actions .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  border-radius: 999px;
  padding-inline: 1.5rem;
  font-weight: 800;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.16);
}

.hero-section .btn-warning {
  border-color: #ffd166;
  background: linear-gradient(135deg, #ffb703, #ffd166);
  color: #18213d;
}

.hero-section .btn-outline-light {
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.06);
}

.hero-section .btn:hover {
  transform: translateY(-2px);
}

.hero-card,
.about-hero-card,
.contact-hero-card,
.info-card,
.feature-card,
.service-card,
.content-card,
.counter-card,
.choose-card,
.testimonial-card,
.team-card,
.contact-card,
.map-card,
.info-box,
.faq-card,
.objective-card,
.value-card,
.story-card,
.future-goal-card,
.feature-box {
  transition: transform 0.35s ease, box-shadow 0.35s ease, opacity 0.6s ease;
  opacity: 0;
  transform: translateY(20px);
}

.hero-card {
  position: relative;
  overflow: hidden;
  opacity: 1;
  transform: none;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 1.5rem !important;
  box-shadow: 0 32px 70px rgba(1, 12, 33, 0.28) !important;
}

.hero-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 0.38rem;
  background: linear-gradient(90deg, var(--secondary), var(--success), var(--primary));
}

.hero-card .icon-box {
  width: 4.25rem;
  height: 4.25rem;
  display: grid;
  place-items: center;
  border-radius: 1.2rem;
  box-shadow: 0 18px 34px rgba(31, 91, 203, 0.22);
}

.hero-card h4 {
  color: var(--dark);
  font-weight: 800;
}

.hero-card p {
  line-height: 1.7;
}

.stat-blocks {
  gap: 0.75rem;
}

.stat-blocks > div {
  flex: 1;
  min-width: 0;
  padding: 0.9rem 0.7rem;
  border-radius: 1rem;
  background: #f5f8ff;
  text-align: center;
}

.stat-blocks strong {
  display: block;
  color: var(--primary-dark);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  line-height: 1;
}

.stat-blocks span {
  display: block;
  margin-top: 0.35rem;
  color: #64748b;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-card:hover,
.about-hero-card:hover,
.info-card:hover,
.feature-card:hover,
.service-card:hover,
.content-card:hover,
.counter-card:hover,
.choose-card:hover,
.testimonial-card:hover,
.team-card:hover,
.contact-card:hover,
.map-card:hover,
.info-box:hover,
.faq-card:hover,
.objective-card:hover,
.value-card:hover,
.story-card:hover,
.future-goal-card:hover,
.feature-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(15, 52, 130, 0.12);
}

.hero-section .hero-actions .btn,
.cta-section .btn,
.about-hero-card .btn {
  min-width: 170px;
}

.info-grid {
  display: grid;
  gap: 1rem;
}

.intro-visual .info-grid {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  width: min(78%, 430px);
  gap: 0.85rem;
}

.info-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.intro-section .info-card {
  border: 1px solid rgba(31, 91, 203, 0.08);
  border-radius: 1rem !important;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 46px rgba(11, 26, 51, 0.1) !important;
}

.intro-section .info-card h5 {
  margin-bottom: 0.35rem;
  color: var(--dark);
  font-weight: 800;
}

.intro-section .info-card p {
  margin-bottom: 0;
  color: #64748b;
  font-size: 0.94rem;
  line-height: 1.6;
}

.info-card i,
.feature-card i,
.service-card i,
.objective-card i {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border-radius: 1rem;
  background: rgba(31, 91, 203, 0.12);
}

.feature-card,
.service-card,
.objective-card,
.value-card,
.team-card,
.testimonial-card,
.contact-card,
.info-box,
.faq-card,
.story-card,
.feature-box,
.counter-card,
.choose-card {
  border: none;
}

.objectives-section .objective-card,
.services-section .service-card {
  opacity: 1;
  transform: none;
  border: 1px solid rgba(31, 91, 203, 0.08);
}

.objectives-section .objective-card i,
.services-section .service-card i {
  width: 4rem;
  height: 4rem;
  margin-bottom: 1.25rem !important;
  border-radius: 1.1rem;
  background: linear-gradient(135deg, rgba(31, 91, 203, 0.12), rgba(31, 91, 203, 0.04));
  box-shadow: inset 0 0 0 1px rgba(31, 91, 203, 0.08);
}

.objectives-section .objective-card i.text-success,
.services-section .service-card i.text-success {
  background: linear-gradient(135deg, rgba(47, 183, 127, 0.15), rgba(47, 183, 127, 0.05));
  box-shadow: inset 0 0 0 1px rgba(47, 183, 127, 0.1);
}

.objectives-section .objective-card i.text-warning,
.services-section .service-card i.text-warning {
  background: linear-gradient(135deg, rgba(255, 140, 47, 0.16), rgba(255, 140, 47, 0.05));
  box-shadow: inset 0 0 0 1px rgba(255, 140, 47, 0.12);
}

.services-section .service-card i.text-info {
  background: linear-gradient(135deg, rgba(13, 202, 240, 0.14), rgba(31, 91, 203, 0.05));
  box-shadow: inset 0 0 0 1px rgba(13, 202, 240, 0.12);
}

.feature-card,
.service-card,
.objective-card,
.value-card,
.team-card,
.testimonial-card,
.contact-card,
.info-box,
.faq-card,
.story-card,
.future-goal-card {
  background: var(--white);
}

.feature-card.bg-gradient-indigo,
.future-goal-card,
.cta-section,
.about-hero-card,
.hero-section,
.contact-hero,
.policy-hero {
  color: var(--white);
}

.bg-gradient-primary {
  background: linear-gradient(135deg, var(--primary), #224baa);
}

.bg-gradient-indigo {
  background: linear-gradient(135deg, #2b5ebf, #0b325d);
}

.bg-gradient-orange {
  background: linear-gradient(135deg, #ff8c2f, #ffb14d);
}

.bg-gradient-light {
  background: linear-gradient(135deg, #f7f9fc, #eef4ff);
}

.contact-preview div,
.info-box h6,
.footer-links li,
.feature-list li,
.count-increment,
.map-placeholder,
.social-links a {
  transition: color 0.3s ease, transform 0.3s ease;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  color: #546a8a;
}

.counter-card {
  min-height: 180px;
  background: rgba(255, 255, 255, 0.1);
}

.counter-card h3 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.counter-card p,
.testimonial-card p,
.team-card span,
.info-box p,
.contact-preview div,
.footer-links li a,
.social-links a {
  color: #7380a1;
}

.testimonial-card {
  min-height: 230px;
}

.team-avatar {
  width: 6rem;
  height: 6rem;
  margin: auto;
  display: grid;
  place-items: center;
  border-radius: 1.5rem;
  background: linear-gradient(135deg, rgba(31, 91, 203, 0.12), rgba(255, 140, 47, 0.15));
}

.contact-preview {
  display: grid;
  gap: 1rem;
}

.contact-preview div {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.map-card {
  min-height: 320px;
}

.map-placeholder {
  min-height: 320px;
  background: linear-gradient(145deg, rgba(31, 91, 203, 0.9), rgba(1, 30, 58, 0.9));
}

.map-placeholder h4,
.map-placeholder p {
  color: rgba(255, 255, 255, 0.9);
}

.social-links {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.social-links a {
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.accordion-button {
  background: #f8fbff;
}

.auth-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #0b1a33 0%, #16325f 55%, #f7f9fc 100%);
}

.auth-container {
  width: min(100%, 520px);
  padding: 2rem;
}

.auth-card {
  border: none;
}

.auth-brand {
  width: 4rem;
  height: 4rem;
  border-radius: 1.25rem;
  display: grid;
  place-items: center;
  margin: auto;
  background: linear-gradient(135deg, var(--secondary), #ffbb6e);
  color: var(--white);
  font-weight: 800;
  font-size: 1.35rem;
}

.divider {
  display: flex;
  align-items: center;
  text-align: center;
  gap: 1rem;
  color: #98a6c0;
}

.divider::before,
.divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #dfe7f3;
}

.footer {
  color: rgba(255, 255, 255, 0.85);
}

.footer-links {
  padding: 0;
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links li a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}

.footer-links li a:hover {
  color: var(--secondary);
}

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

.policy-content h2 {
  margin-top: 2rem;
}

.policy-content p {
  color: #4a5b7c;
}

@media (max-width: 991px) {
  .site-header .navbar-collapse {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 1rem;
    background: rgba(2, 22, 54, 0.72);
  }

  .hero-section,
  .contact-hero,
  .policy-hero {
    background-position: top center;
  }

  .hero-section {
    min-height: auto;
    padding: 5.5rem 0 4.5rem;
  }

  .intro-visual {
    min-height: auto;
    padding: 0;
  }

  .intro-visual::before {
    inset: 2rem 0 8rem 1.5rem;
  }

  .intro-image {
    width: 100%;
    max-height: 520px;
    aspect-ratio: 16 / 11;
  }

  .intro-visual .info-grid {
    position: relative;
    width: 100%;
    margin-top: -3rem;
    padding-inline: 1rem;
  }

  .education-section .content-card {
    margin-top: 1rem;
  }
}

@media (max-width: 767px) {
  .brand-text strong {
    font-size: 0.9rem;
  }

  .brand-text small {
    display: none;
  }

  .navbar-buttons {
    margin-top: 1rem;
  }

  .section {
    padding: 3rem 0;
  }

  .hero-section {
    padding: 4.25rem 0 3.5rem;
  }

  .hero-section h1 {
    font-size: clamp(2.2rem, 12vw, 3.25rem);
  }

  .hero-actions .btn {
    width: 100%;
    margin-right: 0 !important;
  }

  .stat-blocks {
    flex-direction: column;
  }

  .intro-section p {
    font-size: 1rem;
  }

  .intro-image {
    border-width: 0.45rem;
    border-radius: 1.1rem;
  }

  .intro-visual .info-grid {
    margin-top: 1rem;
    padding-inline: 0;
  }

  .intro-section .info-card {
    padding: 1.1rem !important;
  }

  .education-section .feature-list li {
    align-items: flex-start;
    padding: 0.85rem;
    font-size: 0.95rem;
  }

  .education-section .content-card {
    padding: 0 !important;
  }

  .education-section .content-card::before {
    inset: 1.4rem 0 -0.6rem 1rem;
  }

  .education-section .content-card::after {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    max-width: none;
  }

  .education-section .content-card img {
    border-width: 0.45rem;
    border-radius: 1.1rem !important;
  }
}
