    body {
      font-family: 'Poppins', sans-serif;
      overflow-x: hidden;
    }


    /* ========== TOP INFO BAR (DECORATIVE STYLE) ========== */
.top-info-bar {
  background: #0b1a53;
  color: whitesmoke;
  padding: 10px 0;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  border-bottom: 3px solid #0b1a53;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.info-container {
  max-width: 1250px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 0 20px;
}

/* ===== Left Buttons ===== */
.left-info .btn {
  border: none;
  color: #fff;
  padding: 7px 18px;
  margin: 3px;
  cursor: pointer;
  border-radius: 30px;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
  box-shadow: 0 3px 6px rgba(0,0,0,0.2);
}

.btn.red {
  background: linear-gradient(135deg, #c81b1b, #ff3131);
}

.btn.green {
  background: linear-gradient(135deg, #1e9f63, #25d366);
}

.btn.blue {
  background: linear-gradient(135deg, #004aad, #0078ff);
}

.left-info .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 10px rgba(0,0,0,0.3);
}

/* ===== Right Info Section ===== */
.right-info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.right-info span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

.right-info i {
  color: #ed9121;
  font-size: 16px;
}

/* ===== Icon Links ===== */
.icon-links {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-left: 10px;
}

.icon-box {
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: auto;
}

.icon-box i {
  font-size: 26px;
  transition: all 0.3s ease;
}

.icon-box p {
  font-size: 13px;
  font-weight: 600;
  color: #ed9121;
  margin: 4px 0 0;
  transition: 0.3s;
}

.icon-box:hover i {
  transform: scale(1.2);
  color: #d90429;
}

.icon-box:hover p {
  color: #d90429;
}

/* ===== Popup (Age Calculator) ===== */
.age-popup {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
  z-index: 999;
  backdrop-filter: blur(5px);
}

.popup-content {
  background: linear-gradient(135deg, #fff, #faf7ef);
  padding: 35px;
  border-radius: 15px;
  text-align: center;
  width: 90%;
  max-width: 420px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
  position: relative;
  animation: fadeIn 0.4s ease;
}

.popup-content h3 {
  color: #0b1a53;
  font-size: 22px;
  margin-bottom: 15px;
  border-bottom: 2px solid #ed9121;
  display: inline-block;
  padding-bottom: 5px;
}

.popup-content input {
  width: 80%;
  padding: 10px;
  margin-top: 10px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 15px;
  transition: all 0.3s ease;
}

.popup-content input:focus {
  border-color: #ed9121;
  outline: none;
  box-shadow: 0 0 6px rgba(237,145,33,0.5);
}

.popup-content button {
  background: linear-gradient(135deg, #ed9121, #ffae42);
  color: #fff;
  padding: 9px 18px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.popup-content button:hover {
  background: linear-gradient(135deg, #ffb13c, #ff8400);
  transform: translateY(-2px);
}

.close {
  position: absolute;
  top: 12px;
  right: 18px;
  font-size: 26px;
  color: #c00;
  cursor: pointer;
  transition: 0.3s;
}

.close:hover {
  color: #000;
  transform: scale(1.2);
}

/* ===== Animation ===== */
@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}



    /* ---------- TOP BAR ---------- */
    .top-bar {
      background: #0b1a53;
      color: #fff;
      font-size: 14px;
      padding: 6px 0 0 0;
    }
    .top-bar a { color:#fff; margin-right:15px; text-decoration:none; }
    .top-bar .contact { text-align:right; }

    @media (max-width:770px) {
      .top-bar .social-info{
        margin: 0px;
      }
    }

    @media (max-width: 576px) {
      .top-bar .container {
        flex-direction: column;
        text-align: center;
        gap: 4px;
      }
      .top-bar .contact { text-align: center; }
    }

    /* ---------- NAVBAR ---------- */
    .navbar {
      background: #fff;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }
    .navbar-nav .nav-link {
      font-weight: 500;
      margin: 0 5px;
      color: #0b1a53;
    }
    .navbar-nav .nav-link.active,
    .navbar-nav .nav-link:hover {
      color: #ed9121;
    }
    .navbar-toggler {
      border: none;
    }
    .navbar-toggler:focus {
      box-shadow: none;
    }

    



/* Register Section */
.register-section .feature-box .icon span {
  display: inline-block;
  font-size: 1.5rem;
  background: #fce8e8;
  color: #d32f2f;
  padding: 10px;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  text-align: center;
  line-height: 25px;
}

.register-section h2 {
  margin-bottom: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
  .register-section .row {
    flex-direction: column;
  }
  .academy-gallery h2 {
    font-size: 1.5rem;
  }
  .register-section h2 {
    font-size: 1.4rem;
  }
}

.Register_form input::placeholder{
    color: #0b1a53;
}

 .review-card, .card {
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    background: #fff;
    min-height: 200px;
  }

  /* ===========================
   FOOTER SECTION
/* ===========================
   FOOTER SECTION
=========================== */
.footer-section {
  background: #fff;
  color: #000;
  padding: 60px 0 0;
  font-family: 'Poppins', sans-serif;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.footer-col {
  flex: 1 1 250px;
  min-width: 250px;
}

/* Logo */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-logo .logo-img {
  width: 90px;
}

.footer-logo h3 {
  color: #0b1a53;
  font-weight: 800;
  margin: 0;
  font-size: 30px;
}

.footer-logo p {
  margin: 0;
  font-weight: 600;
  font-size: 14px;
}

.footer-desc {
  font-size: 14px;
  line-height: 1.6;
  margin-top: 15px;
}

/* Links and Lists */
.footer-col h4 {
  color: #0b1a53;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
}

.footer-col h4::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 60px;
  height: 2px;
  background: #000;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-col ul li i {
  color: #ed9121;
}

/* Contact */
.footer-col h5 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-weight: 600;
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  color: #fff;
  background: #ed9121;
  width: 36px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: 0.3s;
}

.social-icons a:hover {
  background: #000;
}

/* Footer Bottom */
.footer-bottom {
  background: #0b1a53;
  color: #fff;
  text-align: center;
  padding: 12px 10px;
  margin-top: 30px;
  font-size: 14px;
}

.footer-bottom p {
  margin: 5px 0;
}

.footer-logo .logo-img {
  border-radius: 50%;
}
/* ==================================
   RESPONSIVE DESIGN (MOBILE/TABLET)
================================== */
@media (max-width: 1024px) {
  .footer-content {
    gap: 30px;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-col {
    width: 100%;
    max-width: 500px;
  }

  .footer-logo {
    justify-content: center;
  }

  .footer-col h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .social-icons {
    justify-content: center;
  }

  .footer-desc {
    max-width: 95%;
    margin: 15px auto 0;
  }
}

