*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

  /* Left Social Icons Styling */
  .social-icons {
    position: fixed;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: 1000;
  }
  .social-icons a {
    font-size: 20px;
    display: block;
    margin: 10px 0;
    background: #fff;
    padding: 10px;
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
    text-align: center;
    width: 50px;
    height: 50px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
  }
  /* .social-icons .fa-whatsapp{
     color: green;
  } */
  .social-icons a:hover {
    transform: translateX(20px);
    /* background: #007bff; */
    color: #fff;
  }

  /* Right Enquiry Button Styling */
  .enquiry-btn {
    position: fixed;
    top: 50%;
    right: 0;
    transform-origin:100% 50%;
    transform: rotate(90deg) translate(50%, 50%); 
    z-index: 1000;
    background: #3d7bd2;
    color: #fff;
    padding: 10px 20px;
    border-radius: 10px 0px 10px 0px;
    cursor: pointer;
    text-decoration: none;
    font-weight: bold;
  }
  .enquiry-btn:hover {
    background: #5a3298;
  }

  /* Popup Form Styling */
  .popup-form {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    display: none;
    z-index: 2000;
  }
  .popup-form img {
    max-width: 100%;
    border-radius: 10px;
  }
  .popup-form .form-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
  }
  .popup-form .btn-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
  }

  /* Responsive Design */
  @media (max-width: 768px) {
    .popup-form img {
      display: none;
    }
    .social-icons{
      display: none;
    }
    .enquiry-btn{
      display: none;
    }
  }





/* Navbar Styling */
nav{
  background-color: #3D7BD2;
}
.nav-heading {
  font-size: 35px;
  color: #0BC2E7;
  font-weight: 600;
  font-family: 'Segoe UI', Roboto, sans-serif;
}

.nav-heading img{
width: 80px;
height: 80px;
}

.NavBar-menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-grow: 1;
  margin-left: 200px; /* Adds space from the GALACTIC heading */
}

.NavBar-menu .navbar-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 18px;
  font-weight: 500;
  gap: 20px; /* Proper spacing between menu items */
  margin: 0; /* Resets any extra margin */
}

.NavBar-menu .nav-link {
  color: rgb(255, 255, 255);
  position: relative;
  transition: color 0.3s ease-in-out;
}

.NavBar-menu .nav-link:hover {
  color: #FFDA46;
}

/* Add underline hover effect */
.NavBar-menu .nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #FFDA46;
  transition: width 0.3s ease-in-out;
}

.NavBar-menu .nav-link:hover::after {
  width: 100%;
}

nav .d-flex {
  display: flex;
  align-items: center;
  gap: 15px;
}

.admin-login{
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.admin-login i {
  font-size: 25px;
  color: #ffffff;
  transition: color 0.3s ease-in-out;
}

.admin-login i:hover {
  color: #000000;
}

nav .btn:hover{
  border: 1px solid #ffffff;
  background-color: transparent;
}

nav .btn a{
  text-decoration: none;
  color: #ffffff;
}

/* Sidebar Styling */
.sidebar {
  position: fixed;
  top: 0;
  left: -100%;
  width: 250px;
  height: 100%;
  background-color: #010101;
  box-shadow: 2px 0 5px rgba(0, 0, 0, 0.2);
  transition: left 0.3s ease-in-out;
  padding: 20px;
  z-index: 9999;
}

.sidebar.open {
  left: 0;
}

.sidebar .close-sidebar {
  position: absolute;
  top: 10px;
  right: 15px;
  color: white;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}

.sidebar-menu {
  list-style: none;
  padding: 0;
}

.sidebar-menu li {
  margin: 20px 0;
}

.sidebar-menu a {
  text-decoration: none;
  color: rgb(255, 255, 255);
  font-size: 18px;
  font-weight: 500;
  transition: color 0.3s ease-in-out;
}

.sidebar-menu a:hover {
  color: #FFDA46;
}


/* Responsive */
@media (max-width: 768px) {
  .NavBar-menu {
    display: none; /* Hide main menu on mobile */
  }

  .sidebar-toggler {
    display: block;
  }
  nav .d-flex {
    flex-direction: column;
    gap: 10px; /* Stack buttons on mobile */
  }
  .navbar-nav .nav-link {
    transition: color 0.3s ease;
  }
  
  .navbar-nav .nav-link:hover {
    color: #0bc2e7; /* Change color on hover */
  }
}
/* navbar close */


.main-banner {
    background-image: url('image/banner.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover; /* Image ko pura cover karne ke liye */
    filter: blur(0);
    padding: 100px;
    width: 100%;
    height: 600px;
}

.main-banner h1{
    font-size: 50px;
    /* font-weight: 600; */
    color: red;
    font-family: "Itim", cursive;
    font-weight: 400;
    font-style: normal;
    margin-bottom: 20px;
}
.main-banner h2{
  
    font-size: 35px;
    font-weight: 400;
    color: rgb(57, 55, 55);
    margin-bottom: 20px;
}
.main-banner img{
    width:400px;
    height:360px;
}
.call-now button{
   border-radius: 8px;
}
.call-now button a{
  text-decoration: none;
  color: black;
}

/* icons all school css */
.icon-section {
  text-align: center;
  padding: 50px 10px 20px 10px;
}
.icon-section i {
  font-size: 40px;
  color: #3D7BD2;
}
.icon-title {
  font-weight: bold;
  color: #492D37;
  margin-top: 10px;
}
.icon-subtitle {
  color: #7a7373;
}
.icon-item {
  transition: transform 0.3s ease;
}
.icon-item:hover {
  transform: translateY(-5px);
}

/* Media query for mobile */
@media (max-width: 768px) {
  .icon-section .icon-item {
      flex: 0 0 50%; /* Two icons per row */
      max-width: 50%; /* Two icons per row */
      margin-bottom: 20px;
  }
}



/* Apply for admission css */
.admission-section {
    height: 500px;
    max-width: 1300px;
    display: flex;
  }
  .left-column, .right-column {
    background-size: cover;
    background-position: center;
  }
  .left-column {
    width:50%;
    background-image: url('image/students-image.png'); /* Placeholder for the left image */
  }
  .right-column {
    width: 50%;
    background-image: url('image/pre-school-students.png'); /* Placeholder for the right image */
    color: #fff;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .right-column-overlay {
    background-color: rgba(0, 0, 0, 0.6); /* Dark overlay for better text readability */
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
  }
  .content-box {
    text-align: center;
    z-index: 2; /* Ensure content is above overlay */
  }
  .content-box h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: bold;
  }
  .content-box p {
    margin-bottom: 15px;
    font-size: 1.1rem;
  }
  .content-box .btn-apply {
    background-color: #ff3d2e;
    color: #fff;
    padding: 10px 20px;
    font-size: 1.1rem;
    border: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
  }
  .content-box .btn-apply:hover {
    background-color: #ef1a0b;
  }
 
 @media (max-width:768px){
    
    .content-box h2{
       font-size: 28px;
    }      

 }





  /* about us galactic  */

  .about-section {
    padding: 30px;
    background-color: #fff;
}

.about-section .container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.about-section .row {
    display: flex;
    flex-wrap: wrap;
}

.about-section .col {
    flex: 1;
    padding: 20px;
}

.about-section .left-col {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-section .main-image img {
    max-width: 100%;
    border-radius: 50%;
}

.small-image {
    position: absolute;
    bottom: -10px;
    left: 20px;
}

.small-image img {
    width: 200px;
    border: 18px solid #fff;
    border-radius: 50%;
}
.bg-shape{
    position: absolute;
    top:0px;
    left:30px;
}
.bg-shape img{
  width: auto;
  animation: moveImage 3s ease-in-out infinite;
}

/* Animation Code */
@keyframes moveImage {
  0% {
      transform: translate(0, 0);
  }
  50% {
      transform: translate(10px, 10px); /* Right and down movement */
  }
  100% {
      transform: translate(0, 0); /* Back to original position */
  }
}

.right-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 20px;
}

.about-tag{
    font-size: 18px;
    margin-bottom: 10px;
    font-family: var(--kidearn-special-font, "Schoolbell", cursive);
    color:  #3D7BD2;
}

.caprasimo-regular {
  font-family: "Caprasimo", Static;
  font-weight: bold;
  font-style: normal;
}


.about-section h3 {
    color: #492D37;
    font-size: 30px;
    line-height: 1.25em;
    font-weight: bold;
    margin-bottom: 15px;
}

.about-section p {
    color: #949699;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 20px;
}

.about-section .feature {
    display: flex;
    /* align-items: center; */
    justify-content: center;
    margin-bottom: 20px;
}

.about-section .feature-icon {
    font-size: 40px;
    margin-right: 15px;
    color: #3D7BD2;
}
.about-section .feature-icon i:hover{
    transform: rotate(380deg);
}

.feature-text h3 {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.feature-text p {
    color: #949699;
    font-weight: 500;
    font-size: 15px;
}

.learn-more {
    width: 200px;
    background-color: #3D7BD2;
    color: #fff;
    padding: 15px 15px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
}

.learn-more:hover {
    background-color: #171515;
    transition: 0.3s;
}

@media (max-width: 768px) {
  .about-section{
    display: block;
    padding: 10px 10px 50px 10px;
    row-gap: 20px;
  }
  .about-section .row {
      flex-direction: column;
  }

  .about-section .left-col {
      display: flex;
      flex-direction: column;
      align-items: center;
      position: relative;
  }

  .about-section .main-image img {
      width: auto;
      border-radius: 50%;
      margin-bottom: 10px;
  }

  .small-image {
    display: block;
    position: absolute;
    bottom: -60px;
    left: 100px;
    transform: translate(-50%, 0);
    width: 60px;
    /* border: 8px solid #fff; */
    border-radius: 50%;
  }


  .small-image img {
    width: 160px;
    border: 18px solid #fff;
    border-radius: 50%;
}
  .bg-shape {
    display: block;
    position: absolute;
    top: -50px;
    right: 7px;
    width: 115px;
  }

  .bg-shape img {
      width: 100px;
      animation: moveImage 3s ease-in-out infinite;
  }
  .about-section .right-col{
    margin-top: 50px;
    padding:0;
  }
}


/* about us section end */

/* services section css start */
.services-section {
  background-color: #f1f5f8;
}

.text-orange {
  color: #f97d3b;
}

.section-title {
  font-weight: bold;
  color: #3c455c;
  font-family: "Itim", cursive;
}

.service-card {
  border-radius: 50px;
  padding: 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: #fff;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
}

.bg-teal {
  background-color: #5daaa5;
}

.bg-orange {
  background-color: #f97d3b;
}

.bg-white {
  background-color: #de1414;
  color: #3c455c;
}

.service-image {
  border-radius: 10%;
  width: 250px;
  height: 200px;
  object-fit: cover;
  margin-bottom: 20px;
}

.service-title {
  font-size: 1.25rem;
  font-weight: bold;
}

.service-age {
  color: #ffffff;
  font-size: 0.9rem;
}

.service-description {
  font-size: 0.9rem;
  color: #eef0f1;
}

.service-arrow {
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  /* background-color: #f97d3b; */
  border-radius: 35%;
  padding: 8px 12px;
  color: #fff;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.service-arrow:hover {
  background-color: #0b0806;
}


/* services section css end */

.benefits-icons, .stats {
  padding: 60px;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #e6330f;
  font-weight: 600;
  margin-bottom: 10px;
  text-align: center;
  font-family: var(--kidearn-heading-font, cursive);
}

.section-title {
  font-size: 2.5rem;
  /* font-weight: 700; */
  color: #333;
  text-align: center;
  line-height: 1.2;
  margin-bottom: 20px;

}

.benefits-icons .icon-wrapper {
  text-align: center;
  margin-bottom: 30px; /* Adds gap between rows */
}

.benefits-icons .icon {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background-color: #f2f2f2;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  transition: transform 0.3s ease;
  margin: 0 auto;
}

.benefits-icons .icon:hover {
  transform: scale(0.9);
}

.benefits-icons .icon-wrapper p {
  margin-top: 10px;
  font-size: 1rem;
  font-weight: bold;
  color: #333;
}

/* Responsive Design */

/* Tablet View */
@media (max-width: 992px) {
  .benefits-icons .icon-wrapper {
    flex: 0 0 33.3333%; /* Three icons per row */
    max-width: 33.3333%;
  }

  .benefits-icons .row {
    gap: 20px; /* Adds gap between icons */
  }
}

/* Mobile View */
@media (max-width: 768px) {
  
  .benefits-icons, .stats {
    padding: 10px;
    
  }

  .benefits-icons .icon-wrapper {
    flex: 0 0 50%; /* Two icons per row */
    max-width: 40%;
  }

  .benefits-icons .row {
    gap: 10px; /* Reduces gap for mobile view */
  }
  .services-section {
    padding: 10px;
  }
}

/* counter secion css start */
.counter-stats-section {
  position: relative;
  background-color: #FAF5F2;
  /* background-image: url('image/curley-shape.jpg'); */
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  margin-top: 20px;
  /* margin-bottom: 50px; */
}
.stats .stat-item {
  text-align: center;
}

/* Desktop border styles */
.stat-enrolled {
  border-right: 2px dotted #F25334;
}
.stat-completed {
  border-right: 2px dotted #26A6A1;
}
.stat-satisfaction {
  border-right: 2px dotted #2390FF;
}
/* .stat-instructors {
  border-right: 1px dotted #FB9230;
} */

/* Remove border on mobile */
@media (max-width: 576px) {
  .stat-enrolled,
  .stat-completed,
  .stat-satisfaction,
  .stat-instructors {
      border-right: none;
  }
}

.stats .stat-item h3 {
  font-size: 2rem;
  font-weight: bold;
}
.stats .stat-item p{
   font-size: 16px;
   font-weight: 500;
}

.stats .icon {
  transition: transform 0.6s;
}

.stats .icon:hover {
  transform: rotateY(360deg); /* Flip effect */
}


.enroll-section{
    padding-top: 50px;
    padding-bottom: 50px;
}
.enroll-row{
  background-color: #3D7BD2;
  padding: 20px 10px 0px 20px;
  border-radius: 30px;
}

.enroll-image {
  position: relative;
  display: inline-block; /* Ensures the container takes the space of the images */
}

.enroll-image .enroll-child {
  width: 300px;
  height: 400px;
  border-radius: 10px;
  position: relative; /* Brings it in front of the shape */
  z-index: 1; /* Ensures it stays above the shape */
}

.enroll-image .enroll-cta-shape {
  width: 550px; /* Slightly larger than the child image to show as a background */
  height: 350px;
  position: absolute;
  border-radius: 30px;
  top: 50px; /* Adjust this value to move shape vertically */
  left: -10px; /* Adjust this value to move shape horizontally */
  z-index: 0; /* Places the shape behind the child image */
  opacity: 0.9; /* Optional: Makes the background shape slightly transparent */
}

@media (max-width: 992px){
  .enroll-image .enroll-cta-shape{
    width: 360px;
  }
  /* .enroll-section{
    padding: 10px 0px 10px 0px;
  } */
}

.enroll-section .enroll-content {
  color: white;
  padding: 20px;
  border-radius: 10px;
}
.enroll-content h2{
   font-size: 40px;
   font-family: "Itim", cursive;
   font-weight: 700;
}
.enroll-content p{
   font-size: 16px;
   font-weight: 500;
}
.enroll-content button{
   border: none;
   outline: none;
   margin-top: 20px;
   padding: 10px 30px 10px 30px;
   background-color: #FFAA23;
   border-radius: 8px;
   
}
.enroll-content button:hover{
   background-color: #000;
   transition: 0.5s;
}
.enroll-content button a{
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
}


 /* Features Section Styling */
    .features-section {
        background-color: #122240;
        color: white;
        padding: 50px 20px;
    }

    .feature-card {
        text-align: left;
        color: #7ED957;
    }
    .feature-card i{
        font-size: 25px;
    }

    .feature-card h5 {
        color: white;
        font-weight: bold;
        margin-top: 15px;
    }

    .feature-card p {
        color: #d1d1d1;
        margin: 10px 0;
    }

    .feature-card a {
        color: #7ED957;
        text-decoration: none;
    }

    .feature-card a:hover {
        text-decoration: underline;
    }

    /* Features Section Styling end*/


  /* info section css */
    .info-section {
        display: flex;
        flex-wrap: wrap;
        text-align: center;
        background-color: #1C2E51;
        color: #fff;
    }
    
    .info-box {
        flex: 1 1 33%;
        padding: 50px;
        position: relative;
        background-size: cover;
        background-position: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        color: white; /* Text color */
        overflow: hidden;
    }
    
    /* Overlay effect */
    .info-box::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.5); /* Black overlay with 50% opacity */
        z-index: 1;
    }
    
    .info-box * {
        position: relative;
        z-index: 2; /* Ensures text appears above the overlay */
    }

    .info-box h3 {
        font-weight: bold;
        font-size: 24px;
        margin-bottom: 15px;
    }

    .info-box p {
        font-size: 16px;
        line-height: 1.5;
        color: #ccc;
    }

    /* Individual background images */
    .bg-1 {
        background-image: url('image/university.jpg'); /* Replace with your actual image path */
        
    }
    
    .bg-2 {
        background-image: url('path/to/image2.jpg'); /* Replace with your actual image path */
    }
    
    .bg-3 {
        background-image: url('image/college-students.jpg'); /* Replace with your actual image path */
    }

 
  /* Event section css  */

  .event-section {
    padding: 40px 0;
    text-align: center;
  }
  .event-section h2 {
    font-weight: bold;
    color: #333;
  }
  .event-section hr {
    width: 80px;
    border: 2px solid #d70042;
    margin: 0 auto 30px;
  }
  .event-card {
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s;
  }
  .event-card:hover {
    transform: scale(1.05);
  }
  .event-date {
    background-color: #0E1728;
    color: #fff;
    padding: 10px;
    text-align: center;
  }
  .event-date h4 {
    margin: 0;
    font-size: 24px;
  }
  .event-date span {
    font-size: 14px;
  }
  .event-content {
    padding: 20px;
  }
  .event-title {
    font-weight: bold;
    font-size: 18px;
    color: #333;
  }
  .event-details {
    color: #888;
    font-size: 14px;
    margin-top: 10px;
  }
  .view-all-events {
    color: #d70042;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
  }
  .view-all-events:hover {
    text-decoration: underline;
  }



/* cards section css  */
/* Heading styles */
.heading {
  text-align: center;
  font-size: 2.5rem;
  font-weight: bold;
  color: #FF6B6B;
  margin-bottom: 50px;
  font-family: "Itim", cursive;
}
.heading span {
  color: #333;
}

/* Cards container */
.Curriculum .row {
  display: flex;
  flex-wrap: wrap; /* Ensure cards flow into multiple rows */
  justify-content: space-between;
  align-items: stretch; /* Ensure all cards have equal height */
}

/* Individual cards */
.Curriculum .card {
  display: flex;
  flex-direction: column; /* Ensure content is vertically aligned */
  justify-content: space-between; /* Space between content and footer */
  align-items: center; /* Center content horizontally */
  flex-grow: 1;
  border: none;
  border-radius: 10px;
  color: #fff;
  text-align: justify;
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%; /* Force equal height */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow for better visuals */
}

.Curriculum .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2); /* Enhance shadow on hover */
}

/* Card colors */
.card-green { background-color: #28A745; }
.card-red { background-color: #FF6B6B; }
.card-purple { background-color: #6F42C1; }
.card-blue { background-color: #17A2B8; }
.card-pink { background-color: #FF4B8B; }
.card-yellow { background-color: #FFC107; }

/* Icon styles */
.icon {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .Curriculum .card {
    padding: 15px;
    font-size: 0.9rem;
  }

  .icon {
    font-size: 1.5rem;
  }

  .heading {
    font-size: 2rem;
  }
}

/* Google review slider css */
.google-heading {
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  margin-top: 60px;
  font-family: Arial, sans-serif;
}

.google-heading span {
  font-family: Arial, sans-serif;
  display:inline-block;
  margin: 0;
  padding: 0;
}

/* .google-heading::after {
  content: "";
  display: block;
  width: 60%;
  height: 3px;
  background-color: #ccc;
  margin: 0.5rem auto 0;
  border-radius: 2px;
  opacity: 0.6;
} */

.carousel img {
  width: 50px;
  max-height: 50px;
  border-radius: 50%;
  margin-right: 1rem;
  overflow: hidden;
}
.carousel-inner {
  padding: 1em;
}
.card-title{
  color: black;
  text-align: left;
}
.card-text{
  color:rgb(61, 59, 59);
}

@media screen and (min-width: 576px) {
  .carousel-inner {
    display: flex;
    width: 90%;
    margin-inline: auto;
    padding: 1em 0;
    overflow: hidden;
  }
  .carousel-item {
    display: block;
    margin-right: 0;
    flex: 0 0 calc(100% / 2);
  }
}
@media screen and (min-width: 1024px) {
  .carousel-item {
    display: block;
    margin-right: 0;
    flex: 0 0 calc(100% / 3);
  }
}
.carousel .card {
  margin: 0 0.5em;
  border: 0;
}

.carousel-control-prev,
.carousel-control-next {
  width: 3rem;
  height: 3rem;
  background-color: rgb(30, 27, 27);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}



/* swipper google review slider css */
.swiper {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  padding: 20px 0;
}
.swiper-wrapper{
  padding-bottom: 20px;
}

.swiper-slide {
  display: flex;
  flex-direction: column;
  /* background: #fff; */
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 40px;
  box-sizing: border-box;
  height: auto;
}

.review-header {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.profile-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 10px;
}

.review-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
}

.reviewer-name {
  font-weight: bold;
  font-size: 16px;
}

.google-icon {
  width: 20px;
  height: 20px;
  margin-left: 5px;
}

.review-rating {
  color: #f4c430; 
  margin: 10px 0;
}

.review-content {
  color: #555;
  font-size: 14px;
  line-height: 1.5;
}

.see-more {
  color: #007BFF;
  text-decoration: none;
  cursor: pointer;
}

.swiper-pagination-bullet {
  background: #007BFF;
}
.swiper-button-prev{
  left: 0;
}
.swiper-button-next{
  right: 0;
}
@media (max-width: 768px) {
  .swiper-slide {
    padding: 15px;
  }
  .swiper-button-prev, .swiper-button-next{
    display: none;
  }
}
/* swipper google review slider css */

/* FAQ Section */
.galactic-faq{
  background-color: #ECF3FF;
  padding: 20px 10px 20px 10px;
}
.galactic-heading {
  font-size: 2.5rem;
  color: #ff3366;
  margin-bottom: 1rem;
}

.galactic-faq .accordion-button {
  background-color: #3D7BD2;
  color: #ffffff;
  font-weight: bold;
  padding: 1rem;
  border: none;
}
.galactic-faq .accordion-button:hover{
   background-color: #4c8ae1;
   color: white;
   transition: 0.5s;
}
.galactic-faq .accordion-body{
  text-align: left;
}
.galactic-faq .accordion-button:focus {
  box-shadow: none;
}

.galactic-faq .accordion-item {
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  margin-bottom: 1rem;
}

/* contact section css start */
.contact-section {
  background-image: url('image/form-bg.jpg');
  background-size: cover;
  background-position: center;
  padding: 50px 0;
}

/* Heading styling */
.contact-section h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #1e2b53;
  font-weight: 700;
}

.contact-section h2 span {
  color: #f06c50;
  font-family: cursive;
  display: block;
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 10px;
}

/* Form styling */
.contact-form {
  max-width: 800px;
  margin: 0 auto;
  padding: 10px;
  /* background: rgba(255, 255, 255, 0.9); */
  border-radius: 10px;
  /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
}

.contact-form .form-control {
  border: 1px solid #f6f5f5;
  border-radius: 5px;
  padding: 15px;
  font-size: 1rem;
}
.contact-form .btn {
  background-color: #f06c50;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  padding: 12px 30px;
  border: none;
  border-radius: 10px;
  transition: background 0.3s ease;
}

.contact-form .btn:hover {
  background-color: #1a1818;
}

/* contact section css start */

/* Links Section */
.city-section {
  text-align: center;
  padding: 10px 20px 20px 20px;
}
.city-section h2 {
  font-family: "Itim", cursive;
  font-size: 36px;
  padding-bottom:30px;
  font-weight: normal;
  color: #3d7bd2;
}
.city-list ul {
  list-style-type: disc;
  padding-left: 20px;
  color: #3d7bd2;
}
.city-list ul li {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.9;
}
.city-list ul li a{
  text-decoration: none;
  color: #007acc;
}
.city-list ul li a:hover {
  color: #fb0b0b;
}



/* Recent blog section css */
.recent-blog {
  background-color: #f9f9f9;
}

.blog-section-title {
  text-align: center;
  font-size: 2.5rem;
  color: #333;
}

.blog-section-title .highlight {
  color: #ff7600;
}

.blog-section-description {
  text-align: center;
  color: #777;
  font-size: 1rem;
  margin-bottom: 2rem;
}

.blog-card {
  border: 1px solid #ddd;
  border-radius: 8px;
  background-color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.blog-img {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #ddd;
}

.blog-img img {
  width: 100%;
  height: auto;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.date-box {
  position: absolute;
  bottom: 0px;
  left: 0px;
  background-color: #03c7f8;
  color: #fff;
  padding: 10px;
  border-radius: 2px;
  text-align: center;
  font-size: 0.85rem;
}

.date-box .date {
  font-size: 1.5rem;
  font-weight: bold;
}

.blog-title {
  font-size: 1.2rem;
  color: #333;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.blog-desc {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 1rem;
}

.blog-footer {
  font-size: 0.8rem;
  color: #777;
}

.recent-blog .btn-primary {
  background-color: #ff7600;
  padding: 10px 10px 10px 10px;
  border: none;
}

.recent-blog .btn-primary:hover {
  background-color: #e66a00;
}

.meta a{
  text-decoration: none;
}

/* Recent blog section css end */


/* Newsletter section css */
.newsletter-section{
  background: #FDEEE9;
}
.newsletter-section .newsletter-left-column {
  background-image: url('image/newsletter-shape-1.png'); /* Replace with your image URL */
  background-size: 50px 50px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left;
  color: #492D37;
  padding: 30px;
}

.newsletter-section .newsletter-right-column {
  background-image: url('image/newsletter-shape-2.png'); /* Replace with your image URL */
  background-size: 50px 50px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.newsletter-left-column h2{
  font-size: 35px;
}

.newsletter-section .subscribe-form {
  max-width: 500px;
  width: 100%;
  background-color: #ffffff;
  border-radius: 8px;
  padding: 5px;
}

.newsletter-section .subscribe-form input {
  display: block;
  width: 100%;
  border: 1px solid #ffffff;
  /* height: 60px; */
  padding-left: 25px;
  /* border-radius: 5px; */
  outline: none;
  color: #1b0238;
}


.newsletter-section .subscribe-form button {
  width: 200px;
  padding: 10px 10px 10px 10px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 500;
}


@media (max-width: 768px) {
  .newsletter-section .newsletter-left-column{
    width: 100%;
    text-align: center;
    background-image: none;
    padding: 10px;
    
  }
  .newsletter-section .py-5{
    padding-top: 0px !important;
    padding-bottom: 0px !important;
  }
  .newsletter-left-column h2{
    font-size: 22px;
  }
  .newsletter-section .newsletter-right-column{
    width: 100%;
    background-image: none;
    padding: 10px;
  }
  .newsletter-section .subscribe-form {
    background-color: transparent;
    flex-direction: column;
    row-gap: 20px;
  }
  .newsletter-section .subscribe-form input{
    height: 60px;
    border-radius: 5px;
  }
  .newsletter-section .subscribe-form button{
    width: 100%;
    padding: 15px 10px 15px 10px;
  }

}





/* Footer Section */
.footer {
  background-color: #000000;
  padding: 40px 20px;
  color: #333;
  border-top: 2px solid #eee;
}


.footer h3 {
  font-size: 1.2em;
  color: #FA9226;
  margin-bottom: 10px;
  position: relative;
}

.footer h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  height: 3px;
  width: 30px;
}

/* .footer .useful-links h3::after { background-color: #ff4d4d; }
.footer .quick-links h3::after { background-color: #a64dff; }
.footer .latest-blog h3::after { background-color: #4caf50; }
.footer .extra-section h3::after {text-align: center; background-color: #009688; } */

.footer ul {
  list-style: none;
  padding-left: 0; /* Removes default padding */
  margin-top: 10px;
}

.footer ul li {
  margin-bottom: 8px;
}

.footer ul li a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s;
}

.footer ul li a:hover {
  color: #FA9226;
}

.footer .latest-blog .blog-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.footer .latest-blog .blog-item img {
  width: 60px;
  height: 60px;
  margin-right: 10px;
  object-fit: cover;
}

.footer .latest-blog .blog-item a {
  color: #ffffff;
  font-weight: bold;
  font-size: 0.9em;
  text-decoration: none;
  display: block;
}

.footer .latest-blog .blog-item a:hover{
  color: #FB9420;
}

.footer .extra-section{
  text-align: center;
}

.footer .extra-section img {
  width: 100%;
  height: auto;
  max-width: 250px;
  margin-top: 10px;
}

.footer-bottom {
  /* display: flex;
  flex-wrap: wrap; */
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #eee;
  font-size: 0.9em;
}

.footer .copy-right-text{
  color: #ffffff;
}
.footer .copy-right-text span a{
  text-decoration: none;
  color: #FA9226;
}

.footer .social a {
  margin: 0 10px;
  color: #ffffff;
  font-size: 1.5em;
  transition: color 0.3s;
}

.footer .social a:hover {
  color: #FA9226;
}


.privacy-policy a{
   text-decoration: none;
   color: white;
}

.privacy-policy a:hover{
  color: #3D7BD2;
}

/* footer section css end */


/* brands trusted section  */
.galactic-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.galactic-trust-section {
  display: flex;
  align-items: center;
  font-size: 24px;
  font-weight: 500;
  color: #050505;
}

.galactic-trust-section::before,
.galactic-trust-section::after {
  content: "";
  flex: 1;
  border-top: 1px solid #f05209;
  margin: 0 15px;
}


.galactic-slider-container {
  overflow: hidden;
  width: 100%;
  /* max-width: 120; */
  padding: 50px 10px 50px 10px;
  margin: auto;
  position: relative;
}

.galactic-slider-wrapper {
  display: flex;
  transition: transform 0.5s ease;
  will-change: transform;
}

.galactic-slide {
  min-width: 20%; /* To show 5 images at a time */
  display: flex;
  justify-content: center;
  align-items: center;
  /* opacity: 0.5; */
}

.galactic-slide img {
  max-width: 150px;
  height: auto;
  border: 1px solid rgb(212, 212, 212);
  border-radius: 10px;
  /* opacity: 1;
  filter: grayscale(80%); */
}

/* .galactic-slide:hover {
  opacity: 1;
  filter: grayscale(0%);
} */

/* Franchise page css styling is here */

.franchise-main-banner {
  background-image: url('image/franchise-main-banner.png');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover; /* Image ko pura cover karne ke liye */
  filter: blur(0);
  padding: 100px;
  width: 100%;
  height: 500px;
}

.franchise-main-banner h1{
  font-size: 50px;
  width: 50%;
  /* font-weight: 600; */
  color: red;
  font-family: "Itim", cursive;
  font-weight: 400;
  font-style: normal;
  margin-bottom: 20px;
}
.franchise-main-banner h2{
  width: 50%;
  font-size: 14px;
  font-weight: 400;
  line-height: 25px;
  color: rgb(57, 55, 55);
  margin-bottom: 20px;
}

.franchise-main-banner button{
  padding: 10px 20px 10px 20px;
  margin-top: 20px;
  font-size: 16px;
  font-weight: bold;
}
.franchise-main-banner button a{
  text-decoration: none;
  color: rgb(19, 18, 18);
}

    





 /* Responsive adjustments for mobile */
@media (max-width: 768px) {
    .main-banner {
        padding: 20px; /* Reduce padding for smaller screens */
        height: 250px; /* Adjust height for mobile */
    }
    .main-banner h1{
        font-size: 35px;
        width: 250px;
        margin-top: 30px;
        margin-bottom:25px;
    }
    .main-banner h2{
        font-size: 20px;
        width: 250px;
        /* margin-bottom:15px; */
    }
    .section-title{
      font-size: 22px;
      line-height: 28px;
    }
    .main-banner img{
        display: none;
    }
    .admission-section {
        flex-direction: column;
        height: auto;
      }
      .content-box h2{
         font-size: 30px;
      }
      .admission-section .left-column, .right-column {
        width: 100%;
        height: 450px;
      }
      .service-card{
        padding: 10px 10px 20px 10px;
      }
      .info-box {
        flex: 1 1 100%;
    }
    .enroll-row{
       border-radius: 0px;
    }
    .galactic-slide img {
      max-width: 60px;
  }
    .galactic-links .galactic-column {
      text-align: center;
  }
  .galactic-footer .col-lg-4 {
      text-align: center;
  }
  .footer .extra-section{
    text-align: left;
  }
  /* .footer .container {
    flex-direction: column;
    align-items: left;
} */
/* .footer .useful-links, .footer .quick-links, .footer .latest-blog, .footer .extra-section {
    margin-bottom: 20px;
    width: 100%;
    text-align: left;
}
.footer .latest-blog .blog-item {
    justify-content: left;
}
.footer-bottom {
    flex-direction: column;
    text-align: center;
}
.footer-bottom div {
    margin-bottom: 10px;
} */


/* franshise page mobile css start */
.franchise-main-banner {
  padding: 20px; /* Reduce padding for smaller screens */
  height: auto; /* Adjust height for mobile */
}
.franchise-main-banner h1{
  width: 100%;
  font-size: 35px;
  margin-top: 30px;
  margin-bottom:25px;
}
.franchise-main-banner h2{
  width: 100%;
  font-size: 14px;
  line-height: 20px;
  /* margin-bottom:15px; */
}
.franchise-main-banner button{
  margin: 0;
}

}

@media only screen and (min-width: 769px) and (max-width: 1024px) {

 .franchise-main-banner h1,h2{
    width: 100%;
 }
 .franchise-main-banner button{
   margin: 0;
 }
   
}


/* Why choose franchise section css and franchise future plan css is here!!!! */
.galactic-section {
  padding: 50px 15px;
  background-color: #f9f9f9;
  text-align: center;
}

.galactic-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
}

.galactic-heading span {
  color: #0DCAF0;
}

.galactic-description {
  font-size: 1rem;
  color: #555;
  text-align: left;
  margin: 40px auto 40px;
  max-width: 1100px;
}

.galactic-card {
  background: #fff;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease;
}

.galactic-card img {
  width: 200px;
  height: 100px;
  margin-bottom: 15px;
}

.galactic-card h5 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
}

.galactic-card p {
  font-size: 0.9rem;
  color: #666;
}

.galactic-card:hover {
  transform: translateY(-10px);
}


/* franchise preschool section css */
.galactic-plant-section {
  padding: 50px 15px;
  background-color: #f9f9f9;
  text-align: center;
}
.galactic-plant-section .row{
  padding-top: 40px;  
}
.galactic-plant-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
}

.galactic-plant-heading span {
  color: #0DCAF0;
  font-size: 28px;
}

.galactic-plant-description {
  font-size: 1rem;
  color: #555;
  text-align: left;
  /* margin: 40px auto 40px;
  max-width: 1100px; */
}

.preschool-column2 img{
  width: 100%;
  height: 300px;
  border-radius: 8px;
}

@media (max-width: 768px) {
  .galactic-card {
      margin-bottom: 20px;
  }
  .galactic-plant-heading {
    font-size: 2rem;
  }
  .galactic-plant-heading span{
    font-size: 1.5rem;
    line-height: 18px;
  }
  .preschool-column1{
    order: 2;
    padding-top: 10px;
  }
  .preschool-column2{
    order: 1;
  }
  .preschool-column2 img{
    height: 250px;
  }
}


/* location html page css */
.main-banner-location {
  background-image: url('image/bg-play-area.jpg');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover; /* Image ko pura cover karne ke liye */
  filter: blur(0);
  padding: 50px 20px 20px 20px;
  width: 100%;
  height: 500px;
}

.galactic-location{
  text-align: right;
}
.main-banner-location h1{
  font-size: 50px;
  /* font-weight: 600; */
  color: red;
  font-family: "Itim", cursive;
  font-weight: 400;
  font-style: normal;
  margin-bottom: 20px;
}
.main-banner-location h2{
  font-size: 35px;
  font-weight: 400;
  color: rgb(57, 55, 55);
  margin-bottom: 20px;
}
.main-banner-location img{
  width:300px;
  height:260px;
}
.call-now button{
 border-radius: 8px;
}
.call-now button a{
text-decoration: none;
color: black;
}

/* city card section css  */
.city-card-section {
  background-color: #f8f9fa;
  padding: 50px;
}
.city-card-section a{
  text-decoration: none;
}
.city-card {
  background-color: #fff;
  border: none;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.city-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}
.city-card:hover .city-name{
   color: #007BFF;
}
.city-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  border:4px solid #0BC2E7;
  justify-content: center;
  margin-top: -30px;
  background-color: #fff;
}
.city-card:hover .city-icon{
  border: 4px solid #007BFF;
}
.city-icon img {
  width: 40px;
  height: 40px;
}
.city-name {
  font-size: 1.2rem;
  font-weight: bold;
  color: #0BC2E7;
  margin-top: 10px;
}
.city-card a {
  text-decoration: none;
  color: inherit;
}
.city-card a:hover .city-name {
  text-decoration: underline;
}


@media (max-width:768px) {
  .main-banner-location{
    padding: none;
  }
  .galactic-location{
    text-align: left;
  }
  .main-banner-location h1{
    font-size: 40px;
  }
  .main-banner-location h2{
    font-size: 30px;
  }
  
}







/* state html page css */
.main-banner-state {
  background-image: url('image/state_page_banner.jpg');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover; /* Image ko pura cover karne ke liye */
  filter: blur(0);
  padding: 50px 20px 20px 20px;
  width: 100%;
  height: 500px;
}

/* .main-banner-state{
  text-align: right;
} */
.main-banner-state h1{
  font-size: 50px;
  /* font-weight: 600; */
  color: rgb(21, 21, 21);
  font-family: "Itim", cursive;
  font-weight: 400;
  font-style: normal;
  margin-bottom: 20px;
}
.main-banner-state h2{
  font-size: 35px;
  font-weight: 400;
  color: rgb(57, 55, 55);
  margin-bottom: 20px;
}
.review-info ul li{
    font-size: 28px;
    color: #f97d3b;
    font-weight: 600;
}
.main-banner-state button{
  margin-top: 10px;
  border: none;
  padding: 15px 30px 15px 30px;
  background-color: #f97d3b;
  color: rgb(255, 255, 255);
  border-radius: 3px;
  font-size: 18px;
  font-weight: bold;
}
.main-banner-state button a{
 text-decoration: none;
}




/* Branches Section */
.branches-section {
  text-align: center;
  padding: 40px;
  background-color: #f9fbfe;
}

.branches-section h1 {
  font-size: 2.5rem;
  color: #00bcd4;
  margin-bottom: 10px;
}

.branches-section h2 {
  font-size: 1.8rem;
  color: #3a3a3a;
  margin-bottom: 40px;
}

.branches {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  justify-items: center;
}

.branch-card {
  align-items: center;
  background: #ffffff;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 350px;
  padding: 20px;
  text-align: left;
  transition: transform 0.2s, box-shadow 0.2s;
}

.branch-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.branch-card h3 {
  font-size: 1.4rem;
  color: #00bcd4;
  margin-bottom: 10px;
}

.branch-card p {
  font-size: 0.9rem;
  color: #181818;
  margin: 15px 0;
}

.branch-card .icon {
  color: #00BCD4;
  font-size: 1.2rem;
  margin-right: 5px;
}

.branch-card .map-link {
  display: inline;
  align-items: center;
  font-size: 0.9rem;
  color: #007BFF;
  text-decoration: none;
  margin-top: 10px;
}

.branch-card .map-link:hover {
   color: #016ee3;
}


.branch-card .learn-more-btn {
  display: inline-block;
  margin-top: 15px;
  width: 100%;
  padding: 8px 35px 8px 35px;
  background-color: #00796b;
  color: #ffffff;
  text-align: center;
  border-radius: 5px;
  text-decoration: none;
  font-size: 0.9rem;
  transition: background-color 0.3s;
  cursor: pointer;
}

.branch-card .learn-more-btn a{
  text-decoration: none;
  color: white;
}

.branch-card .learn-more-btn:hover {
  background-color: #004d40;
}

.branch-card a{
  text-decoration: none;
}
