@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: "Poppins", serif !important; 
    background-color: #F8F9FA !important;

}

a{
  list-style: none !important;
  text-decoration: none !important;
}

h1{
    font-size: 1.8rem !important;
    font-weight: 700 !important;
}

h2{
    font-size: 1.1rem !important;
    font-weight: 500 !important;
}

.main-heading{
padding-block: 5px !important;
}




/* --------------------------Navbar------------------- */
.navbar {
    background-color: #F8F9FA;
}




.navbar-logo{
  width: 90px;
  height: 80px;
}
.nav-link {
    color: black !important;
}

.nav-link:hover {
    color: #00bcd4;
}

.social-icons a {
    color: black;
    margin-left: 1rem;
    font-size: 1.2rem;
}

.social-icons a:hover {
    color: #00bcd4;
}

.custom-toggler-icon {
  display: inline-block;
  width: 30px;
  height: 30px;
  background-color: #000 !important;
  background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 30 30"%3E%3Cpath stroke="black" stroke-width="2" d="M4 7h22M4 15h22M4 23h22"/%3E%3C/svg%3E');
  background-size: contain;
  background-repeat: no-repeat;
}

/* .navbar-dark .navbar-toggler {
  color: #000 !important;
  border-color: rgba(255, 255, 255, .1);
} */
/* -------------End -----------Navbar--------------- */


/* -------------------Slider---------- */
/* Fullscreen carousel */
 /* Carousel height for mobile responsiveness */
 .carousel-item {
    height: 80vh;
    min-height: 400px;
    background-size: cover;
    background-position: center;
  }

  /* Text overlay styling */
  .carousel-caption {
    background: rgba(0, 0, 0, 0.5);
    padding: 1rem;
    border-radius: 10px;
    position: absolute;
    right: 1% !important;
    bottom: 5rem !important; 
    left: 50% !important; 
    
    padding-bottom: 5rem !important;
     
  }

  .carousel-caption h5 {
    font-size: 2rem;
    color: #ffffff;
  }

  .carousel-caption p {
    color: #f1f1f1;
  }

  @media screen and (max-width: 768px) {
    .carousel-item {
      height: 45vh !important;
      min-height: 400px;
      background-size: cover;
      background-position: left !important;
  } 
  .carousel-caption {
    background: rgba(0, 0, 0, 0.5);
    padding: 1rem;
    border-radius: 10px;
    position: absolute;
    right: 1% !important;
    bottom: -2rem !important; 
    left: 0% !important; 
    padding-bottom: 9rem !important;
     
  }
  


  }

  


  /* ----------------------------------Footer------------------------------- */
.list-unstyled li{
  padding-bottom: 30px;
  
}


/* ------------------end slider----------------------------- */



/* -------------------card-------------- */

.card {
    
    border: none;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }




  


  .btn-custom {
    background-color: #ff66cc;
    color: white;
  }
  .btn-custom:hover {
    background-color: #ff3399;
  }

  .bc1{
    background-color: #A27348 !important;
  }
 
  .bc2{
    background-color: #b48e6b !important;
  }

  .bc3{
    background-color: #76512f !important;
  }


  /* -------------------about us----------------------- */

/* .about-sec{
    background-color: #D2994B;
    
} */


  .about-section {
    padding: 50px 0;
    
  }
  .about-image {
    border-radius: 33%;
    overflow: hidden;
    width: 100%;
    max-width: 300px;
    height: auto;
  }
  .read-more-btn {
    
    color: #D2994B;
    font-weight: bold;
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
  }
  


  /* -----------------------Course---------- */

  .c-b{
    background-color: aliceblue;
  }



  /* -------------video section---------------- */

  /* Make the video container responsive */
  .video-container {
    position: relative;
    padding-bottom: 177.78%; /* Aspect ratio 9:16 (height / width = 16 / 9) */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #000;
  }
  
  .video-embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  #video-section {
    background-color: #f8f9fa;
    padding: 40px 0;
  }
  

  
  /* ----------------testimonail */

/* Testimonial section */
#testimonials {
    background-color: #f8f9fa;
    /* padding: 60px 0; */
  }
  
  .testimonial-content {
    padding: 30px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
  }
  
  .testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
  }
  
  .testimonial-author {
    text-align: center;
  }
  
  .author-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-bottom: 10px;
  }
  
  .author-name {
    font-size: 1.2rem;
    font-weight: bold;
  }
  
  .author-title {
    font-size: 1rem;
    color: #777;
    font-style: italic;
  }
  
  /* Make the testimonial section responsive */
  @media screen and (max-width: 768px) {
    .testimonial-content {
      padding: 20px;
    }
  
    .testimonial-text {
      font-size: 1rem;
    }
  
    .author-name {
      font-size: 1rem;
    }
  }
  


 /* Top fluid container styles */
 .top-container {
  width: 100%;
  height: 55vh;
  background: url(./assest/Slider\ 2.jpeg)no-repeat center center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 2rem;
  font-weight: bold;
}

/* Gallery image grid */
.gallery img {
  width: 100%;
    height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}

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


/* -------------------Bridal Offer Page -------------------------- */

.offer-header {
  background: linear-gradient(135deg, #ff7eb3, #ff758c);
  color: white;
  padding: 50px 20px;
  text-align: center;
}
.offer-header h1 {
  font-size: 3rem;
  font-weight: bold;
}
.offer-table {
  background: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}
.table th {
  background-color: #ff758c;
  color: white;
}
.btn-custom {
  background-color: #ff7eb3;
  border: none;
  color: white;
}
.btn-custom:hover {
  background-color: #ff5672;
}




/* ----------------------Contact Us ------------------ */
.contact-header {
  background-color: #343a40;
  color: white;
  padding: 2rem 0;
  text-align: center;
}
.form-section {
  padding: 3rem 0;
}
.map-container {
  position: relative;
  overflow: hidden;
  padding-top: 56.25%; /* Aspect Ratio */
}
.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.btn-custom {
  background-color: #343a40;
  color: white;
}
.btn-custom:hover {
  background-color: #495057;
}





.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  border: none;
  border-radius: 50px;
  padding: 15px 20px;
  font-size: 16px;
  text-align: center;
  text-decoration: none;
  z-index: 1000;
  display: flex;
  align-items: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.whatsapp-btn:hover {
  background-color: #1ebc59;
  cursor: pointer;
}

.whatsapp-btn img {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}







.map-container {
  width: 100%;
  max-width: 420px;
  height: 300px;
  overflow: hidden;
  border-radius: 8px;
  position: relative;
}

iframe {
  width: 100%;
  height: 100%;
  border: none;
}