     * {   
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family:  sans-serif !important;
            line-height: 1.6;
            margin: 0;
            padding: 0;
            color: #333;
            background-color: transparent !important;
            overflow-x: hidden;

        }
header {
  position: fixed !important;
  top: 0;
  width: 100%;
  z-index: 999;
  /* background-color: #03042c; */
background: radial-gradient(circle, #4B4B4B 0%, #202020 70%, #F97316 100%);

}
.navbar {
  display: flex;
  justify-content: space-between; /* logo left, toggler right */
  align-items: center;
  padding: 4px 16px !important;
  min-height: 56px;
}


/* Navbar link styles */
.navbar-nav .nav-link {
  margin-left: 10px;
  margin-right: 20px;
  padding: 8px 12px;
  color: white !important;
  text-decoration: none;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: #00aaff !important;
}

.bubbles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1; /* stays in background */
}

/* Each bubble */
.bubbles span {
  position: absolute;
  bottom: -150px;
  width: 40px;
  height: 40px;
  background: #22d7e84d; /* soft blue */
  border-radius: 50%;
  animation: float 20s linear infinite;
}

/* Different sizes + delays */
.bubbles span:nth-child(1) { left: 10%; width: 60px; height: 60px; animation-duration: 18s; }
.bubbles span:nth-child(2) { left: 20%; animation-duration: 22s; animation-delay: 2s; }
.bubbles span:nth-child(3) { left: 35%; width: 25px; height: 25px; animation-duration: 17s; animation-delay: 4s; }
.bubbles span:nth-child(4) { left: 50%; width: 70px; height: 70px; animation-duration: 25s; animation-delay: 3s; }
.bubbles span:nth-child(5) { left: 65%; animation-duration: 20s; animation-delay: 5s; }
.bubbles span:nth-child(6) { left: 75%; width: 30px; height: 30px; animation-duration: 15s; animation-delay: 1s; }
.bubbles span:nth-child(7) { left: 85%; width: 80px; height: 80px; animation-duration: 28s; animation-delay: 6s; }
.bubbles span:nth-child(8) { left: 90%; width: 20px; height: 20px; animation-duration: 12s; animation-delay: 2s; }
.bubbles span:nth-child(9) { left: 40%; width: 15px; height: 15px; animation-duration: 10s; animation-delay: 4s; }
.bubbles span:nth-child(10){ left: 55%; width: 50px; height: 50px; animation-duration: 19s; animation-delay: 7s; }

/* Floating animation */
@keyframes float {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0.7;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translateY(-120vh) scale(0.8);
    opacity: 0;
  }
}

.hero-section {
    position: relative;
  /* background-color: #092049; */
    color: white;
    text-align: center;
    padding: 80px 20px;
    /* border-radius: 10px; */
    margin-bottom: 40px;
    margin-top: 65px;
    overflow: hidden;
background: radial-gradient(circle, #4B4B4B 0%, #202020 70%, #F97316 100%);
}

.hero-section h1 {
    position: relative;
    z-index: 2;
}
.hero-section p {
    position: relative;
    z-index: 2;
}



/* Bubble effect */
.hero-section::before, 
.hero-section::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    animation: floatBubbles 12s infinite ease-in-out;
    z-index: 0; /* make sure bubbles are behind content */
}

/* Two bubble layers */
.hero-section::before {
    width: 200px;
    height: 200px;
    top: -50px;
    left: -50px;
}

.hero-section::after {
    width: 150px;
    height: 150px;
    bottom: -40px;
    right: -40px;
    animation-delay: 6s;
}

/* Bubble floating animation */
@keyframes floatBubbles {
    0% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-40px) scale(1.2); }
    100% { transform: translateY(0) scale(1); }
}



.contact-section {
  display: flex;
  flex-wrap: wrap;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 20px 20px rgba(0,0,0,0.15);
  margin: 40px auto;
  max-width: 100%;
  font-family: Arial, sans-serif;
  padding: 40px;
  gap: 40px;
    border: 1px solid rgba(39, 39, 39, 0.137); /* light black border */

}

/* Left Section */
.contact-left {
  flex: 1;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.contact-left h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #071a3a;
  font-weight: bold;
}

.contact-left h2 span {
  color: #F97316; /* accent */
}

.contact-item {
  font-size: 1.2rem;
  margin: 8px 0;
  display: flex;
  align-items: center;
}

/* Right Section */
.contact-right {
  flex: 1;
  min-width: 280px;
  margin-top: 40px;
}

.branch {
  margin-bottom: 20px;
  font-size: 1.2rem;
  line-height: 1.6;
}

.branch strong {
  color: #F97316;
}

/* Social Links */
.contact-social-links {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.contact-social-links a {
  display: flex;
  width: 5px;
  color: grey;
  transition: color 0.3s ease, transform 0.3s ease;
}

.contact-social-links a:hover {
  color: #4f9eff;
  transform: scale(1.2);
}

/* Responsive */
@media (max-width: 768px) {
  .contact-section {
    flex-direction: column;
    padding: 25px;
  }
}


        .map-section {
            background: white;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            margin-bottom: 40px;
        }

        .map-section h2 {
            color: #F97316;
            font-size: 2rem;
            margin-bottom: 25px;
            text-align: center;
            font-weight: bold;
        }

        .map-container {
            width: 100%;
            height: 400px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

       .faq-section {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25), 
                0 20px 40px rgba(0, 0, 0, 0.2);
    margin-bottom: 40px;
}

.faq-section h2 {
    color: #F97316;
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
    font-weight: bold;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    overflow: hidden;
}

/* Question Row */
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    font-weight: 600;
    font-size: 1.1rem;
    color: white;
background: radial-gradient(circle, #4B4B4B 0%, #202020 70%, #F97316 100%);
}

/* Arrow icon */
.faq-toggle {
    font-size: 1.2rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

/* Rotate arrow when open */
.faq-item.active .faq-toggle {
    transform: rotate(90deg);
}

/* Answer hidden by default */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    background: white;
    border-top: 1px solid #e5e7eb;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

/* Show answer when active */
.faq-item.active .faq-answer {
    max-height: 400px;
    padding: 20px;
}




        
       
        
/* footer-section */
.footer {
  /* background-color: #03042c; */
background: radial-gradient(circle, #4B4B4B 0%, #202020 70%, #F97316 100%);

  color: white;
  padding: 40px 0;
  font-family: Arial, sans-serif;
  scroll-margin-top: 100px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  padding: 0 20px;
}

.footer-left {
  flex: 1;
  min-width: 250px;
  text-align:start;
}

.footer-right {
  flex: 2;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
  margin-left: 40px;
}

.footer-logo {
  width: 150px;
}

.footer p {
  color: #ccc;
  margin: 15px 0;
  line-height: 1.5;
}

.footer h3 {
  margin-bottom: 15px;
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
  margin-bottom: 8px;
}

.footer ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer ul li a:hover {
  color: #fff;
}
.social-links {
    justify-content: start;
}
.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-right: 8px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  color: white;
  font-size: 18px;
  transition: background 0.3s;
  margin-left: 0px;
}

.social-links a:hover {
  background: #00b894;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 50px; /* Added padding for breathing room */
  border-top: 1px solid rgba(255, 255, 255, 0.2); /* Nice separation line */
  font-size: 14px;
  color: #fff;
  flex-wrap: wrap; /* Responsive stacking if needed */
  margin-top: 50px;
}

.footer-bottom-left {
  margin-bottom: 5px;
  margin-top: 30px;
}
.footer-bottom-right {
  margin-top: 30px;
}
.footer-bottom a {
  color: #fff;
  text-decoration: none;
  margin-left: 15px;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

.footer-bottom-left a {
  color: #00d1b2;
  text-decoration: none;
}

.footer-bottom-left a:hover {
  text-decoration: underline;
}

html, body {
  width: 100%;
  overflow-x: hidden; /* Prevents horizontal scroll */
}
* {
  box-sizing: border-box;
}
img {
  max-width: 100%;
  height: auto;
}


 @media (max-width: 767.98px) {
  /* Navbar */
  .navbar .container-fluid {
    display: flex;
    align-items: center;
  }
  .navbar-brand {
    margin-right: 0;
    flex: 0 0 auto;
  }
  .navbar-toggler {
    margin-left: auto; /* pushes button to right */
  }

  /* Banner */
  .banner {
    flex-direction: column;
    text-align: center;
  }
  .banner-left {
    align-items: center;
  }
  .banner-right {
    margin-top: 20px;
  }

  /* Course details */
  .course-details {
    flex-direction: column;
  }
  .details-left {
    height: auto;
    border-right: none;
    border-bottom: 1px solid #ccc;
  }
  .details-right {
    position: relative;
    top: auto;
    margin-top: 20px;
  }

  /* Footer */
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-left,
  .footer-right {
    margin: 0;
    flex: 1 1 100%;
    text-align: center;
  }
  .footer-right {
    justify-content: center;
    flex-direction: column;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    padding: 15px 20px;
  }
  .footer-bottom-left,
  .footer-bottom-right {
    margin: 10px 0;
  }
  .social-links {
    justify-content: center;
  }

  /* Hero + contact */
  .hero-section h1 { font-size: 2rem; }
  .hero-section p  { font-size: 1.1rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form-section,
  .contact-info-section,
  .map-section,
  .faq-section {
    padding: 25px;
  }
  .contact-social-links { gap: 30px; }

  /* Contact wrapper */
  .contact-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
  }
  .contact-image { display: none; }
  .contact-form-section form {
    width: 100%;
    max-width: 500px;
    padding: 20px;
    box-sizing: border-box;
  }
  .form-row {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  .form-group { width: 100%; }
}

/* 💻 Tablet & Desktop (iPad Air and bigger) */
@media (min-width: 768px) {
  .banner {
    flex-direction: row;
    text-align: left;
  }
  .course-details {
    flex-direction: row;
  }
  .details-left {
    border-right: 1px solid #ccc;
    border-bottom: none;
  }
  .details-right {
    margin-top: 0;
  }
  .contact-grid {
    grid-template-columns: repeat(2, 1fr); /* side-by-side */
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .banner {
    flex-direction: column; /* stack like mobile */
    text-align: center;
  }
  .course-details {
    flex-direction: column;
  }
  .details-left {
    border-right: none;
    border-bottom: 1px solid #ccc;
  }
  .contact-image { display: none; }
  .details-right {
    margin-top: 20px;
  }
  .contact-grid {
    grid-template-columns: 1fr; /* single column */
  }
  .footer-container {
    flex-direction: column;
    text-align: center;
  }
}

/* 📱 iPad Air (Portrait & Landscape) */
@media (min-width: 820px) and (max-width: 1180px) {
  .banner {
    flex-direction: column;
    text-align: center;
  }
  .course-details {
    flex-direction: column;
  }
  .details-left {
    border-right: none;
    border-bottom: 1px solid #ccc;
  }
  .details-right {
    margin-top: 20px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-container {
    flex-direction: column;
    text-align: center;
  }
  .contact-image { display: none; }
}