 body {

      font-family: 'Poppins', sans-serif;
    }
 
  .main-header {
      background: #2f2f2f;
      padding: 10px 0;
    }

    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-top: 30px;
  padding-bottom: 20px;
    }

    /* LOGO */
    .logo img {
      height: 71px;
    }

    /* NAV MENU */
    .menu {
      flex: 1;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 40px;
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .menu li a {
      color: #fff;
      font-size: 14px;
      font-weight: 400;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .menu li a:hover {
      color: #b48858;
    }

    /* PHONE BOX */
    .phone-box {
      /*border: 2px solid #b48858;*/
      background: linear-gradient(19.97deg,#986546 -11.52%,#f4d4a3 32.41%,#ffe1b3 62.19%,#b68d61 84.48%,#ab6f27 116.74%,#b06f0c 149.44%);
      border-radius: 50px;
      padding: 8px 25px;
      color: #000;
      font-size: 18px;
      font-weight: 500;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .phone-box:hover {
      background-color: #b48858;
      color: #fff;
    }

    /* RESPONSIVE */
    @media (max-width: 991px) {
      .header-inner {
        flex-direction: column;
        gap: 15px;
      }

      .menu {
        flex-wrap: wrap;
        gap: 15px;
        display: none;
      }

      .phone-box {
        margin-top: 5px;
      }
    }
 
 
 
 
 
   /*Hero Section */
    .hero-section {
      position: relative;
      background: url('../../assets/images/home-banner.jpg') center center/cover no-repeat;
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 50px 20px;
    }

    /* Overlay */
    .hero-section::before {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.5);
      z-index: 1;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 900px;
    }

    /* Top Label */
    .top-label {
      display: inline-block;
      background: #fff;
      color: #b48858;
      font-weight: 600;
      border-radius: 40px;
      padding: 15px 30px;
      margin-bottom: 20px;
      font-size: 16px;
      text-transform: uppercase;
    }

    /* Main Heading */
    .hero-content h1 {
      font-size: 48px;
      font-weight: 400;
      line-height: 1.2;
      margin-bottom: 25px;
    }

    /* Sub Heading */
    .hero-content p {
      font-size: 18px;
      font-weight: 400;
      margin-bottom: 30px;
    }

    /* Features List */
    .features {
      font-size: 16px;
      margin-bottom: 40px;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 15px 25px;
      text-align: left;
    }

    .features li {
      list-style: none;
      position: relative;
      padding-left: 25px;
    }

    .features li::before {
      content: "✔";
      position: absolute;
      left: 0;
      color: #b48858 !important;
      font-weight: bold;
    }
    
    
    
    
    /* Features List */
    .features2 {
      font-size: 16px;
      margin-bottom: 40px;
      display: flex;
      flex-wrap: wrap;
      justify-content: left;
      gap: 15px 25px;
      text-align: left;
    }

    .features2 li {
      list-style: none;
      position: relative;
      padding-left: 25px;
    }

    .features2 li::before {
      content: "✔";
      position: absolute;
      left: 0;
      color: #b48858 !important;
      font-weight: bold;
    }
    
    
    

    /* Buttons */
    .hero-buttons a {
      display: inline-block;
      border: 2px solid #b48858;
      color: #fff;
      border-radius: 50px;
      padding: 10px 25px;
      font-weight: 600;
      text-decoration: none;
      margin: 8px;
      transition: all 0.3s ease;
    }

    .hero-buttons a:hover {
      background: #b48858;
      color: #fff;
    }

    /* Responsive */
    @media (max-width: 767px) {
      .hero-content h1 {
        font-size: 30px;
      }
      .features {
        flex-direction: column;
        text-align: center;
        padding: 0 20px;
      }
      
      .features li{
          text-align: left;
      }
    }
    
    
      .about-section {
      padding: 50px 0;
      background: #fff;
    }

    .about-img {
      border-radius: 20px;
      overflow: hidden;
      height: 550px;
      object-fit: cover;
      width: 100%;
    }

    .about-content h2 {
      color: #b48858;
      font-weight: 800;
      margin-bottom: 25px;
      text-transform: uppercase;
    }

    .about-content p {
      font-size: 16px;
      line-height: 1.8;
      margin-bottom: 20px;
      text-align: justify;
    }

    .about-content h4 {
      margin-top: 30px;
      font-size: 20px;
      font-weight: 600;
    }

    .about-buttons a {
      display: inline-block;
      border: 2px solid #b48858;
      border-radius: 50px;
      padding: 10px 25px;
      color: #000;
      font-weight: 600;
      text-decoration: none;
      margin: 8px;
      transition: all 0.3s ease;
    }

    .about-buttons a:hover {
      background: #b48858;
      color: #fff;
    }

    @media (max-width: 991px) {
      .about-section {
        padding: 50px 20px;
      }

      .about-img {
        height: 400px;
        margin-bottom: 30px;
      }
      
      .features li::before {
      content: "✔";
      position: absolute;
      left: 0;
      color: #b48858 !important;
      font-weight: bold;
    }
    }
    
    
    .black {
  background: #000;
  padding-top: 50px;
  padding-bottom: 40px;
  color: #fff;
  text-align: center;
}

.crs-hdng {
  font-size: 70px;
    
}



.student-gallery {
      text-align: center;
      color: white;
    }

    .student-gallery h2 {
      font-size: 38px;
      margin-bottom: 30px;
      font-weight: 700;
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      justify-content: center;
      max-width: 1320px;
      margin: 0 auto;
    }

    .gallery-grid a {
      position: relative;
      border-radius: 10px;
      overflow: hidden;
      display: block;
    }

    .gallery-grid img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 10px;
      transition: transform 0.3s ease;
    }

    .gallery-grid a:hover img {
      transform: scale(1.05);
    }

    .caption {
      position: absolute;
      bottom: 10px;
      left: 10px;
      color: white;
      font-style: italic;
      font-size: 16px;
      text-shadow: 0 0 5px rgba(0, 0, 0, 0.7);
    }
    
    .testimonials-section {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 80px 0;
}

.section-title {
  font-size: 36px;
  /*color: #ff3b60;*/
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 10px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  justify-content: center;
  align-items: start;
}

.testimonial-item {
  background: #111;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(255, 59, 96, 0.3);
  transition: transform 0.3s ease;
}

.testimonial-item:hover {
  transform: translateY(-8px);
}

iframe {
  width: 100%;
  border: none;
  display: block;
  border: 1px solid;
}

    /*FAQ Section*/
    
    
.faq-section {
  padding: 60px 20px;
  max-width: 1100px;
  margin: auto;
}

.faq-section h2 {
  text-align: center;
  font-size: 38px;
  margin-bottom: 50px;
  font-weight: 700;
}

/* Independent columns */
.faq-columns {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.faq-column {
  flex: 1 1 48%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* FAQ items */
.faq-item {
  background: #fff;
  color: #000;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

.faq-item.active {
  background: #000;
  color: #fff;
}

.faq-question {
  padding: 18px 22px;
  font-weight: 600;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-icon {
  font-size: 22px;
  font-weight: bold;
  transition: transform 0.3s ease;
}

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

/* Answer section */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 22px;
  color: #fff;
}

.faq-item.active .faq-answer {
  padding: 18px 22px;
  max-height: 500px;
}

@media(max-width:900px){
  .faq-column {
    flex: 1 1 100%;
  }
  
  
}

/*Footer*/

.site-footer {
  background-color: #000;
  color: #fff;
  text-align: center;
  padding: 12px 0;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.back-to-top {
  position: absolute;
  right: 20px;
  top: 77%;
  transform: translateY(-50%);
  text-decoration: none;
  color: #000;
  font-size: 22px;
  font-weight: bold;
  transition: transform 0.3s ease, color 0.3s ease;
  background: linear-gradient(19.97deg,#986546 -11.52%,#f4d4a3 32.41%,#ffe1b3 62.19%,#b68d61 84.48%,#ab6f27 116.74%,#b06f0c 149.44%);
  border-radius: 50px;
  padding: 15px;
}

.back-to-top:hover {
  color: #000;
  transform: translateY(-50%) scale(1.2);
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  text-decoration: none;
}

.whatsapp-icon {
  width: 60px;
  height: 60px;
  border-radius: 8%;
  
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 999999;
}

.whatsapp-icon:hover {
  transform: scale(1.1);
  
}


/*Popup */
    

/* Overlay */
.popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1000;
}

/* Popup Box */
.popup-form {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  width: 90%;
  max-width: 400px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  z-index: 1001;
  padding: 20px;
  animation: fadeIn 0.3s ease;
}

/* Header */
.popup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.popup-header h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}
.close-btn {
  font-size: 26px;
  cursor: pointer;
  color: #333;
}

/* Form Inputs */
.popup-form form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.popup-form input,
.popup-form textarea {
  width: 100%;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
}
.popup-form button {
  background: #e91e63;
  color: white;
  border: none;
  padding: 10px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
}
.popup-form button:hover {
  background: #c2185b;
}

.error-msg {
  color: red;
  font-size: 13px;
  display: none;
  margin-top: -5px;
}

/* Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translate(-50%, -60%); }
  to { opacity: 1; transform: translate(-50%, -50%); }
}    



.mobile-sticky-buttons {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: none; /* hidden on desktop */
  justify-content: space-between;
  background: #fff;
  box-shadow: 0 -2px 8px rgba(0,0,0,0.15);
  z-index: 9999;
}

.mobile-sticky-buttons a {
  flex: 1;
  text-align: center;
  padding: 12px 0;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.call-btn {
  background-color: #4CAF50; /* green */
}

.whatsapp-btn {
  background-color: #25D366; /* WhatsApp green */
}

.enquire-btn {
  background-color: #e91e63; /* pink */
}

.mobile-sticky-buttons i {
  color: #fff;
  font-size: 16px;
}

/* Show only on mobile */
@media (max-width: 768px) {
  .mobile-sticky-buttons {
    display: flex;
  }
  .whatsapp-icon{
      display:none;
  }
  
/*  .about-buttons a {*/
/*  display: inline-block;*/
/*  border: 2px solid #b48858;*/
/*  border-radius: 50px;*/
/*  padding: 3px 16px;*/
/*  color: #000;*/
/*  font-weight: 600;*/
/*  text-decoration: none;*/
/*  margin: 8px;*/
/*  transition: all 0.3s ease;*/
/*}*/
}

@media screen and (min-device-width: 350px) and (max-device-width: 768px) { 
     .top-label {
  display: inline-block;
  background: #fff;
  color: #b48858;
  font-weight: 600;
  border-radius: 40px;
  padding: 4px 8px;
  margin-bottom: 20px;
  font-size: 14px;
  text-transform: uppercase;
}

 .hero-content h1 {
    font-size: 25px;
  }
  
  .hero-content p{
      font-size: 15px;
  }
  
  .features{
      font-size: 13px;
  }
  .hero-buttons a {
  display: inline-block;
  border: 2px solid #b48858;
  color: #fff;
  border-radius: 50px;
  padding: 3px 16px;
  font-weight: 600;
  text-decoration: none;
  margin: 8px;
  transition: all 0.3s ease;
}
.about-buttons{
    display: flex;
}
.about-buttons a {
  display: inline-block;
  border: 2px solid #b48858;
  border-radius: 50px;
  padding: 3px 8px;
  color: #000;
  font-weight: 600;
  text-decoration: none;
  margin: 8px;
  transition: all 0.3s ease;
}
.crs-hdng{
    font-size: 40px;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 images per row */
    gap: 10px;  
    padding: 7px;
  }
  
  .student-gallery h2 {
      font-size: 30px;
  }
  
  .faq-section h2 {
      font-size: 30px;
  }
}




