/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
/* For screens larger than 2304px */
@media screen and (min-width: 2304px) {
   .why-choose {
        background: url("./Images/forlargescreen.png") no-repeat center center;
        background-size: cover;  /* Ensures the image covers the area without repeating */
        width: 100%;              /* Ensures the container takes up full width */
        height: 100vh;            /* Adjust this as needed (100vh for full viewport height) */
    }
}

/* Targeting large screens (greater than 1200px) */
@media screen and (min-width: 1200px) {
    body {
        width: 100%; /* Ensuring body takes the full width */
        margin: 0 auto; /* Center the content */
    }

    .container, .content-wrapper {
        max-width: 1200px; /* Limit the content width on large screens */
        width: 100%; /* Ensuring it scales properly */
    }

    /* Optional: Adjust the font size or spacing for large screens */
    .hero-title {
        font-size: 3rem;
    }
    
    .navbar {
        padding: 20px 40px; /* Larger padding for bigger screens */
    }
}

/* For extra-large screens (greater than 1440px) */
@media screen and (min-width: 1440px) {
    .container {
        max-width: 1300px; /* Optional: Extend the container width */
    }

    /* Adjust hero section for large screens */
    .hero-section {
        padding: 100px 0;
    }
}


html, body {
  overflow-x: hidden;
}

body#courses-page {
  padding-top: 0;  /* no extra space on this page */
}




/* Ensure footer looks nice on all screens */
.company-quicklinks {
  gap: 40px;
}

.company-quicklinks h5 {
  font-weight: 600;
}

.whatsapp-float {
  position: fixed;
  width: 55px;
  height: 55px;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  border-radius: 50%;
  text-align: center;
  box-shadow: 2px 2px 8px rgba(0,0,0,0.3);
  z-index: 9999; /* <-- increase to make sure it stays on top */
  transition: transform 0.3s ease;
}

@media (max-width: 768px) {
  .whatsapp-float {
    width: 45px;
    height: 45px;
    bottom: 15px;
    right: 15px;
  }

  .whatsapp-float img {
    width: 28px;
    margin-top: 9px;
  }
}

@media (hover: hover) {
  .whatsapp-float:hover {
    transform: scale(1.1);
  }
}


/* ✅ This is the key part — for mobile screens */
@media (max-width: 576px) {
  .company-quicklinks {
    flex-direction: row !important;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
  }

  .company-quicklinks .footer-links {
    padding-left: 0 !important;
  }

  .company-quicklinks h5 {
    font-size: 1rem;
  }
}

/* Navbar */
.navbar {
  width: 100%;
  /* margin: 20px auto; */
  background: white;
   border-radius: 0 0 40px 40px; /* curved bottom corners */
  padding: 15px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 10;
}

.logo img {
  width: 200px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 35px;
  font-size:20px;
}

.nav-links a {
  text-decoration: none;
  color: #222;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #007bff;
}


/* HERO SECTION */
.hero {
  position: relative;
  color: #fff;
  background: url("./Images/backgroundbanner.jpg") center/cover no-repeat;
  min-height: 95vh;
  /*display: flex;*/
  align-items: center;
  justify-content: center;
  isolation: isolate;
  /*padding-top: 100px;*/
}

/* Blue overlay */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(8, 120, 198, 0.6);
  z-index: -1;
}



/* Blue overlay */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(8, 120, 198, 0.6);
  z-index: -1;
}

/* LEFT + RIGHT columns based on your HTML */
.hero-left {
  flex: 1 1 55%;
  max-width: 650px;
}

.hero-left h1 {
  margin: 0 0 20px 0;
  font-size: clamp(28px, 4.8vw, 52px);
  font-weight: 700;
  line-height: 1.2;
}

.hero-left p {
  color: #e3e3e3;
  margin-bottom: 30px;
  font-size: clamp(16px, 2.2vw, 20px);
  line-height: 1.5;
}

/* Buttons */
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 20px;
}
.hero-buttons a:hover {
  color:black!important;
}

.btn {
  text-decoration: none;
  padding: 12px 25px;
  border-radius: 10px;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn.primary {
  background: #fff;
  color: #000;
}

.btn.primary:hover {
  background: #e9f2ff;
  color:black!important;
}

.btn.secondary {
  background: transparent;
  border: 2px solid #fff !important;
  color: #fff !important;
}

/*.btn.secondary:hover {*/
/*  background: rgba(255, 255, 255, 0.1);*/
/*}*/

/* RIGHT SIDE IMAGE – tum already .hero-image use kar rahe ho */
.hero-image {
  flex: 1 1 45%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img {
  width: min(100%, 500px);
  border-radius: 10px;
}

/* ✅ Tablet (≤ 991px) */
@media (max-width: 991px) {
  .hero {
    flex-direction: column !important;
    align-items: center;
    text-align: center;
    min-height: auto;
   
  }

  .hero-left {
    max-width: 100%;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-image {
    margin-top: 25px;
  }

  .hero-image img {
    width: min(75%, 360px);
  }
}

/* ✅ Mobile (≤ 600px) */
@media (max-width: 600px) {
 

  .hero-left h1 {
    font-size: clamp(24px, 7vw, 32px);
  }

  .hero-left p {
    font-size: 16px;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .hero-image img {
    width: min(90%, 320px);
  }
}


/* why choose section — FIXED (drop-in replace) */


.why-choose h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
}

.why-choose p {
  color: #555;
  font-size: 1rem;
  margin-bottom: 40px;
}

/* Wrapper */
.features {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 25px;
  flex-wrap: nowrap;         /* keeps 4 in one row on desktop */
  max-width: 1100px;
  margin: 60px auto 30px;
}

/* Card */
.feature-card {
  background: #fff;
  border-radius: 20px;
  padding: 24px 20px;
  border:4px solid #0D99FF!important;
  width: 250px;              /* ✅ fixed width */
  height: 250px!important;             /* ✅ fixed height (same size cards) */
  box-shadow: 6px 6px 18px rgba(0, 0, 0, 0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  text-align: start;
  display: flex;
  flex-direction: column;
   position: relative;
  z-index: 1;
}

.feature-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow:
    0 2px 4px rgba(0, 0, 0, 1.12),
    0 1px 2px rgba(0, 0, 0, 0.08);
}


/* Icon */
.feature-card .icon {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.feature-card img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #111;
  margin: 8px 0 10px;
}

.feature-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .features {
    flex-wrap: wrap;
    justify-content: center;
  }
  .feature-card {
    width: 45%;
    height: 260px;
  }
}

@media (max-width: 600px) {
  .feature-card {
    width: 100%;
    height: auto;     /* auto height on mobile */
  }
}


/* =========================
   BOOST POPUP STYLES
   ========================= */
#boostPopupOverlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000; /* WhatsApp icon (9999) se bada */
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

/* jab active class ho, tab dikhana */
#boostPopupOverlay.active {
  opacity: 1;
  pointer-events: auto;
}

.boost-popup {
  position: relative;
  background: transparent;
  border-radius: 18px;
  overflow: hidden;
  max-width: 420px;
  width: 90%;
  box-shadow: 0 12px 40px rgba(0,0,0,0.45);
}

.boost-popup img {
  display: block;
  width: 100%;
  height: auto;
}

/* Close button (X) */
.boost-popup-close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: #ffffff;
  color: #333;
  font-size: 22px;
  line-height: 28px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

/* Mobile adjustments */
@media (max-width: 575.98px) {
  .boost-popup {
    max-width: 360px;
    border-radius: 16px;
  }
  .boost-popup-close {
    top: 6px;
    right: 6px;
  }
}




/* courses section */
.courses-section {
  position: relative;
  background-image: url("./Images/coursesbg.png"); /* ✅ use your background image */
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 60px 10% 80px;
  overflow: hidden;
}

.courses-section::before {
  content: "";
  position: absolute;
  inset: 0;
  /* background: rgba(0, 72, 173, 0.85); Blue overlay tint */
  z-index: 0;
}

.overlay {
  position: relative;
  z-index: 1;
}

/* Header */
.section-header{
    text-align: start;
}
.section-header h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-header p {
  color: #e0e0e0;
  margin-bottom: 40px;
}

/* Courses Grid */
.courses {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.course-card {
  background: white;
  color: #111;
  border-radius: 15px;
  width: 280px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.course-card:hover {
  transform: translateY(-8px);
}

.course-img {
  height: 180px;
  background-size: cover;
  background-position: center;
}

/* Replace with your images */
.course-img.jee {
  background-image: url("./Images/jee.png");
}

.course-img.neet {
  background-image: url("./Images/neet.png");
}

.course-img.pre-foundation {
  background-image: url("./Images/pre-foundation.png");
}

.course-content {
  padding: 20px;
}

.course-content h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color:black;
}

.course-content p {
  font-weight: 500;
  margin: 5px 0 15px;
  color: #222;
}

.course-info {
  display: flex;
  justify-content: space-around;
  font-size: 0.9rem;
  color: #666;
  margin-top:10px;
  text-align:start;
}


/* Stats Section */
.stats {
  margin-top: 90px;
}

.stats h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.stats p {
  color:white;
  max-width: 800px;
  margin: 0 auto 40px;
}

.stats-grid {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: nowrap;
  margin-top: 40px;
}

.stat-card {
 
  border-radius: 12px;
  padding: 25px 20px;
  min-width: 100px;
  text-align: center;
  
}

.stat-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.15);
}

.stat-card h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color:white;
  margin-bottom: 8px;
}

.stat-card hr {
  width: 100%;
  margin: 0 auto 10px;
  border: none;
  height: 2px;
  background: #fff;
  opacity: 0.6;
}

.stat-card p {
  font-size: 0.95rem;
  color: #e0e0e0;
  line-height: 1.4;
}

/* Responsive */
@media (max-width: 768px) {
  .stat-card {
    min-width: 160px;
    padding: 20px 0px;
  }
}


/* Responsive */
@media (max-width: 768px) {
  .courses {
    flex-direction: column;
    align-items: center;
  }

  .course-card {
    width: 90%;
  }

  .stats-grid {
    gap: 20px;
  }
}
/* why bansal */
.bansal-left h2{
  font-weight:600;
}
.bansal-left span {
  font-weight: 600;   /* or 700 for bolder text */
 
  display: block;     /* keeps it on its own line */
  margin-bottom: 10px;
}
.black-btn {
  background-color: #000 !important; /* black background */
  border-color: #000 !important;
  color: #fff !important;  
  border:none;          /* white text */
}

.black-btn:hover {
  background: #007bff !important; /* slightly lighter on hover */
 border: none;
}
/* preparation */
.preparation{
 background-color: #0096FF ;
 color:white;
}
.prep-card{
  border-right: 2px solid white;
}
.prep-card h2{
  margin-top: 20px;
}
.prep-card1 h2{
  margin-top: 20px;
}
.btn-learn{
  border:1px solid black;
  border-radius:10px;
  height:40px;
  margin-top:13px;
  padding:10px;
}
.student img{
  height:400px;
  width:500px;
  border-radius:20px;
}

/* Section Styling */
.testimonials-section {
  background: url("./Images/bg-blue.jpg") no-repeat center center/cover;
  color: #fff;
  padding: 40px 0;
 
}

/* Left text */
.text-section h2 {
  font-weight: 700;
  font-size: 2rem;
}

.text-section p {
  font-size: 1rem;
  margin-top: 10px;
  color: #e0e0e0;
}

/* Swiper slides */
.testimonial-card {
  background: #fff;
  color: #000;
  border-radius: 20px;
  padding: 25px 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  text-align: left;
 
}

.testimonial-card .stars {
  font-size: 1.2rem;
  color: #fbc02d;
  margin-bottom: 10px;
}

.testimonial-card p {
  font-size: 0.95rem;
  line-height: 1.5;
}

.testimonial-card h5 {
  margin-top: 15px;
  font-weight: 600;
}

.testimonial-card span {
  font-size: 0.9rem;
  color: #666;
}

.swiper {
  position: relative;
  overflow: visible; /* allows arrows to sit outside the visible card */
}

.swiper-slide {
  display: flex;
  justify-content: center;
}

.testimonial-card {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
 

  align-items:center;
  justify-content:center;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

/* Arrows */
.swiper-button-next,
.swiper-button-prev {
  color: #000 !important;
  /* background: #fff; */
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
  overflow:visible;
}

/* Position them just beside the card */
.swiper-button-next {
  right: -65px; /* pushes next arrow to the right side of card */
}
.swiper-button-prev {
  left: -45px; /* pushes previous arrow to the left side of card */
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  /* background: #000; */
  color:#007bff;
}

/* .swiper-pagination-bullet {
  background: #fff !important;
  opacity: 1;
} */

.testimonials-section {
  background-color: #0096FF;
  padding: 60px 0;
 
}

/* Responsive */
@media (max-width: 768px) {
  .text-section {
    text-align: center;
    margin-bottom: 30px;
  }

  .swiper {
    width: 100%;
  }

  .testimonial-card {
    text-align: center;
  }
}


/* footer */
.footer-section {
  background-color: #0878c6;
  color: white !important;
  font-family: "Poppins", sans-serif;
}

.footer-section h5 {
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-links li {
  margin-bottom: 8px;
}
/* .footer-section p,
.footer-section a,
.footer-section li {
  color: white !important;
} */
.footer-links a {
  color: #f8f9fa !important;
  text-decoration:none;
  transition: 0.3s;
}

.footer-section a,
.footer-section a:link,
.footer-section a:visited,
.footer-section a:active {
  /* color: white !important; */
  text-decoration: none !important;
}
.footer-section a:hover {
  color: #d9edf9 !important; /* lighter shade */
  text-decoration: none !important; /* still no underline on hover */
}

.footer-links a:hover {
   color: #d9edf9 !important; /* lighter blue on hover */
}

.footer-section p, 
.footer-section a {
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-bottom {
  background-color: #f8f9fa;
  color: #333;
}

.designer-link {
  color:#000;
  text-decoration: none;
  font-weight: 500;
}

.designer-link:hover {
  text-decoration: underline;
}

/* Responsive tweaks */
@media (max-width: 767px) {
  .footer-section {
    text-align: center;
  }
  .footer-links {
    padding: 0;
  }
  .footer-section i {
    display: block;
    margin-bottom: 4px;
  }
}

.subscription-form {
  display: flex;
  align-items: center;
  border: 2px solid #ccc;
  border-radius: 30px;
  overflow: hidden; /* merges input + button neatly */
  max-width: 500px;
  background: #fff;
  padding: 0px;
  height:60px;
}

.btn-subscribe {
  background-color: #0096ff;
  color: white;
  border: 2px solid white;
  border-radius: 50px;
  transition: 0.3s ease;
}

.btn-subscribe:hover {
  background-color: white;
  color: #0096ff;
}

.footer-section i {
  color: white !important;
  font-size: 1.2rem;
  transition: 0.3s;
}

.footer-section i:hover {
  color: #ffd700;
}

.footer-start {
  background-color: #fff;
  border-top: 2px solid #0096ff;
  border-bottom: 3px solid #0096ff;
}

/* Email Input */
.email-input {
  border: none !important;
  outline: none;
  flex: 1;
  padding: 0px 0px;
  font-size: 0.95rem;
  border-radius: 0; /* remove inner rounding */
}

.email-input:focus {
  outline: none;
}

/* Subscribe Button */
.btn-subscribe {
  background-color: #0096ff;
  height:63px;
  color: #fff;
  border-radius: 0 30px 30px 0;
  border: none;
  font-weight: 600;
  transition: all 0.3s ease;
  background:cover;
}

.btn-subscribe:hover {
  background-color: #007be5;
  transform: translateY(-1px);
  color:white;
}

/* Social Icons */
.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #0096ff;
  color: #fff;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 18px;
  transition: 0.3s ease;
  text-decoration: none;
}

.social-icons a:hover {
  background-color: #007be5;
  transform: scale(1.1);
}
.footer-link {
  color: inherit;               /* takes color from parent (white in your case) */
  text-decoration: none;        /* removes underline */
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #fff;                  /* keep white on hover */
  text-decoration: underline;   /* optional hover underline */
}
/* Responsive */
/* @media (max-width: 768px) {
  .footer-start {
    text-align: center;
  }

  .subscription-form {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .email-input,
  .btn-subscribe {
    width: 100%;
    border-radius: 30px;
  }

  .social-icons {
    justify-content: center;
    margin-top: 10px;
  }
} */

/* Responsive */
/* @media (max-width: 768px) {
  .footer-start {
    text-align: center;
  }

  .col-12.col-md-6 {
    justify-content: center;
  }

  form {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .email-input {
    width: 100%;
  }
 
  .btn-subscribe {
    width: 100%;
  }

  .social-icons {
    justify-content: center;
  }
} */

/* ABOUT PAGE HEADER */
.about-header {
  position: relative;
  background-image: url("./Images/backgroundbanner.jpg");
  background-size: cover;
  background-position: center;
  height: 60vh;
}

.about-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(8, 120, 198, 0.8); /* blue overlay */
  z-index: 0;
}

/* This is the key part */
.about-content {
  position: absolute;   /* so you can place it freely inside the header */
  top: 70px;            /* distance from top */
  left: 60px;           /* distance from left */
  z-index: 1;           /* above overlay */
  color: white;
  text-align: left;     /* ensures text aligns left */
  margin-top:130px;
}

.about-content h3 {
  font-weight: 400;
  letter-spacing: 1px;
}

.about-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-top: 10px;
}
.stat-card1 h3{
  text-align:center;
}
.stat-card1 p{
  text-align:center;
}
.stats-box {
  border: 1px solid grey;
  border-radius: 50px;
  padding: 20px 30px;
  background-color: #fff; /* optional for contrast */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05); /* optional subtle shadow */
  margin-bottom:50px;
}
.stats-grid hr{
   width: 70%;
  margin: 0 auto;
  margin-bottom:10px;
}
.expert-coaching p{
  max-width: 300px;
  width: 100%;
}

.expert-coaching-img img{
  width:400px;
  height:400px!important;
}
.expert-coaching h5{
  font-weight:700;
}
.lm{
 border:1px solid grey !important;

}
.our-mission{
  background-color:#0096FF;
  color:white;
}
.footer-section .row {
  --bs-gutter-x: 1rem;
}
.footer-section .col-md-6,
.footer-section .col-lg-3 {
  padding-left: 10px;
  padding-right: 10px;
}
.our-mission img{
  height:400px;
  width:auto;

}

.lead-card {
  background-color: #ffffff; /* white card */
  border-radius: 20px;
  box-shadow: 10px 10px 25px rgba(0, 0, 0, 0.5); /* stronger right-bottom shadow */
  padding: 25px;
  transition: all 0.3s ease;
  color: #333;
   position: relative;
  z-index: 1;
}

.lead-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%; /* circular image */
  object-fit: cover;
  margin-bottom: 15px;
}

.lead-card h5 {
  font-weight: 600;
  margin-bottom: 5px;
}

.lead-card p {
  font-size: 14px;
  line-height: 1.6;
  color: black;
}

.lead-card .btn.lm {
  margin-top: 10px;
  border-radius: 20px;
  font-weight: 500;
}

/* Hover effect */
.lead-card:hover {
  transform: translateY(-10px) scale(1.03); /* comes forward */
  z-index: 10; /* THIS is what brings it out */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}
.lead-card:not(:hover) {
  transition: all 0.3s ease;
  filter: brightness(0.95);
}
.coaching-box {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 20px;
  box-shadow: 8px 8px 20px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
}

.coaching-tabs {
  /* border-bottom: 1px solid #ddd; */
  padding-bottom: 10px;
}

.tab-btn {
  background: transparent;
  border: 1px solid #ccc;
  border-radius: 25px;
  padding: 6px 16px;
  font-size: 0.95rem;
  color: black;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-btn.active {
  background-color: #007bff;
  color: #fff;
  border-color: #007bff;
}

.tab-btn:hover {
  background-color: #007bff;
  color: #fff;
  border-color: #007bff;
}

.coaching-content {
  margin-top: 20px;
}

.tab-content {
  display: none;
  animation: fadeIn 0.5s ease;
}

.tab-content.active {
  display: block;
}

.coaching-content p {
  margin-bottom: 15px;
  line-height: 1.6;
  color:black;
  font-weight:500;
}

/* Responsive */
@media (max-width: 768px) {
  .tab-btn {
    flex: 1 1 100%;
    text-align: center;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* courses */
/* COURSES BANNER BASE */
.courses-banner {
  position: relative;
  background-image: url("./Images/backgroundbanner.jpg");
  background-size: cover;
  background-position: center;
  overflow: hidden;
  height: 100vh; /* Full viewport height */
  
  padding-top: 90px; /* navbar height + little gap */
  box-sizing: border-box;
}

/* BLUE OVERLAY */
.courses-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(8, 120, 198, 0.8);
  z-index: 0;
}

/* BANNER INNER CONTAINER */
.courses-inner {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  align-items: center; /* vertically center */
  padding: 0 40px;
}

/* TEXT */
.courses-content {
  color: #fff;
}

.courses-content h4 {
  color: #cde9ff;
  font-weight: 500;
}

.courses-content h1 {
  font-size: 2.7rem;
  font-weight: 700;
  line-height: 1.3;
}

/* IMAGE */
.courses-img {
  max-width: 300px;
  z-index: 1;
  margin-top:30px;
}

/* RESPONSIVE */
@media (max-width: 768px) {

  .courses-banner {
    padding-top: 110px!important; /* Adjust based on navbar height */
    margin-top:50px!important;
  }

  .courses-inner {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 60px 20px!important;
    margin-top: 0; /* Remove your earlier 150px — not needed */
  }

  .courses-content h1 {
    font-size: 2rem;
    margin-top: 20px; /* Reduce this too */
  }

  .courses-img {
    margin-top: 40px;
    max-width: 300px;
    margin-top:30px!important;
  }
}

/* couses card */
 .tabs {
  display: inline-flex;
  gap: 5px;
  justify-content: start;
  align-items: center;
  margin: 30px;
  padding: 5px;
  border: 1.5px solid black;
  border-radius: 40px;
  background-color: #fff;
}

.tab {
  padding: 8px 25px;
  border-radius: 30px;
  font-weight: 600;
  color: #000;
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: transparent;
  border: none;
}

.tab.active {
  background-color: #007bff;
  color: #fff;
}


.cards-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.card {
  width: 320px;
  border-radius: 12px;
  box-shadow: 10px 10px 12px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  background-color: #fff;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-body {
  padding: 15px 20px;
}

.badge {
  display: inline-block;
  background-color: #004aad;
  color: white;
  font-size: 13px;
  border-radius: 25px;
  padding: 10px 15px;
  margin-bottom: 10px;
}

.card-title {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 10px;
}

/* BUTTON CONTAINER */
.card-actions {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  width: 100% !important;
}

/* VIEW DETAILS BUTTON */
.view-btn {
  border: 1.5px solid #000;
  border-radius: 25px;
  padding: 8px 18px;
  font-size: 14px;
  text-decoration: none;
  color: #000;
  transition: all 0.3s ease;
}


.view-btn:hover {
  background-color: #007bff;
  color: #fff;
  border-color: #007bff;
}

.openBrochureBtn {
  display: inline-flex !important;
  visibility: visible !important;
  opacity: 1 !important;

  border: 1.5px solid #000 !important;
  color: #000 !important;
  background: #fff !important;

  padding: 8px 18px !important;
  border-radius: 30px !important;
  font-size: 14px !important;
  text-decoration: none !important;
  white-space: nowrap !important;
}

.openBrochureBtn:hover {
  background-color: #007bff!important;
  color: #fff!important;
  border-color: #007bff!important;
}




@media (max-width: 480px) {
  .card-actions {
    flex-direction:row;
    gap: 10px;
  }
}

 


    /* ==============================
       MAIN SECTION WRAPPER
    =============================== */
    .course-results-section {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: flex-start;
      gap: 40px;
      padding: 60px 8%;
    }

    /* ==============================
       LEFT COLUMN
    =============================== */
    .course-results-left {
      flex: 1 1 450px;
      min-width: 300px;
    }

    .course-results-left h1 {
      font-size: 32px;
      font-weight: 700;
      margin-bottom: 15px;
      /* text-decoration: underline; */
    }

    .course-results-left p {
      color:black;
      margin-bottom: 20px;
      line-height: 1.6;
      font-weight:500;
      font-size: 20px;
    }

    .course-feature {
      display: flex;
      align-items: flex-start;
      margin-bottom: 20px;
      gap: 15px;
    }

    .course-feature-icon {
      background-color: #007bff;
      color: #fff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 60px;
      height: 60px;
      flex-shrink: 0;
      font-size: 25px;
    }

    .course-feature-text {
      flex: 1;
    }

    .course-feature-text h3 {
      margin: 0;
      font-size: 20px;
      font-weight: 600;
    }

    .course-feature-text p {
      margin: 5px 0 0;
      font-size: 18px;
      color:black;
    }

    /* ==============================
       RIGHT COLUMN
    =============================== */
    .course-results-right {
      flex: 1 1 400px;
      min-width: 300px;
      border-left: 2px solid #000;
      padding-left: 40px;
    }

    .course-results-right h2 {
      font-size: 32px;
      font-weight: 700;
      margin-bottom: 25px;
    }

    .course-review {
      background-color: #fff;
      border-radius: 15px;
      box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.1);
      padding: 20px 25px;
      margin-bottom: 20px;
      position: relative;
      border-left: 6px solid #007bff; /* Blue left border */
      border-top-left-radius: 25px;
      border-bottom-left-radius: 25px;
      overflow: hidden;
    }

    .course-review::before {
      content: "“";
      font-size: 40px;
      color: #007bff;
      position: absolute;
      top: 10px;
      left: 15px;
      font-weight: bold;
    }

    .course-review p {
      margin: 0;
      margin-left: 25px;
      font-size: 14px;
      color: #333;
      line-height: 1.5;
    }

    .course-review .course-review-author {
      margin-top: 10px;
      margin-left: 25px;
      font-size: 13px;
      font-weight: 500;
      color: #555;
    }

    .course-view-results {
      font-size: 13px;
      color: #000;
      font-weight: 500;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 5px;
      margin-top: 10px;
      transition: color 0.3s ease;
    }

    .course-view-results:hover {
      color: #007bff;
    }
    .course-results-right a{
     margin-left:30px;
    }

    /* ==============================
       RESPONSIVE DESIGN
    =============================== */
    @media (max-width: 900px) {
      .course-results-section {
        flex-direction: column;
        padding: 40px 6%;
      }

      .course-results-right {
        border-left: none;
        border-top: 2px solid #000;
        padding-left: 0;
        padding-top: 30px;
      }
    }


      /* ===============================
       JOURNEY SECTION
    ================================ */
    .journey-section {
      background-color: #0094ff;
      text-align: center;
      padding: 60px 20px;
      color:white;
    }

    .journey-section h2 {
      font-size: 40px;
      font-weight: 700;
      margin-bottom: 40px;
      color:white;
    }

    /* ===============================
       STEPS GRID
    ================================ */
    .journey-steps {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 40px;
      max-width: 1000px;
      margin: 0 auto 40px;
    }

    .journey-step {
      flex: 1 1 200px;
      max-width: 220px;
      text-align: center;
    }

    .journey-step-circle {
      width: 90px;
      height: 90px;
      background-color: #fff;
      color: #000;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 50px;
      font-weight: 700;
      margin: 0 auto 15px;
    }

    .journey-step h3 {
      font-size: 22px;
      font-weight: 600;
      margin-bottom: 5px;
    }

    .journey-step p {
      font-size: 16px;
      color: #e5e5e5;
      margin: 0;
      line-height: 1.5;
       font-weight:500;
    }

    /* ===============================
       DIVIDER LINE
    ================================ */
    .journey-divider {
      width: 90%;
      height: 1px;
      background-color: #fff;
      opacity: 0.7;
      margin: 40px auto;
    }

    /* ===============================
       COUNSELING SECTION
    ================================ */
    .journey-counseling {
      max-width: 700px;
      margin: 0 auto;
      text-align: center;
    }

    .journey-counseling h3 {
      font-size: 22px;
      font-weight: 600;
      margin-bottom: 8px;
      letter-spacing:1.5;
    }

    .journey-counseling p {
      font-size: 18px;
      color: #f0f0f0;
      margin-bottom: 25px;
    }

    .journey-button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      border: 1.5px solid #fff;
      color: #fff;
      background: transparent;
      border-radius: 25px;
      padding: 10px 22px;
      font-size: 18px;
      font-weight: 500;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .journey-button:hover {
      background-color: #fff;
      color: #007bff;
    }

    .journey-button::before {
      /* content: "📞"; */
      font-size: 16px;
    }

    /* ===============================
       RESPONSIVE DESIGN
    ================================ */
    @media (max-width: 768px) {
      .journey-section {
        padding: 50px 15px;
      }

      .journey-steps {
        gap: 30px;
      }

      .journey-step {
        max-width: 160px;
      }

      .journey-step-circle {
        width: 60px;
        height: 60px;
        font-size: 24px;
      }

      .journey-section h2 {
        font-size: 20px;
      }
    }

    @media (max-width: 480px) {
      .journey-steps {
        flex-direction: column;
        align-items: center;
        gap: 25px;
      }

      .journey-step {
        max-width: 250px;
      }

      .journey-divider {
        margin: 30px auto;
      }

      .journey-counseling h3 {
        font-size: 15px;
      }

      .journey-counseling p {
        font-size: 13px;
      }
    }


     /* ===============================
       FAQ SECTION
    ================================ */
    .course-faq-section {
      padding: 60px 20px;
      background-color: #fff;
      text-align: center;
      max-width: 900px;
      margin: 0 auto;
    }

    .course-faq-section h2 {
      font-size: 33px;
      font-weight: 700;
      margin-bottom: 10px;
    }

    .course-faq-section p {
      font-size: 25px;
      color:black;
      margin-bottom: 40px;
    }

    /* ===============================
       FAQ ITEMS
    ================================ */
    .course-faq-item {
      background: #fff;
       /*border: 1.5px solid black!important;*/
      border-radius: 30px; 
      margin-bottom: 15px;
      overflow: hidden;
      transition: all 0.3s ease;
      text-align: left;
    }

    .course-faq-question {
      display: flex;
      align-items: center;
       border: 1.5px solid black!important;
      justify-content: space-between;
      padding: 16px 24px;
      font-size: 22px;
      /* font-weight: 600; */
      cursor: pointer;
      background-color: #fff;
      border-radius: 30px;
      transition: background-color 0.3s ease;
     
      
    }

    .course-faq-question:hover {
      background-color: #f7f7f7;
       border: 1.5px solid black !important;
    }

    .course-faq-icon {
      font-size: 18px;
      color: #333;
      transition: transform 0.3s ease;
    }

    .course-faq-answer {
      max-height: 0;
      overflow: hidden;
      font-size: 14px;
      color: #444;
      padding: 0 24px;
      background-color: #fff;
      transition: all 0.4s ease;
      line-height: 1.6;
       /*border: 1.5px solid #ccc !important;*/
    }

    .course-faq-item.active .course-faq-answer {
      max-height: 200px; /* Enough for small answers */
      padding-bottom: 15px;
    }

    .course-faq-item.active .course-faq-icon {
      transform: rotate(180deg);
    }

    /* ===============================
       RESPONSIVE DESIGN
    ================================ */
    @media (max-width: 768px) {
      .course-faq-section h2 {
        font-size: 20px;
      }

      .course-faq-section p {
        font-size: 14px;
      }

      .course-faq-question {
        font-size: 14px;
        padding: 14px 18px;
      }

      .course-faq-answer {
        font-size: 13px;
        padding: 0 18px;
      }
    }

    @media (max-width: 480px) {
      .course-faq-section {
        padding: 50px 15px;
      }

      .course-faq-question {
        border-radius: 20px;
      }

      .course-faq-item {
        border-radius: 20px;
      }
    }

   

  .banner-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
  }

  .banner-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
  }

  .banner-content p {
    font-size: 1.2rem;
    line-height: 1.6;
  }

  @media (max-width: 768px) {
    .banner-content h1 {
      font-size: 2.2rem;
    }
    .banner-content p {
      font-size: 1rem;
    }
  }

  .gallery-page .cards-container {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr); /* 3 per row */
}

.gallery-page .gallery-card img {
  width: 100%;
  height: 400px;
  width:auto;
  object-fit: cover;
  /* border-radius: 10px; */
}


.our-legacy {
  background-color: #0096ff;
  color: white;
  height:400px;
}

.our-legacy h4 {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
}

.our-legacy h2 {
  font-size: 2rem;
  font-weight: 700;
  margin: 10px 0;
}

.our-legacy p {
  line-height: 1.7;
  font-size: 1rem;
}

/* Right-side image container */
.our-legacy .col-md-6:last-child {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  /* padding-top: 30px; */
}

/* First image (left one) */
.our-legacy .legacy-img {
  /* width: 260px;
  height: 170px; */
  object-fit:cover;
  border-radius: 18px;
  transform: rotate(-5deg);
  position: relative;
  left: -20px;
  z-index: 2;
  /* box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25); */
}

/* Second image (right one, slightly overlapping) */
.our-legacy .col-md-6:last-child img:last-child {
  /* width: 260px;
  height: 170px; */
  object-fit:contain;
  border-radius: 18px;
  transform: rotate(0deg);
  position: absolute;
  /* right: 60px;
  top: 10px; */
  z-index: 1;
  /* box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25); */
}

/* Responsive layout */
@media (max-width: 768px) {
  .our-legacy .col-md-6:last-child {
    flex-direction: column;
    position: static;
    display:none;
  }

  .our-legacy .legacy-img,
  .our-legacy .col-md-6:last-child img:last-child {
    width: 90%;
    height: auto;
    transform: rotate(0);
    position: static;
    margin: 10px 0;
    
  }
}
/* moment section */
.moments-section {
  background-color: #fff;
}

.moments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  justify-items: center;
}

.moment-card {
  width: 100%;
  max-width: 350px;
  aspect-ratio: 16/9;
  background-color: #ddd;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.moment-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

.moment-card img,
.moment-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .moments-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 500px) {
  .moments-grid {
    grid-template-columns: 1fr;
  }
}
   .contact-section {
      background-color: #fff;
      padding: 50px 0;
    }

    .contact-box {
      background-color: #0096ff;
      border-radius: 20px;
      color: #fff;
      padding: 30px;
      height: 100%;
    }

    .form-box {
      background-color: #0096ff;
      border-radius: 20px;
      color: #fff;
      padding: 30px;
    }

    .form-box h4 {
      font-weight: 600;
    }

    .form-box input,
    .form-box textarea {
      border-radius: 8px;
      border: none;
      padding: 10px 12px;
      width: 100%;
    }

    .form-box input:focus,
    .form-box textarea:focus {
      outline: none;
      box-shadow: 0 0 5px rgba(255, 255, 255, 0.6);
    }

    .contact-btn {
      background-color: #007be5;
      color: #fff;
      font-weight: 600;
      border: none;
      border-radius: 30px;
      padding: 10px 30px;
      margin-top: 10px;
      transition: all 0.3s ease;
    }

    .contact-btn:hover {
      background-color: #006ad1;
      transform: translateY(-2px);
    }

    .info-item {
      margin-bottom: 25px;
    }

    .info-item h6 {
      font-weight: 700;
      margin-bottom: 8px;
    }

    .info-item i {
      font-size: 18px;
      margin-right: 8px;
     
    }

    /* Thank You Popup */
    .thank-popup {
      display: none;
      position: fixed;
      top:10%;
      left:10%;
      width: 100%;
      height: 100%;
     
      justify-content: center;
      align-items: center;
      z-index: 9999;
    }

    .thank-popup-content {
      background: white;
      border-radius: 15px;
      padding: 40px;
      text-align: center;
      max-width: 400px;
    }

    .thank-popup-content h4 {
      color: #0096ff;
      margin-bottom: 15px;
    }

    .thank-popup-content button {
      background-color: #0096ff;
      color: #fff;
      border: none;
      border-radius: 30px;
      padding: 10px 25px;
      margin-top: 10px;
      cursor: pointer;
    }

    @media (max-width: 991px) {
      .form-box,
      .contact-box {
        margin-bottom: 20px;
      }
    }
  .info-item hr {
  /* width: 50px; */
  height: 3px;
  background-color:white; /* white to match the blue box */
  border: none;
  border-radius: 2px;
  margin: 8px 0 12px 0; /* small space above & below */
}

/* jee-xi */

.courses-inner1 {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  align-items: center; /* vertically center */
  padding: 0 40px;
}

/* COURSES BANNER BASE */
.courses-banner1 {
  position: relative;
  background-image: url("./Images/backgroundbanner.jpg");
  background-size: cover;
  background-position: center;
  overflow: hidden;
  height: 80vh; /* Full viewport height */
}

/* BLUE OVERLAY */
.courses-banner1::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(8, 120, 198, 0.8);
  z-index: 0;
}

.jee-banner-text{
  font-size:50px;
}

/* --- Custom Styles --- */
    .jee-section {
      background: #fff;
      border-radius: 10px;
      /* box-shadow: 0 2px 8px rgba(0,0,0,0.1); */
      overflow: hidden;
      padding: 25px;
    }
    .jee-heading {
      font-weight: 700;
      /* font-size: 1rem; */
      color: #0a0a0a;
      margin-bottom: 10px;
    }
    .jee-description {
      font-size: 0.95rem;
      color:black;
      margin-bottom: 20px;
    }
    .jee-badge {
      background: #007bff;
      color: #fff;
      border-radius: 10px;
      text-align: center;
      padding: 15px 10px;
      flex: 1;
      min-width: 120px;
    }
    .jee-badge h6 {
      font-size: 0.9rem;
      margin-top: 8px;
    }
    .jee-badge i {
      font-size: 1.5rem;
      margin-bottom: 5px;
    }
    .jee-subjects {
      /* font-weight: 600; */
      margin-bottom: 15px;
      font-size:1.3rem;
    }
    .jee-rating {
      font-size: 1.2rem;
      font-weight: 600;
    }
    .jee-info-title {
      font-weight: 600;
      margin-bottom: 6px;
    }
    .jee-details {
      /* line-height: 1.4; */
      font-size: 1.2rem;
      color:black;
    }
    .jee-blue-box {
      background: #007bff;
      color: #fff;
      border-radius: 10px;
      padding: 15px;
      text-align: center;
      height: 100%;
    }
    .jee-blue-box img {
      width: 100%;
      border-radius: 10px;
    }
    .jee-blue-box h5 {
      margin-top: 10px;
      font-weight: 600;
      font-size: 1rem;
    }
    .jee-list a {
      display: block;
      color: #007bff;
      text-decoration: none;
      margin-bottom: 6px;
    }
    .jee-list a:hover {
      text-decoration: underline;
    }
    @media (max-width: 768px) {
      .jee-blue-box {
        margin-top: 20px;
      }
    }

    
/* ✅ Responsive adjustments */
@media (max-width: 768px) {
  .journey h2 {
    font-size: 1.6rem;
  }

  .journey p {
    font-size: 0.95rem;
  }



  .journey {
    text-align: center;
  }

  .student {
    margin-top: 2rem;
  }
  .student img{
    height:400px;
    width:320px;
    margin-top:50px;
  }
  .img-fluid{
    margin-top:20px;
  }
}
/* footer responsive */
/* =============== RESPONSIVE DESIGN =============== */
    @media (max-width: 992px) {
      .footer-start .row {
        text-align: center;
      }
      .footer-start form {
        flex-direction: column;
        gap: 10px;
      }
      .email-input {
        border-radius: 30px;
        width: 100%;
      }
      .btn-subscribe {
        border-radius: 30px;
        width: 100%;
      }
      .social-icons {
        justify-content: center;
      }
    }

    @media (max-width: 768px) {
      .footer-section {
        text-align: center;
      }
      .footer-links li {
        margin-bottom: 8px;
      }
      .footer-section h5 {
        margin-top: 20px;
      }
    }

    @media (max-width: 576px) {
.footer-logo {
        margin: 0 auto 15px;
      }
      .subscription-form {
        width: 100%;
      }
      .social-icons a {
        font-size: 1rem;
      }
      .subscription-form{
        display:flex;
        flex-direction:column;
        height:100px;
        border-radius:35px;
      }
      .company-li li{
        margin-left:0px;
      }
      .director-img{
        width:330px;

      }
    }

    /* =====================================================
   =========== RESPONSIVENESS (Mobile & Tablet) =========
   ===================================================== */

/* ===== Tablets (≤1024px) ===== */
@media (max-width: 1024px) {
  .about-content h1 {
    font-size: 2rem;
  }

  .expert-coaching h1 {
    font-size: 1.7rem;
  }

  .lead-card {
    margin-bottom: 30px;
  }

  .stats-box {
    padding: 20px;
  }

  .stat-card1 h3 {
    font-size: 1.6rem;
  }
}

/* ===== Mobile (≤768px) ===== */
@media (max-width: 768px) {
  /* Global */
  h1, h2, h3 {
    text-align: center;
  }
  /* body{
    width:100%;
    overflow-x:hidden;
  } */

  p {
    text-align: justify;
  }

  /* .about-header {
    height: 50vh;
    padding: 0 20px;
  } */

  .about-content h3 {
    font-size: 1.2rem;
    text-align: center;
    align-content:center;
    left:40px;
    top:40px;
  }

  .about-content h1 {
    font-size: 1.8rem;
  }
  .about-content{
    align-items:center;
    text-align:center;
    margin-right:50px;
  }

  /* Story */
  .row {
    /*flex-direction: column !important;*/
    text-align: center;
  }

  .director-img {
    margin-top: 25px;
  }

  /* Stats */
  .stats-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  /* Coaching Section */
  .tab-btn {
    flex: 1 1 100%;
    text-align: center;
  }

  .coaching-tabs {
    flex-direction: column;
    align-items: center;
  }

  /* Expert Coaching */
  .expert-coaching {
    flex-direction: column !important;
  }

  .expert-coaching-img img{
    margin-top: 30px;
    text-align:center;
    width:200px;
  }

  /* Leadership */
  .lead-card {
    margin-bottom: 25px;
  }

  .lead-card img {
    max-width: 150px;
  }

  /* Why Bansal */
  .bansal-left {
    text-align: center;
    margin-bottom: 20px;
  }

  .bansal-right img {
    width: 100%;
    max-width: 350px;
  }

  /* Buttons */
  .btn, .black-btn {
    padding: 8px 18px;
    font-size: 14px;
  }

  /* Container */
  
  .our-mission img{
    width:320px;
  }
}
@media only screen and (max-width: 768px) {
  html,
  body {
    width: 100%;
    overflow-x: hidden;
  }
}


/* gallery page */
/* ✅ Tablet: 2 or 3 per row */
@media (max-width: 992px) {
  .gallery-page .cards-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ✅ Small tablet */
@media (max-width: 768px) {
  .gallery-page .cards-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-page .tabs {
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 5px;
  }
}

/* ✅ Mobile single column */
@media (max-width: 480px) {
  .gallery-page .cards-container {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, 1fr); /* or 4 if you want */
  max-width: 1100px;       /* ✅ limits width */
  margin: 0 auto;          /* ✅ centers container */
  justify-items: center;   /* ✅ centers cards inside */
  }

  .gallery-page .gallery-card img {
    height: 180px;
  }
}


/* boast page */

.boost-section {
  position: relative;
  background: url('./Images/backgroundbanner.jpg') no-repeat center center/cover;
  min-height: 100vh;
 
  align-items: center;
  color: white;
  overflow: hidden;
}
.boost-section {
  display: block !important;
}

/* Blue overlay */
.boost-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(8, 120, 198, 0.8);
  z-index: 1;
}

/* Ensure text and form are above overlay */
.boost-section .container {
  position: relative;
  z-index: 2;
}

/* Form Styling */
.boost-form {
  background-color: rgba(0, 150, 255, 0.9);
  box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.3);
}

.boost-form .form-control {
  border-radius: 20px;
  padding: 10px 15px;
}

.boost-form button {
  border-radius: 25px;
}

/* Modern dropdown styling */
.custom-select {
  position: relative;
}

.custom-select select {
  width: 100%;
  appearance: none;
  background-color: #fff;
  border: none;
  border-radius: 25px;
  padding: 10px 16px;
  font-size: 15px;
  color: #333;
  cursor: pointer;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.1);
  transition: box-shadow 0.3s ease;
}

.custom-select select:hover,
.custom-select select:focus {
  box-shadow: 0 0 0 2px #007bff;
}

/* Add custom dropdown arrow */
.custom-select::after {
  content: "▼";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  color: #007bff;
  pointer-events: none;
}

/* Responsive Design */
@media (max-width: 768px) {
  .boost-section {
    text-align: center;
    padding: 90px 20px;
  }

  .boost-form {
    margin-top: 20px;
  }
  .result-neet img{
    margin-bottom:20px;
  }
  .footer-bottom{
    padding:20px;
  }
}


/* table section */
 .section-title {
      font-weight: 600;
      font-size: 24px;
    }

    .subtitle {
      color:black;
      margin-bottom: 25px;
      font-size:23px;
    }

    .progress {
      height: 32px !important;
      border-radius: 20px !important;
      margin-bottom: 10px;
    }

    .progress-bar {
      background-color: #007bff;
      border-radius:20px;
    }

    .info-text {
      font-size: 23px;
      margin-bottom: 40px;
    }

    .benefit-card {
      background: #fff;
      box-shadow: 0px 2px 8px rgba(0,0,0,0.5);
      border-radius: 20px;
      text-align: center;
      padding: 25px 15px;
      transition: all 0.3s ease;
    }

    .benefit-card:hover {
      transform: translateY(-5px);
    }
    .benefit-card h3{
      font-weight:600;
    }
    .benefit-icon {
      height: 80px;
      width: 80px;
      background: #007bff;
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 15px;
    }

    .benefit-card h5 {
      font-weight: 600;
      font-size: 18px;
      margin-bottom: 10px;
    }

    .benefit-card p {
      font-size: 16px;
      color:black;
      margin: 0;
    }

    .cash-title {
      margin-top: 50px;
      font-weight: 600;
      font-size: 24px;
    }

    .subtitle {
      color: #555;
      margin-bottom: 20px;
    }

    .table {
      border: 2px solid black;
      text-align: center;
      margin-top: 20px;
      border-radius: 10px;
      overflow: hidden;
     
    }

    .table th {
      background-color: #f8f8f8;
      font-weight: 600;
      border: 1px solid black;
    }

    .table td {
      vertical-align: middle;
      padding: 12px;
      border: 1px solid black;
      
    }
 
     

    /* 🔵 BLUE ROW STYLING */
   /* .table td.tr1 {
      background-color: #0096FF !important;
      color: #fff !important;
    } */

    /* For non-blue rows */
    tr:not(.tr1) {
      background-color: #fff;
      color: #000;
    }

    @media (max-width: 767px) {
      .cash-title {
        font-size: 20px;
      }

      .table td, .table th {
        font-size: 14px;
        padding: 8px;
      }
    }
    
    
   
/* Make it clean on mobile */
@media (max-width: 767px) {
  .cash-title {
    font-size: 20px;
  }
  .table td, .table th {
    font-size: 14px;
    padding: 8px;
  }
}

    @media (max-width: 767px) {
      .benefit-card {
        margin-bottom: 20px;
      }

      .section-title, .cash-title {
        font-size: 20px;
      }
    }


    .result-neet{
      background-color: white;
      
    }
    
 @media (max-width: 480px){
     .hero-text h1{
         margin-top:20px;
         font-size:22px;
     }
     .expert-coaching p{
         width:250px;
         margin-left:40px;
     }
     .stats-grid p{
         text-align:center;
     }
   
 }   
 
 
  @media (max-width: 768px) {
  .lead-card p:first-of-type {
    text-align: center;
  }
}
 
 @media (max-width: 768px) {
  .d-flex.flex-column.flex-sm-row {
    flex-direction: row !important; /* or whatever you prefer */
  }
}
 
    
    
    
    
    