/* ================= GLOBAL ================= */
body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
}

/* ================= NAVBAR ================= */
.navbar-wrap {
  background: #ffffff;
}

.navbar {
  padding: 16px 0;
}

.logo-img {
  max-height: 60px;
  max-width: 180px;
  width: auto;
  height: auto;
  object-fit: contain;
}


.nav-link {
  font-weight: 600;
  color: #333 !important;
  margin: 0 12px;
}

.nav-link:hover,
.nav-link.active {
  color: #0d4fa3 !important;
}

.nav-cta-btn {
  background: #0d4fa3;
  color: #fff;
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 600;

  display: inline-flex;          /* key */
  align-items: center;           /* vertical center */
  justify-content: center;       /* horizontal center */
  gap: 6px;                      /* space between icon & text */
  line-height: 1;                /* prevents text shift */
  text-decoration: none;
}


.nav-cta-btn:hover {
  background: #093c7d;
  color: #fff;
}

/* ================= HERO SECTION ================= */
.hero-main {
  position: relative;
  overflow: hidden;
  padding: 90px 0 110px;

  background: linear-gradient(
    135deg,
    #f5f9ff 0%,
    #eef4ff 45%,
    #fff8e6 100%
  );
}

.hero-main::before,
.hero-main::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(130px);
  opacity: 0.55;
  z-index: 0;
}

/* BLUE BLINK */
.hero-main::before {
  background: #3b82f6;
  top: -160px;
  right: -160px;
  animation: blueGlow 6s ease-in-out infinite;
}

/* YELLOW BLINK */
.hero-main::after {
  background: #facc15;
  bottom: -160px;
  left: -160px;
  animation: yellowGlow 6s ease-in-out infinite;
}
@keyframes blueGlow {
  0%   { opacity: 0.35; transform: scale(1); }
  50%  { opacity: 0.7;  transform: scale(1.08); }
  100% { opacity: 0.35; transform: scale(1); }
}

@keyframes yellowGlow {
  0%   { opacity: 0.35; transform: scale(1); }
  50%  { opacity: 0.65; transform: scale(1.08); }
  100% { opacity: 0.35; transform: scale(1); }
}

.hero-main .container {
  position: relative;
  z-index: 2;
}

.hero-badge {
  background: #facc15;
  color: #111;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.badge-star {
  color: #000000 !important;   /* FULL BLACK */
  font-size: 14px;
}



.hero-heading {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.25;
  color: #1f2937;
}

.hero-heading span {
  color: #0d4fa3;
}

.hero-text {
  margin-top: 16px;
  font-size: 16px;
  color: #4b5563;
  max-width: 520px;
}

.hero-buttons {
  margin-top: 25px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary-hero {
  background: #0d4fa3;
  color: #fff;
  padding: 13px 28px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
}

.btn-primary-hero:hover {
  background: #093c7d;
}

.btn-whatsapp-hero {
  background: #f59e0b;
  color: #fff;
  padding: 13px 28px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
}

.btn-whatsapp-hero:hover {
  background: #d97706;
}

.hero-features {
  margin-top: 14px;
  font-size: 14px;
  color: #374151;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

/* HERO IMAGE */

.hero-image-box {
  position: relative;
  z-index: 1;
  background: #ffffff;          /* white outer frame */
  padding: 14px;                /* thickness of white border */
  border-radius: 26px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.18);
}

/* IMAGE */
.hero-image-box img {
  width: 100%;
  display: block;
  border-radius: 20px;          /* slightly smaller than outer */
}


/* ================= COURSES SECTION ================= */
.courses-section {
  padding: 90px 0;
  background: #ffffff;
  font-family: "Poppins", sans-serif;
}

.courses-header h2 {
  font-size: 34px;
  font-weight: 800;
  color: #2b2b2b;
}

.courses-header h2 span {
  color: #0d4fa3;
}

.courses-header p {
  margin-top: 10px;
  color: #6b7280;
  font-size: 15px;
}

/* GRID */
.courses-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* CARD */
.course-card {
  background: radial-gradient(circle at top, #f1f7fc, #ffffff);
  padding: 30px 26px;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.course-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.course-card h4 {
  margin-top: 18px;
  font-weight: 700;
  color: #2b2b2b;
}

.course-card p {
  font-size: 14px;
  color: #6b7280;
  margin: 12px 0;
}

/* LIST */
.course-card ul {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}

.course-card ul li {
  font-size: 14px;
  color: #374151;
  margin-bottom: 6px;
}

.course-card ul li::before {
  content: "✔";
  color: #22c55e;
  margin-right: 8px;
}

/* ICON */
.course-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #fff;
}

.course-icon.blue   { background: #0d4fa3; }
.course-icon.orange { background: #ff7a00; }
.course-icon.yellow { background: #facc15; color:#000; }
.course-icon.navy   { background: #0b2d5c; }

/* LINK */
.learn-link {
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
}

.learn-link.blue   { color: #0d4fa3; }
.learn-link.orange { color: #ff7a00; }
.learn-link.yellow { color: #ca8a04; }
.learn-link.navy   { color: #0b2d5c; }

/* ================= RESPONSIVE ================= */
@media (max-width: 1200px) {
  .courses-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .courses-grid {
    grid-template-columns: 1fr;
  }
}
/* ================= LEADERSHIP SECTION ================= */
.leadership-section {
  background: radial-gradient(
    circle at top right,
    #0b4aa2 0%,
    #07336d 45%,
    #041f42 100%
  );
  padding: 100px 0;
  font-family: "Poppins", sans-serif;
  color: #ffffff;
}

.leadership-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 60px;
}

/* IMAGE CARD */
.leader-image-box {
  background: #ffffff;
  padding: 14px;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.35);
}

.leader-image-box img {
  width: 100%;
  max-width: 420px;
  border-radius: 14px;
  display: block;
}

/* CONTENT */
.leader-content {
  max-width: 620px;
}

/* PILL */
.leader-pill {
  display: inline-block;
  background: #facc15;
  color: #111;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 14px;
}

/* HEADINGS */
.leader-content h2 {
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 6px;
}

.leader-content h4 {
  color: #facc15;
  font-weight: 600;
  margin-bottom: 18px;
}

/* TEXT */
.leader-content p {
  font-size: 15px;
  line-height: 1.7;
  color: #dbeafe;
  margin-bottom: 14px;
}

/* HIGHLIGHT BOX */
.leader-highlight {
  margin-top: 24px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 20px 22px;
  border-radius: 14px;
}

.leader-highlight h3 {
  font-size: 20px;
  color: #facc15;
  margin-bottom: 6px;
}

.leader-highlight p {
  font-size: 14px;
  color: #e5edff;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .leadership-container {
    flex-direction: column;
    text-align: center;
  }

  .leader-image-box img {
    max-width: 340px;
  }

  .leader-content {
    max-width: 100%;
  }
}
/* SECTION */
.why-section {
  padding: 90px 0;
  background: #ffffff;
  font-family: "Poppins", sans-serif;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* HEADER */
.why-header {
  text-align: center;
  margin-bottom: 60px;
}

.why-header h2 {
  font-size: 36px;
  font-weight: 800;
  color: #1f2937;
}

.why-header h2 span {
  color: #0d4fa3;
}

.why-header p {
  font-size: 15px;
  color: #6b7280;
  margin-top: 10px;
}

/* GRID */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.why-card {
  background: radial-gradient(
    circle at top left,
    #f4f9ff 0%,
    #eef5fb 100%
  );
  padding: 36px 30px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}

/* ICON */
.why-icon {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #fff;
  font-size: 18px;
}

/* ICON COLORS */
.why-icon.blue {
  background: linear-gradient(135deg, #2563eb, #1e40af);
}

.why-icon.orange {
  background: linear-gradient(135deg, #f97316, #ea580c);
}

.why-icon.yellow {
  background: linear-gradient(135deg, #facc15, #eab308);
  color: #111;
}

.why-icon.navy {
  background: linear-gradient(135deg, #0f3d91, #062b5b);
}

/* TEXT */
.why-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-header h2 {
    font-size: 28px;
  }
}

/* ===== CTA ===== */
.cta-section {
  background: radial-gradient(circle at top, #0d4fa3, #062b5b);
  padding: 90px 20px;
  color: #fff;
  text-align: center;
}

.cta-container {
  max-width: 900px;
  margin: auto;
}

.cta-section h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 15px;
}

.cta-section p {
  font-size: 17px;
  color: #dbeafe;
  margin-bottom: 35px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.cta-btn {
  padding: 14px 30px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
}

.cta-btn.primary {
  background: #facc15;
  color: #000;
}

.cta-btn.whatsapp {
  background: #f59e0b;
  color: #fff;
}

.cta-features {
  display: flex;
  justify-content: center;
  gap: 22px;
  font-size: 14px;
  color: #bbf7d0;
  flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.main-footer {
  background: #062b5b;
  color: #cbd5f5;
  padding: 70px 20px 30px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer-logo {
  width: 300px;
  margin-bottom: 15px;
  display: block;
  margin-left: auto;
}

.footer-col h4 {
  color: #facc15;
  margin-bottom: 14px;
}

.footer-col p,
.footer-col li {
  font-size: 14px;
  line-height: 1.6;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col li {
  margin-bottom: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.footer-col li:hover {
  color: #facc15;
}

.footer-social a {
  width: 36px;
  height: 36px;
  background: #facc15;
  color: #000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 8px;
}
/* FOOTER BOTTOM BAR */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding: 18px 0;
  margin-top: 40px;
  background: #062c5c;
}

/* INNER WRAP */
.footer-bottom-inner {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

/* LEFT TEXT */
.footer-copy {
  font-size: 13px;
  color: #cbd5f5;
}

/* RIGHT LINKS */
.footer-links a {
  font-size: 13px;
  color: #cbd5f5;
  text-decoration: none;
  margin-left: 18px;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #facc15;
}

/* MOBILE FIX */
@media (max-width: 768px) {
  .footer-bottom-inner {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .footer-links a {
    margin: 0 10px;
  }
}
.footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 10px;
  color: #cbd5f5;
}

.footer-contact i {
  color: #facc15;
  font-size: 16px;
  margin-top: 3px;
}
.float-buttons {
  position: fixed;
  right: 18px;
  bottom: 80px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 9999;
}

.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 6px 18px rgba(0,0,0,0.3);
  transition: 0.3s;
}

.float-btn:hover {
  transform: translateY(-4px);
}

.float-btn.chat {
  background: #0d4fa3;
}

.float-btn.wa {
  background: #f59e0b;
}
/* ================= MOBILE FOOTER ================= */
@media (max-width: 768px) {

  .main-footer {
    padding: 40px 12px 18px;
    text-align: center;
  }

  .footer-container {
    grid-template-columns: 1fr;   /* single column */
    gap: 30px;
  }

  /* Center logo */
  .footer-logo {
    width: 180px;
    margin: 0 auto 12px;
  }

  /* Headings */
  .footer-col h4 {
    font-size: 16px;
    margin-bottom: 10px;
  }

  /* Text */
  .footer-col p,
  .footer-col li {
    font-size: 13px;
    line-height: 1.6;
  }

  /* Center lists */
  .footer-col ul {
    text-align: center;
  }

  /* Contact section */
  .footer-contact p {
    justify-content: center;
    text-align: center;
  }

  .footer-contact i {
    font-size: 15px;
  }

  /* Social icons */
  .footer-social {
    justify-content: center;
    margin-top: 12px;
  }

  /* Footer bottom */
  .footer-bottom {
    margin-top: 30px;
    padding-top: 14px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    gap: 10px;
  }

  .footer-links a {
    margin: 0 8px;
    font-size: 12px;
  }

}

/* Reduce header space and make header sticky */
.navbar-wrap {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
}
.navbar {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
  min-height: 55px;
}
.navbar-brand .logo-img {
  height: 60px;
  width: 180px;
  object-fit: contain;
  margin-right: 12px;
}
@media (max-width: 991px) {
  .navbar-brand .logo-img {
    height: 48px;
    width: 90px;
  }
}
@media (max-width: 991px) {
  .navbar-brand .logo-img {
    height: 48px;
  }
}
/* Image wrapper */
.hero-image-box {
  position: relative;
  overflow: visible;
}
/* Students mentored box – slightly bigger */
.students-mentored-box {
  position: absolute;
  left: -28px;
  bottom: -28px;
  background: #ffffff;
  border: 4px solid #facc15;
  border-radius: 10px;
  padding: 18px 22px;      /* ⬆ slightly increased */
  box-shadow: 0 12px 30px rgba(0,0,0,0.18);
  text-align: center;
  z-index: 25;
}

/* Number – slightly bigger */
.students-mentored-number {
  font-size: 18px !important;   /* ⬆ from 14px */
  font-weight: 600 !important;
  line-height: 1 !important;
  margin-bottom: 3px !important;
  color: #0d4fa3;
}

/* Label – slightly bigger */
.students-mentored-label {
  font-size: 12px !important;   /* ⬆ from 9px */
  font-weight: 400 !important;
  line-height: 1.2 !important;
  color: #6b7280;
}


/* Mobile */
@media (max-width: 768px) {
  .students-mentored-box {
    left: 8px;
    bottom: 8px;
    padding: 8px 12px;
  }

  .students-mentored-number {
    font-size: 12px !important;
  }

  .students-mentored-label {
    font-size: 8px !important;
  }
}
.map-section {
  margin-top: 20px;     /* less gap above map */
  margin-bottom: 20px; /* good space before footer */
}

.map-section iframe {
  display: block;
}

@media (max-width: 768px) {
  .map-section iframe {
    height: 260px;
  }
}
