* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

html {
  scroll-behavior: smooth;
}
.logo {
      display: flex;
      align-items: center;
      gap: 12px;
      color: #fff;
      font-weight: 700;
      font-size: 24px;
      flex-shrink: 0;
    }

    .logo img {
      height: 52px;
      width: auto;
      object-fit: contain;
      border-radius: 8px;
      background: #fff;
      padding: 4px;
    }

    .logo-text {
      display: flex;
      flex-direction: column;
      line-height: 1.1;
    }

    .logo-text span:first-child {
      font-size: clamp(22px, 2.5vw, 28px);
      font-weight: 800;
      letter-spacing: 1px;
    }

    .logo-text span:last-child {
      font-size: 12px;
      color: #93c5fd;
      letter-spacing: 2px;
    }

body {
  background: #f5f8fc;
  color: #1b1b1b;
  line-height: 1.7;
  overflow-x: hidden;
}

/* HEADER */
.header {
  width: 100%;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 18px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
  position: sticky;
  top: 0;
  z-index: 999;
}

.logo {
  font-size: 2.2rem;
  font-weight: 800;
  color: #0b4f9c;
  letter-spacing: 1px;
}

.logo span {
  color: #1da5f4;
}

.navbar {
  display: flex;
  gap: 28px;
}

.navbar a {
  text-decoration: none;
  color: #0b4f9c;
  font-weight: 600;
  font-size: 1rem;
  position: relative;
  transition: 0.3s ease;
}

.navbar a::after {
  content: '';
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #0b4f9c, #1da5f4);
  position: absolute;
  left: 0;
  bottom: -8px;
  border-radius: 20px;
  transition: 0.3s;
}

.navbar a:hover::after,
.navbar a.active::after {
  width: 100%;
}

.navbar a:hover,
.navbar a.active {
  color: #1da5f4;
}

.menu-toggle {
  display: none;
  font-size: 2rem;
  color: #0b4f9c;
  cursor: pointer;
}

/* HERO */
.hero-slider {
  position: relative;
  width: 100%;
  height: 92vh;
  overflow: hidden;
}

.slides {
  width: 100%;
  height: 100%;
  position: relative;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  display: none;
  animation: fadeZoom 1.2s ease;
}

.slide.active {
  display: block;
}

@keyframes fadeZoom {
  from {
    opacity: 0;
    transform: scale(1.05);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6,30,65,0.75), rgba(11,79,156,0.55));
}

.slide-content {
  position: absolute;
  z-index: 2;
  color: white;
  max-width: 760px;
  left: 8%;
  top: 50%;
  transform: translateY(-50%);
}

.tagline {
  display: inline-block;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.22);
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 0.95rem;
  margin-bottom: 20px;
  backdrop-filter: blur(6px);
}

.slide-content h1 {
  font-size: 4rem;
  line-height: 1.15;
  margin-bottom: 20px;
  font-weight: 800;
}

.slide-content p {
  font-size: 1.4rem;
  margin-bottom: 30px;
  line-height: 1.8;
  color: #f1f5fb;
}

.hero-buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  background: linear-gradient(135deg, #0b4f9c, #1da5f4);
  color: #fff;
  padding: 15px 32px;
  text-decoration: none;
  border-radius: 14px;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: 0.35s ease;
  box-shadow: 0 10px 24px rgba(11,79,156,0.22);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(11,79,156,0.28);
}

.btn-outline {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.85);
}

.btn-outline:hover {
  background: white;
  color: #0b4f9c;
}

.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  color: white;
  border: 1px solid rgba(255,255,255,0.25);
  font-size: 1.7rem;
  padding: 14px 18px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 3;
  transition: 0.3s;
  backdrop-filter: blur(8px);
}

.prev:hover, .next:hover {
  background: rgba(255,255,255,0.28);
}

.prev { left: 22px; }
.next { right: 22px; }

/* GENERAL */
.section {
  padding: 90px 20px;
}

.container {
  width: 90%;
  max-width: 1220px;
  margin: auto;
}

.section-badge {
  display: inline-block;
  padding: 8px 18px;
  background: rgba(29,165,244,0.12);
  color: #0b4f9c;
  font-weight: 700;
  border-radius: 999px;
  margin-bottom: 18px;
  font-size: 0.95rem;
}

.section-badge.light {
  background: rgba(255,255,255,0.15);
  color: white;
}

.section h2,
.page-banner h1 {
  font-size: 3.2rem;
  color: #0b4f9c;
  text-align: center;
  margin-bottom: 12px;
  font-weight: 800;
}

.underline {
  width: 95px;
  height: 5px;
  background: linear-gradient(90deg, #0b4f9c, #1da5f4);
  margin: 0 auto 28px auto;
  border-radius: 20px;
}

.underline.left {
  margin: 0 0 28px 0;
}

.subtitle {
  text-align: center;
  font-size: 1.2rem;
  max-width: 900px;
  margin: 0 auto 45px auto;
  color: #5a5a5a;
}

.about {
  background: linear-gradient(180deg, #ffffff, #f5f8fc);
}

.about p,
.content-glass p {
  font-size: 1.18rem;
  text-align: center;
  max-width: 980px;
  margin: 18px auto;
  color: #505050;
  line-height: 2;
}

.alt-bg {
  background: #edf3f9;
}

/* STATS */
.stats-section {
  padding: 20px 20px 80px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.stat-card {
  background: linear-gradient(135deg, #0b4f9c, #1da5f4);
  color: white;
  padding: 35px 28px;
  border-radius: 24px;
  box-shadow: 0 14px 35px rgba(11,79,156,0.18);
  transition: 0.35s;
}

.stat-card:hover {
  transform: translateY(-8px);
}

.stat-card h3 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.stat-card p {
  font-size: 1.05rem;
  opacity: 0.95;
}
.about-box {
  display: block;
  width: 100%;
}

.about-main {
  width: 100%;
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 15px 40px rgba(15, 23, 42, 0.08);
}

.about-main p {
  max-width: 100%;
}

.about-card {
  margin-top: 30px;
  background: #fff;
  border-radius: 24px;
  padding: 35px;
  box-shadow: 0 15px 40px rgba(15, 23, 42, 0.08);
}
/* CARDS */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 35px;
}

.card {
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 38px 28px;
  border-radius: 28px;
  box-shadow: 0 14px 35px rgba(0,0,0,0.06);
  transition: 0.35s ease;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.4);
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 22px 45px rgba(11,79,156,0.12);
}

.icon-circle {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px auto;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0b4f9c, #1da5f4);
  color: white;
  font-size: 1.8rem;
  box-shadow: 0 12px 25px rgba(11,79,156,0.2);
}

.card h3 {
  color: #0b4f9c;
  font-size: 1.8rem;
  margin-bottom: 18px;
  font-weight: 700;
}

.card p {
  font-size: 1.05rem;
  color: #4d4d4d;
  line-height: 1.9;
}

/* PAGE BANNER */
.page-banner {
  padding: 110px 20px;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.banner-vision {
  background: linear-gradient(135deg, #0b4f9c, #1da5f4);
}

.banner-mission {
  background: linear-gradient(135deg, #0a3d78, #0b4f9c, #1da5f4);
}

.banner-contact {
  background: linear-gradient(135deg, #0b4f9c, #0a2d55);
}

.page-banner p {
  font-size: 1.2rem;
  max-width: 850px;
  margin: 0 auto;
  color: rgba(255,255,255,0.95);
}

.content-glass {
  background: rgba(255,255,255,0.9);
  border-radius: 28px;
  padding: 55px 35px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.06);
}

/* CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 35px;
}

.contact-form-box,
.contact-info-box {
  background: rgba(255,255,255,0.92);
  padding: 38px;
  border-radius: 28px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.06);
}

.contact-form-box h2,
.contact-info-box h2 {
  color: #0b4f9c;
  font-size: 2rem;
  margin-bottom: 8px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

form input,
form textarea {
  padding: 18px 20px;
  border: 1px solid #d9e3ef;
  border-radius: 14px;
  font-size: 1rem;
  width: 100%;
  background: #f8fbff;
  transition: 0.3s;
}

form input:focus,
form textarea:focus {
  outline: none;
  border-color: #1da5f4;
  box-shadow: 0 0 0 4px rgba(29,165,244,0.12);
}

.contact-info-box p {
  font-size: 1.05rem;
  color: #444;
  margin-bottom: 10px;
}

.contact-note {
  margin-top: 28px;
  padding: 22px;
  background: linear-gradient(135deg, #eef6ff, #f6fbff);
  border-radius: 18px;
  border-left: 5px solid #1da5f4;
}

.contact-note h3 {
  color: #0b4f9c;
  margin-bottom: 10px;
}

/* CTA */
.cta-section {
  padding: 30px 20px 90px;
}

.cta-box {
  background: linear-gradient(135deg, #0b4f9c, #1da5f4);
  color: white;
  text-align: center;
  padding: 60px 30px;
  border-radius: 30px;
  box-shadow: 0 18px 45px rgba(11,79,156,0.18);
}

.cta-box h2 {
  font-size: 2.6rem;
  margin-bottom: 15px;
  color: white;
}

.cta-box p {
  font-size: 1.15rem;
  margin-bottom: 28px;
  opacity: 0.96;
}

/* FOOTER */
.footer {
  background: #082d58;
  color: white;
  text-align: center;
  padding: 24px;
  font-size: 1rem;
  margin-top: 20px;
}

/* MOBILE */
@media (max-width: 992px) {
  .slide-content h1 {
    font-size: 3rem;
  }

  .slide-content p {
    font-size: 1.15rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .section h2,
  .page-banner h1 {
    font-size: 2.6rem;
  }
}

@media (max-width: 768px) {
  .header {
    padding: 18px 20px;
    flex-wrap: wrap;
  }

  .logo {
    font-size: 1.8rem;
  }

  .menu-toggle {
    display: block;
  }

  .navbar {
    width: 100%;
    display: none;
    flex-direction: column;
    background: white;
    margin-top: 15px;
    padding: 18px;
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  }

  .navbar.show {
    display: flex;
  }

  .hero-slider {
    height: 88vh;
  }

  .slide-content {
    left: 6%;
    right: 6%;
    max-width: unset;
    text-align: center;
  }

  .slide-content h1 {
    font-size: 2.4rem;
  }

  .slide-content p {
    font-size: 1rem;
  }

  .hero-buttons {
    justify-content: center;
  }

  .section h2,
  .page-banner h1 {
    font-size: 2.2rem;
  }

  .subtitle,
  .about p,
  .content-glass p,
  .card p,
  .contact-info-box p {
    font-size: 1rem;
  }

  .card h3 {
    font-size: 1.5rem;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .prev, .next {
    font-size: 1.2rem;
    padding: 10px 14px;
  }

  .cta-box h2 {
    font-size: 2rem;
  }
}