 .navbar-brand {
   color: #e84747;

 }

 .navbar-brand img {
   width: 300px;
 }

 .btn btn-outline-primary {
   text-align: right;
 }

 .image {
   width: 30px;
   height: 30px;
 }

 .hero-section {
   display: flex;
   flex-wrap: wrap;
   justify-content: center;
   align-items: center;
   background: #f9f9ff;
   padding: 50px 20px;
   gap: 50px;
   /* Removed fixed height */
 }

 .hero-left {
   flex: 1 1 500px;
   max-width: 500px;
   text-align: left;
 }

 .hero-left h1 {
   font-size: 34px;
   font-weight: bold;
   margin-bottom: 25px;
   color: #000;
 }

 .hero-left .features {
   display: flex;
   flex-wrap: wrap;
   gap: 10px;
   margin-bottom: 25px;
 }

 .feature-box {
   background: white;
   padding: 10px 15px;
   border: 1px solid #ddd;
   border-radius: 8px;
   text-align: center;
   flex: 1 1 calc(50% - 10px);
   /* This makes them two-column on larger screens */
   min-width: 140px;
 }

 .feature-box span {
   display: block;
   font-weight: bold;
   color: #555;
 }

 .hero-button {
   background-color: #4e47ff;
   color: white;
   padding: 10px;
   border: none;
   border-radius: 8px;
   font-weight: bold;
   font-size: 20px;
   text-decoration: none;
   display: inline-block;
   width: 30%;
   /* Ensure it's full width by default */
   box-sizing: border-box;
 }

 .hero-right {
   flex: 1 1 400px;
   max-width: 500px;
   text-align: center;
 }

 .hero-right img {
   width: 100%;
   height: auto;
 }

 /* --- Why Choose Section --- */
 .Why_Choose {
   width: 100%;
   /* height: 700px; Removed fixed height */
   padding: 40px 20px;
   /* Add some padding for spacing */
 }

 .Why_Choose .heading {
   color: black;
   text-align: center;
 }

 .Why_Choose h1 {
   font-size: 28px;
   /* Adjusted slightly from 34px to be more consistent */
   margin-bottom: 20px;
   color: black;
 }

 .Why_Choose h1 span {
   color: #4e47ff;
 }

 .Why_Choose .d-flex {
   display: flex;
   flex-wrap: wrap;
   justify-content: center;
   gap: 20px;
 }

 .Why_Choose .card {
   /* Keeping inline styles for background-color, color, border, border-radius, box-shadow */
   width: 350px;
   height: 400px;
   /* Keep fixed height for consistency on desktop */
   text-align: center;
   padding: 20px;
   border-radius: 30px;
   /* From inline */
   box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
   /* From inline */
   box-sizing: border-box;
   /* Include padding in width */
 }

 .Why_Choose .card-title {
   text-align: left;
   font-size: 24px;
   /* Ensure a readable size */
 }

 .Why_Choose .card-img-top {
   object-fit: cover;
   height: 200px;
   border-radius: 20px;
 }

 /* The main section style is inline in your HTML: background-color: #1a184d; etc. */

 .features-grid {
   display: flex;
   flex-wrap: wrap;
   justify-content: center;
   gap: 20px;
   margin-bottom: 40px;
   /* Space above the button */
 }

 .features-grid .feature-card {
   background-color: transparent;
   border: 1px solid #c8a349;
   /* Golden border */
   border-radius: 16px;
   width: 240px;
   /* Default width for desktop */
   padding: 25px 15px;
   box-sizing: border-box;
   /* Include padding in width */
   color: white;
   /* Ensure text is visible on dark background */
 }

 .features-grid .feature-card i {
   font-size: 28px;
   color: #c8a349;
   margin-bottom: 10px;
   display: block;
 }

 .features-grid .feature-card h3 {
   font-size: 16px;
   margin: 10px 0 5px 0;
 }

 .features-grid .feature-card p {
   font-size: 14px;
   color: #ccc;
 }

 /* Button styles */
 .hero-button1 {
   /* For the button in Why_Choose section */
   background-color: #4e47ff;
   /* Assuming this is the blue button color */
   color: white;
   padding: 15px 30px;
   border: none;
   border-radius: 8px;
   font-weight: bold;
   font-size: 18px;
   cursor: pointer;
   text-decoration: none;
   display: inline-block;
   width: 500px;
   /* Desktop width */
   box-sizing: border-box;
 }

 .button-yellow {
   /* For the button in "Get everything you need" section */
   background: linear-gradient(to right, #f2c94c, #f2994a);
   border: none;
   padding: 14px 30px;
   color: #14144d;
   font-weight: bold;
   border-radius: 8px;
   font-size: 16px;
   cursor: pointer;
   text-decoration: none;
   display: inline-block;
   width: 500px;
   /* Desktop width */
   box-sizing: border-box;
 }

 #carouselExampleDark {
   height: 600px;
   /* Consider if this fixed height is needed or if it should be auto */
 }

 /* --- Testimonial Section --- */
 .testimonial-section {
   padding: 60px 20px;
   text-align: center;
   font-family: Arial, sans-serif;
   /* Removed fixed height */
 }

 .testimonial-section h2 {
   font-size: 28px;
   font-weight: bold;
 }

 .testimonial-section h2 span {
   color: #4e47ff;
 }

 .swiper {
   margin-top: 40px;
   padding-bottom: 50px;
   /* Space for pagination dots */
 }

 .swiper-slide {
   background: #fff;
   border: 1px solid #ccc;
   border-radius: 16px;
   text-align: right;
   box-sizing: border-box;
 }

 .testimonial-header {
   display: flex;
   align-items: center;
   margin-bottom: 15px;
 }

 .testimonial-header img {
   width: 50px;
   height: 50px;
   border-radius: 50%;
   object-fit: cover;
   margin-right: 15px;
 }

 .testimonial-name {
   font-weight: bold;
   color: black;
   font-size: 20px;
 }

 .band-score {
   font-size: 20px;
   text-align: right;
 }

 .testimonial-text {
   font-size: 14px;
   color: #555;
 }

 .start-btn {
   /* Button in testimonial section */
   background: #4e47ff;
   color: white;
   padding: 15px 25px;
   border: none;
   border-radius: 8px;
   font-size: 16px;
   text-decoration: none;
   display: inline-block;
   margin-top: 30px;
   width: 500px;
   /* Desktop width */
   box-sizing: border-box;
 }

 .swiper-mySwiper {
   /* Corrected class from 'swiper mySwiper' to 'swiper-mySwiper' if you intended a single class */
   padding-left: 20px;
   padding-right: 20px;
 }

 /* ========================================================= */
 /* RESPONSIVE STYLES (MOBILE)              */
 /* ========================================================= */
 @media (max-width: 768px) {
   /* Applies to screens 768px wide or less */

   /* General adjustments */
   body {
     font-size: 14px;
     /* Slightly smaller base font for mobile */
   }

   h1,
   h2 {
     font-size: 24px !important;
     /* Make headings smaller on mobile */
     text-align: center;
   }

   /* Hero Section */
   .hero-section {
     flex-direction: column;
     text-align: center;
     gap: 30px;
     padding: 30px 15px;
     /* Adjust padding */
   }

   .hero-left {
     max-width: 100%;
     text-align: center;
   }

   .hero-left .features {
     justify-content: center;
     /* Center feature boxes */
     gap: 15px;
   }

   .feature-box {
     flex: 1 1 100%;
     /* Stack feature boxes one by one */
     max-width: 200px;
     /* Limit their width for readability */
     margin: 0 auto;
     /* Center them */
   }

   .hero-button {
     width: 90% !important;
     /* Force full width on mobile */
     max-width: 300px;
     /* Limit max width for smaller screens */
     font-size: 16px;
     padding: 15px;
   }

   .hero-section {
     display: flex;
     flex-wrap: wrap;
     justify-content: space-between;
     align-items: center;
     gap: 20px;
   }

   .hero-left,
   .hero-right {
     flex: 1 1 45%;
   }

   .hero-right img {
     width: 100%;
     height: auto;
     display: block;
     object-fit: contain;
   }

   .hero-right {
     max-width: 90%;
     margin: 0 auto;
   }

   .hero-right img {
     width: 100%;
     height: auto;
     display: block;
     margin: 0 auto;
     max-height: 400px;
     object-fit: contain;
   }

   @media (max-width: 768px) {
     .hero-section {
       flex-direction: column;
       text-align: center;
     }

     .hero-left,
     .hero-right {
       flex: 1 1 100%;
     }
   }

   .Prep {
     background-color: #1a184d;
     /* height: 700px; */
   }

   /* Why Choose Section */
   .Why_Choose {
     padding: 30px 10px;
     /* Adjust padding for mobile */
     height: auto !important;
     /* Crucial: Allow height to adapt */
   }

   .Why_Choose .d-flex {
     flex-direction: column !important;
     /* Stack cards vertically */
     align-items: center !important;
     /* Center stacked cards */
     gap: 15px;
     /* Adjust gap for stacked cards */
   }

   .Why_Choose .card {
     width: 90% !important;
     /* Make cards wider on mobile */
     max-width: 350px !important;
     /* Limit max width */
     height: auto !important;
     /* Allow height to adapt to content */
     margin-bottom: 0px;
     /* Gap property handles spacing now */
   }

   .Why_Choose .card-title {
     font-size: 20px !important;
     /* Adjust heading size */
   }

   .Why_Choose .card-img-top {
     height: 150px !important;
     /* Adjust image height */
   }


   /* Get Everything You Need Section (features-grid) */
   section[style*="background-color: #1a184d;"] {
     /* Targeting this section by its inline style as it has no class */
     padding: 30px 15px !important;
     /* Adjust padding */
     height: auto !important;
     /* Ensure height adapts */
   }

   .features-grid {
     flex-direction: column !important;
     /* Stack feature cards vertically */
     align-items: center !important;
     /* Center stacked feature cards */
     gap: 15px;
     /* Add gap between stacked cards */
     margin-bottom: 20px;
     /* Adjust margin below grid */
   }

   .features-grid .feature-card {
     width: 90% !important;
     /* Make feature cards take up more width */
     max-width: 300px !important;
     /* Limit max width */
     margin: 0 auto;
     /* Center them */
     padding: 20px 10px;
     /* Adjust padding */
   }

   /* Buttons */
   .hero-button1,
   .button-yellow,
   .start-btn {
     width: 90% !important;
     /* All main buttons should be full width */
     max-width: 300px !important;
     /* Limit max width */
     font-size: 16px !important;
     padding: 15px !important;
     display: block;
     /* Ensure they take full width */
     margin-left: auto;
     /* Center block elements */
     margin-right: auto;
     /* Center block elements */
   }

   .button-yellow,
   .start-btn {
     margin-top: 20px;
     /* Add some top margin to separate from content */
   }

   /* Testimonial Section (Swiper) */
   .testimonial-section {
     padding: 30px 15px;
     /* Adjust padding */

   }

   .testimonial-section h2 {
     font-size: 24px !important;
   }

   .testimonial-section h2 span {
     color: #4e47ff;
   }

   .swiper-wrapper {
     height: auto !important;
     /* Crucial: Allow swiper height to adapt */
     padding-top: 10px;
     /* Add some top padding if needed */
     padding-bottom: 10px;
     /* Add some bottom padding if needed */
   }


   /* .swiper-wrapper custom-class{
          height: auto !important;
        /* Crucial: Allow swiper height to adapt */
   /* padding-top: 10px; */
   /* Add some top padding if needed */
   /* padding-bottom: 10px; */
   /* Add some bottom padding if needed */
 }

 */ .teacher-card {
   display: flex;
   justify-content: center;
   align-items: center;
   box-shadow: 10px 10px 5px rgb(145, 151, 153);

 }

 .teacher-img-wrapper {
   width: 270px;
   /* Adjust width as needed */
   height: 200px;
   /* Adjust height as needed */
   display: flex;
   align-items: center;
   justify-content: center;
   background: #fff;
   /* Optional: background box */
   border: 1px solid #ddd;
   /* Optional: border */
   border-radius: 8px;
   /* Optional: rounded corners */
   padding: 10px;
   box-shadow: 10px 10px 5px rgb(109, 123, 128);
 }

 .teacher-img-wrapper img {
   max-width: 100%;
   max-height: 100%;
   object-fit: contain;
   box-shadow: 10px 10px 5px rgb(142, 142, 143);
 }






 .swiper-slide {
   padding: 15px !important;
   /* Adjust slide padding */
   text-align: center;


 }

 .testimonial-name,
 .band-score {
   font-size: 18px !important;
 }

 .testimonial-text {
   font-size: 13px !important;
 }

 /* Specific adjustment for Navbar if needed, though Bootstrap handles much of it */
 .navbar-collapse {
   text-align: center;
 }

 .navbar-nav .nav-item {
   margin-bottom: 10px;
 }

 .navbar-toggler {
   margin-left: auto;
   /* Push toggler to the right */
 }




 body {
   font-family: Arial, sans-serif;
   margin: 0;
   padding: 20px;
   background-color: #f0f2f5;
   box-sizing: border-box;
 }

 .comparison-table-section {
   width: 100%;
   overflow-x: auto;
   /* Enable horizontal scroll */
 }

 .table-container {
   background-color: #fcfcfc;
   border-radius: 10px;
   overflow: hidden;
   box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
   min-width: 600px;
   /* Ensure min width */
 }

 table {
   width: 100%;
   border-collapse: collapse;
 }

 th,
 td {
   padding: 15px 20px;
   text-align: left;
   border-bottom: 1px solid #eee;
   white-space: nowrap;
 }

 th {
   background-color: #f7f7f7;
   font-weight: bold;
   color: #333;
   text-transform: uppercase;
   font-size: 0.9em;
 }

 th img {
   width: 180px;
   height: auto;
 }

 tbody tr:last-child td {
   border-bottom: none;
 }

 .highlight-column {
   background-color: #e8f0ff;
   color: #1a73e8;
   font-weight: bold;
 }

 .check-icon {
   color: #4CAF50;
   font-size: 1.5em;
   vertical-align: middle;
 }

 /* Responsive styles */
 @media (max-width: 768px) {

   th,
   td {
     padding: 10px 12px;
     font-size: 0.85em;
   }

   th img {
     width: 120px;
   }
 }

 @media (max-width: 480px) {

   th,
   td {
     padding: 8px 10px;
     font-size: 0.78em;
   }

   th img {
     width: 100px;
   }
 }


 .top {
   text-align: center;
 }

 .top h2 span {
   color: #4e47ff;
 }

 .teachers-swiper-section {
   background: #f9f9ff;
 }

 .teachers-swiper-section h2 {
   font-weight: 600;
 }

 .teachers-swiper-section .highlight {
   color: #4b5df7;
 }

 .teacher-card {
   background: #fff;
   border-radius: 12px;
   padding: 50px;
   box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
   transition: transform 0.3s;
   margin: 10px;
   width: 300px;
   /* Adjust width for partial visibility */
   height: 200px;
 }

 .teacher-card:hover {
   transform: translateY(-5px);
 }

 .teacher-img {
   width: 70px;
   height: 70px;
   border-radius: 50%;
   object-fit: cover;
   margin-right: 15px;
   flex-shrink: 0;
 }

 .teacher-info h5 {
   margin: 0 0 5px 0;
   font-size: 1rem;
   font-weight: 600;
 }

 .teacher-info p {
   margin: 0;
   font-size: 0.85rem;
   color: #555;
 }

 .logo.py-5 {
   padding-top: 3rem;
   /* Tailwind's py-5 is approx 3rem */
   padding-bottom: 3rem;
   width: 100%;
   /* Ensure section takes full width */
   max-width: 1200px;
   /* Limit overall width on larger screens */
   margin: 0 auto;
   /* Center the section */
 }

 /* Container styling */
 .logo .container {
   text-align: center;
   padding: 0 15px;
   /* Add horizontal padding for smaller screens */
 }

 /* Main logo image above the slider */
 .logo .container>img {
   /* Target the direct child img of .container */
   max-width: 250px;
   /* Adjust size of the main logo */
   height: auto;
   display: block;
   /* Ensures it takes its own line */
   margin: 0 auto 40px auto;
   /* Center and add space below */
   border-radius: 8px;
   /* Rounded corners */
 }

 /* Swiper slide image styling */
 .logo .swiper-slide img {
   width: 100%;
   /* Image takes full width of its slide */
   height: auto;
   max-width: 250px;
   /* Limit individual image size within the slide */
   margin: 0 auto;
   /* Center image within the slide */
   border-radius: 8px;
   /* Rounded corners for slider images */
   box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
   /* Subtle shadow for depth */
 }

 /* Swiper container itself */
 .swiper.logoSwiper {
   width: 100%;
   /* Swiper takes full width of its parent container */
   padding-bottom: 40px;
   /* Space for pagination dots */
 }

 /* Swiper navigation buttons (arrows) */
 .swiper-button-next,
 .swiper-button-prev {
   color: #333;
   /* Darker arrows */
   background-color: rgba(255, 255, 255, 0.7);
   /* Semi-transparent background */
   border-radius: 50%;
   /* Circular buttons */
   width: 40px;
   height: 40px;
   display: flex;
   align-items: center;
   justify-content: center;
   box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
   transition: background-color 0.3s ease;
 }

 .swiper-button-next:hover,
 .swiper-button-prev:hover {
   background-color: rgba(255, 255, 255, 0.9);
 }

 /* Swiper pagination dots */
 .swiper-pagination-bullet {
   background: #ccc;
   /* Inactive dot color */
   opacity: 1;
 }

 .swiper-pagination-bullet-active {
   background: #007bff;
   /* Active dot color (blue) */
 }

 /* All images responsive */
 .logo img {
   max-width: 100%;
   height: auto;
   display: block;
   border-radius: 8px;
   /* optional: nice rounded corners */
   flex: 1 1 auto;
   /* allow wrapping nicely */
 }

 .image-A {
   background-color: rgb(244 243 255 / var(--tw-bg-opacity));
 }



 .center-logo {
   display: block;
   margin-left: auto;
   margin-right: auto;
   width: 500px;
   height: 150px;
 }


 /* Container in row */
 .image-row {
   display: flex;
   gap: 12px;
   /* space between images */
   justify-content: center;
   /* center the row */
   align-items: center;
   flex-wrap: wrap;
   /* allow wrapping into multiple lines */
   padding: 10px;
 }

 /* Images smaller */
 .image-row img {
   max-height: 300px;
   /* adjust as needed */
   width: auto;
   border-radius: 6px;
   /* optional rounded corners */
   flex-shrink: 0;
   border: 1px solid;
   padding: 10px;
   box-shadow: 5px 10px #888888;
 }

 /* On small screens, make images full width and stack */
 @media (max-width: 768px) {
   .image-row {
     flex-direction: column;
     align-items: center;
   }

   .image-row img {
     max-height: none;
     width: 90%;
   }
 }







 body {
   font-family: Arial, sans-serif;
   background: #f9f9ff;
   margin: 0;
   padding: 20px;
 }

 .faq-section {
   max-width: 800px;
   margin: 0 auto;
 }

 .faq-title {
   text-align: center;
   font-size: 28px;
   font-weight: bold;
   margin-bottom: 30px;
 }

 .faq-item {
   background: #fff;
   border: 1px solid #ddd;
   border-radius: 8px;
   margin-bottom: 10px;
   overflow: hidden;
   transition: box-shadow 0.3s;
 }

 .faq-item.active {
   box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
 }

 .faq-question {
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 15px 20px;
   cursor: pointer;
   font-weight: 500;
   font-size: 16px;
 }

 .faq-answer {
   max-height: 0;
   overflow: hidden;
   padding: 0 20px;
   font-size: 15px;
   color: #333;
   transition: max-height 0.3s ease, padding 0.3s ease;
 }

 .faq-item.active .faq-answer {
   max-height: 500px;
   padding: 15px 20px;
 }

 .faq-icon {
   font-size: 20px;
   transition: transform 0.3s;
 }

 .faq-item.active .faq-icon {
   transform: rotate(45deg);
 }

 .accordion-button:focus {
   box-shadow: none;
 }

 .custom-footer {
   background: #fff;
   border-top: 1px solid #ddd;
   padding: 40px 20px;
   font-family: Arial, sans-serif;
   color: #333;
 }

 .footer-container {
   max-width: 1200px;
   margin: 0 auto;
   display: flex;
   flex-wrap: wrap;
   justify-content: space-between;
   align-items: flex-start;
 }

 .footer-left {
   max-width: 300px;
   margin-bottom: 20px;
 }

 .footer-logo {
   max-width: 150px;
   margin-bottom: 10px;
 }

 .footer-slogan {
   font-size: 16px;
   margin-bottom: 15px;
 }

 .footer-social a {
   display: inline-block;
   margin-right: 5px;
 }

 .footer-social img {
   width: 70px;
   height: 70px;
   color: #4e47ff;
 }

 .footer-right {
   display: flex;
   gap: 40px;
   flex-wrap: wrap;
 }

 .footer-column h5 {
   font-size: 16px;
   margin-bottom: 10px;
   font-weight: bold;
 }

 .footer-column ul {
   list-style: none;
   padding: 0;
   margin: 0;
 }

 .footer-column ul li {
   margin-bottom: 6px;
 }

 .footer-column ul li a {
   text-decoration: none;
   color: #333;
   font-size: 14px;
 }

 .footer-column ul li a:hover {
   text-decoration: underline;
 }

 @media (max-width: 768px) {
   .footer-container {
     flex-direction: column;
     align-items: flex-start;
   }

   .footer-right {
     flex-direction: column;
     gap: 20px;
   }
 }

 .results-carousel {
   padding: 60px 20px;
   text-align: center;
   background: rgb(249, 249, 255);
   height: 600px;
 }

 .results-carousel h2 {
   font-size: 26px;
   margin-bottom: 10px;
   color: #333;
 }

 .results-carousel h2 span {
   color: #4e47ff;
 }

 .results-carousel p {
   color: #666;
   margin-bottom: 40px;
 }

 .result-card {
   background: #DFDFFF;
   border-radius: 16px;
   box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
   padding: 7px;
   padding-top: 7px;
   text-align: center;
   /* width: 700px; */
 }

 .result-card img {
   width: 100%;
   height: 240px;
   margin-top: 1px;
   border-radius: 8px;
   margin-bottom: 1px;
 }

 .result-card h3 {
   font-size: 18px;
   margin: 10px 0;
 }

 /* .band-score-box {
  display: inline-block;
  background: white;
  color: #333;
  border-radius: 3px;
  /* padding: 6px 12px; */
 /* margin-top: 8px; */
 /* font-weight: bold;
 
  font-size: 15px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}  */

 /* Ensure slides fit nicely */
 .swiper-slide {
   width: 300px;
   max-width: 300px;
 }

 .swiper_myResultsSwiper {
   height: 10px;
 }

 .testimonial-section .swiper-slide {
   display: flex;
   flex-direction: column;
   align-items: center;
 }

 .results-carousel .swiper-slide {
   display: flex;
   justify-content: center;
 }

 html {
   scroll-behavior: smooth;
 }





 .modal-header {
   border-bottom: none;
   padding: 20px 20px 0;
   display: flex;
   justify-content: flex-end;
   /* Push close button to right */
 }

 .modal-body {
   padding: 30px 40px;
   /* Adjust padding for better look */
 }

 .modal-header .btn-close {
   font-size: 1.2em;
   opacity: 0.7;
   transition: opacity 0.3s ease;
 }

 .modal-header .btn-close:hover {
   opacity: 1;
 }

 /* Form Container Styling (from previous response) */
 .form-container-modal {
   /* Renamed to avoid conflict with potential outer .form-container */
   text-align: center;
 }

 .form-container-modal h1 {
   color: #333;
   font-size: 2.2em;
   margin-bottom: 10px;
   font-weight: 700;
 }

 .form-container-modal p {
   color: #666;
   font-size: 1em;
   margin-bottom: 30px;
 }

 .form-group {
   margin-bottom: 25px;
   text-align: left;
 }

 .form-group label {
   display: block;
   margin-bottom: 8px;
   color: #555;
   font-weight: 600;
   font-size: 0.95em;
 }

 .form-container-modal input[type="text"],
 .form-container-modal input[type="email"],
 .form-container-modal input[type="tel"] {
   width: 100%;
   padding: 14px 18px;
   border: 1px solid #ddd;
   border-radius: 8px;
   font-size: 1em;
   color: #333;
   box-sizing: border-box;
   transition: border-color 0.3s ease;
 }

 .form-container-modal input[type="text"]::placeholder,
 .form-container-modal input[type="email"]::placeholder,
 .form-container-modal input[type="tel"]::placeholder {
   color: #aaa;
 }

 .form-container-modal input[type="text"]:focus,
 .form-container-modal input[type="email"]:focus,
 .form-container-modal input[type="tel"]:focus {
   border-color: #007bff;
   outline: none;
   box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.15);
 }

 .phone-input {
   display: flex;
   gap: 10px;
 }

 .phone-input select {
   padding: 14px 10px;
   border: 1px solid #ddd;
   border-radius: 8px;
   font-size: 1em;
   background-color: #f8f8f8;
   color: #333;
   appearance: none;
   -webkit-appearance: none;
   -moz-appearance: none;
   background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23666%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-6.5%200-12.3%203.2-16.1%208.1-3.9%204.9-4.8%2011.6-2.6%2017.5l133.7%20221.7c4.7%207.8%2013.8%2012.8%2023.7%2012.8s19-5%2023.7-12.8L290.2%2090c2.2-5.9%201.3-12.6-2.6-17.5z%22%2F%3E%3C%2Fsvg%3E');
   background-repeat: no-repeat;
   background-position: right 10px center;
   background-size: 12px;
 }

 .phone-input input {
   flex-grow: 1;
 }

 .options-group {
   display: flex;
   flex-wrap: wrap;
   gap: 10px;
 }

 .option-button {
   flex: 1;
   min-width: 80px;
   padding: 12px 15px;
   border: 1px solid #e0e0e0;
   border-radius: 8px;
   cursor: pointer;
   background-color: #f9f9f9;
   color: #555;
   font-size: 0.95em;
   font-weight: 500;
   text-align: center;
   transition: all 0.3s ease;
   display: flex;
   justify-content: center;
   align-items: center;
   position: relative;
 }

 .option-button:hover {
   border-color: #c0c0c0;
   background-color: #f0f0f0;
 }

 .option-button input[type="radio"] {
   position: absolute;
   opacity: 0;
   width: 0;
   height: 0;
   pointer-events: none;
   /* Ensure it doesn't interfere with clicks on the label */
 }

 .option-button span {
   display: block;
   width: 100%;
   height: 100%;
   padding: 0;
   border-radius: 8px;
   line-height: 1.2;
   transition: all 0.3s ease;
 }

 .option-button.selected {
   background-color: #e0f2fe;
   border-color: #007bff;
   color: #007bff;
   font-weight: 600;
 }

 .exam-plan-options .option-button {
   flex-basis: calc(50% - 5px);
 }

 .submit-button {
   width: 100%;
   padding: 16px 20px;
   background-color: #4e47ff;
   color: #fff;
   border: none;
   border-radius: 8px;
   font-size: 1.2em;
   font-weight: 600;
   cursor: pointer;
   transition: background-color 0.3s ease, transform 0.2s ease;
   box-shadow: 0 4px 15px rgba(255, 111, 0, 0.3);
 }

 .submit-button:hover {
   background-color: #e66000;
   transform: translateY(-2px);
 }

 .submit-button:active {
   transform: translateY(0);
 }

 /* Responsive adjustments for form modal */
 @media (max-width: 600px) {
   .modal-body {
     padding: 25px;
   }

   .form-container-modal h1 {
     font-size: 1.8em;
   }

   .form-group label {
     font-size: 0.9em;
   }

   .form-container-modal input[type="text"],
   .form-container-modal input[type="email"],
   .form-container-modal input[type="tel"],
   .phone-input select {
     padding: 12px 15px;
     font-size: 0.95em;
   }

   .options-group {
     flex-direction: column;
   }

   .option-button {
     flex-basis: 100%;
     min-width: unset;
   }

   .exam-plan-options .option-button {
     flex-basis: 100%;
   }

   .submit-button {
     font-size: 1.1em;
     padding: 14px 18px;
   }
 }

 @media (max-width: 400px) {
   .modal-body {
     padding: 20px;
   }
 }



 .swiper-slide {
   width: 300px;
   /* adjust as per design */
   border: 1px solid #ccc;
   padding: 15px;
   position: relative;
 }

 .testimonial-text {
   max-height: 120px;
   /* box ka fixed height */
   overflow: hidden;
   transition: max-height 0.3s ease;
 }

 .read-more-btn {
   margin-top: 10px;
   background-color: #007bff;
   color: white;
   border: none;
   padding: 5px 10px;
   cursor: pointer;
   border-radius: 5px;
 }


 .slider {
   overflow: hidden;
   position: relative;
   width: 100%;
   background: #fff;
 }

 .slide-track {
   display: flex;
   width: calc(250px * 14);
   /* card width × number of cards */
   animation: scroll 40s linear infinite;
 }

 .card {
   width: 250px;
   height: 180px;
   margin: 10px;
   text-align: center;
   background: #f8f8f8;
   border-radius: 10px;
   box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
   flex-shrink: 0;
 }

 .card img {
   width: 100%;
   height: 120px;
   object-fit: cover;
   border-radius: 10px 10px 0 0;
 }

 @keyframes scroll {
   0% {
     transform: translateX(0);
   }

   100% {
     transform: translateX(-50%);
   }
 }



 .slider {
   overflow: hidden;
   position: relative;
   margin-top: 20px;
 }

 .slide-track {
   display: flex;
   width: max-content;
   animation: scroll 25s linear infinite;
 }

 .card {
   width: 200px;
   margin: 0 10px;
   text-align: center;
   background: #fff;
   border-radius: 10px;
   box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
   flex-shrink: 0;
 }

 .card img {
   width: 100%;
   height: 200px;
   object-fit: cover;
   border-top-left-radius: 10px;
   border-top-right-radius: 10px;
 }

 .card h2 {
   font-size: 1rem;
   margin: 10px 0;
 }

 @keyframes scroll {
   0% {
     transform: translateX(0);
   }

   100% {
     transform: translateX(-50%);
   }
 }

 /* Hover par ruk jaye */
 .slide-track:hover {
   animation-play-state: paused;
 }


 .swiper.logoSwiper {
   width: 100%;
   /* Swiper takes full width of its parent container */
   padding-bottom: 40px;
   /* Space for pagination dots */
 }

 .logoSwiper img {
   height: 80px;
   /* sab image ek size me aa jayengi */
   object-fit: contain;
 }

 .logoSwiper .hover-img {
   transition: transform 0.3s ease;
   cursor: pointer;
 }

 .logoSwiper .hover-img:hover {
   transform: scale(1.1);
 }

 .swiper-button-prev,
 .swiper-button-next {
   display: none !important;
 }




     .resultsSwiper {
      width: 100%;
      padding: 20px 0;
    }

    .swiper-slide.card {
      width: 200px;
      /* Fixed width for cards */
      text-align: center;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      border-radius: 10px;
      padding: 10px;
    }

    .swiper-slide.card img {
      max-width: 100%;
      height: auto;
      margin-bottom: 10px;
    }

    .swiper-button-prev,
    .swiper-button-next {
      color: rgb(78, 71, 255);
      top: 40%;
    }

    .swiper-pagination {
      display: none;
    }

    /* Show pagination only on mobile screens */
    @media (max-width: 768px) {
      .swiper-pagination {
        display: block;
      }
    }

    .swiper-slide {
      margin-right: 20px !important;
    }

    .teachersSwiper .swiper-wrapper {
      transition-timing-function: linear !important;
    }

    /* ✅ Keep logo and toggler same line */
    .navbar .container-fluid {
      display: flex !important;
      justify-content: space-between !important;
      align-items: center !important;
    }
     .logo .swiper-slide img {
   width: 100%;
   /* Image takes full width of its slide */
   height: auto;
   max-width: 250px;
   /* Limit individual image size within the slide */
   margin: 0 auto;
   /* Center image within the slide */
   border-radius: 8px;
   /* Rounded corners for slider images */
   box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
   /* Subtle shadow for depth */
 }

 #recaptcha_token {
    display: none !important;
}