@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

 @font-face {
  font-family:fadyen;
  src: url(/assiste/font/FabyenDemo.ttf);
 }


 html{
  scroll-behavior: smooth;
 }


body {
  font-family: "Poppins", sans-serif;
  width: 100%;
  box-sizing: border-box;
}

 

/* Navbar Styles */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background-color: #fff;
  color: #fff;
  position: relative;
}

.containernav {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
}

.logo {
  /* background-color: #0e2431; */
  max-width: 250px;
  height: 80px;
}
.logo img{
  width: 100%;
}

/* Checkbox Styles */
.nav-container .checkbox {
  position: absolute;
  display: block;
  height: 32px;
  width: 32px;
  top: 20px;
  right: 20px;
  z-index: 5;
  opacity: 0;
  cursor: pointer;
}

/* Hamburger Menu Styles */
.nav-container .hamburger-lines {
  display: block;
  height: 22px;
  width: 32px;
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hamburger-lines .line {
  display: block;
  height: 2px;
  width: 80%;
  border-radius: 10px;
  background: #935941;
}

/* Line Transformations for Animation */
.hamburger-lines .line1 {
  transform-origin: 0% 0%;
  transition: transform 0.4s ease-in-out;
}

.hamburger-lines .line2 {
  transition: transform 0.2s ease-in-out;
}

.hamburger-lines .line3 {
  transform-origin: 0% 100%;
  transition: transform 0.4s ease-in-out;
}

/* Menu Items Styling */
.menu-items {
  display: none; 
  flex-direction: column;
  align-items: center; 
  justify-content: center; 
  position: absolute;
  top: 0;
  left: 0; 
  background-color: #FBE4C9;
  padding: 1rem;
  /* border-radius: 8px; */
  width: 300px;
  height: 100vh;
  transition: transform 0.3s ease;
  transform: translateX(-100%); 
  text-align: center; 
}

.menu-items li {
  list-style: none;
  margin: 10px 0;
}

.menu-items a {
  color: #da2877;
  text-decoration: none;
  font-size: 1.6rem;
  font-family: "Raleway", sans-serif;
}

.menu-items li a:hover{
  background-color: #da2877;
  border-radius: 30px;
  color: #e2e2e2;
  padding: 5px;
  text-decoration: none;
}
.menu-items a.book {
  color: #fff;
  background-color: #da2877;
  border-radius: 30px;
  padding: 5px;
}

/* Slide-in animation when Checkbox is Checked */
.checkbox:checked ~ .menu-items {
  display: flex;
  transform: translateX(0); 
}

/* Hamburger Icon Animation */
.nav-container input[type="checkbox"]:checked ~ .hamburger-lines .line1 {
  transform: rotate(45deg);
}

.nav-container input[type="checkbox"]:checked ~ .hamburger-lines .line2 {
  transform: scaleY(0); 
}

.nav-container input[type="checkbox"]:checked ~ .hamburger-lines .line3 {
  transform: rotate(-45deg);
}



/* Existing styles remain unchanged */

@media (max-width: 768px) {
  /* Adjust logo size for smaller screens */
  .logo {
    max-width: 150px;
  }

  /* Adjust hamburger menu positioning */
  .hamburger-lines {
    top: 10px;
    right: 15px;
  }

  /* Make the menu appear in full screen on small devices */
  .menu-items {
    width: 100%;
    height: 80vh;
  }

  /* Ensure links take up full width and are centered */
  .menu-items li {
    width: 100%;
    text-align: center;
    margin: 15px 0;
  }

  .menu-items a {
    font-size: 1.5rem; /* Increase font size for readability on smaller screens */
  }
}

/* Adjustments for very small screens */
@media (max-width: 480px) {
  .logo {
    max-width: 120px;
  }

  .menu-items a {
    font-size: 1.2rem;
  }

  .hamburger-lines {
    top: 5px;
    right: 10px;
  }
}




 







/*home*/


.a1 {
  width: 100%;
  height: auto;
  background-image: url('img/bvt/home-01.jpg');
  background-size: cover;
  background-position: center;
}

.a1inner {
  width: 100%;
  height: auto;
  display: flex;
  flex-wrap: wrap;
}

.lefthome, .righthome {
  width: 50%;
  height: auto;
}
.lefthome .a1-img1 .image1{
  margin-left: 100px;
}

.lefthome .a1-img1 {
  width: 80%;
  height: 70vh;
  margin-top: 200px;
  
}

.lefthome .a1-img1 img {
  width: 100%;
  height: auto;
}

.lefthome .a1-img2 {
  width: 400px;
  height: auto;
  
}

.lefthome .a1-img2 img {
  width: 100%;
  height: auto;
  overflow: hidden;
}

.righthome .a1-img3 {
  width: 80%;
  height: 70vh;
  margin-top: 200px;
  margin-left: 100px;
}

.righthome .a1-img3 img {
  width: 100%;
  height: auto;
  padding: 5px;
  border: 1px solid #da2877;
}

/* Responsive Styles */

@media (max-width:1200px){
  .lefthome .a1-img1 .image1{
    margin-left: 50px;
  }
}
 




@media (max-width: 1024px) {
  .lefthome, .righthome {
    width: 100%;
    height: auto;
  }


  .lefthome .a1-img1, .righthome .a1-img3 {
    margin-top: 50px;
    margin-left: auto;
    margin-right: auto;
    width: 90%;
    height: auto;
  }
	  .lefthome .a1-img1 .image1{
    margin-left: 0px;
  }



  .lefthome .a1-img2 img {
    width: 100%;
    height: auto;
  }

  .righthome .a1-img3 img {
    width: 100%;
    height: auto;
  }
}

@media (max-width: 768px) {
  .a1inner {
    flex-direction: column;
    align-items: center;
  }

  .lefthome .a1-img1{
    width: 100%;
    margin-top: 20px;
  }

  .lefthome .a1-img2 img, .righthome .a1-img3 img {
    width: 100%;
    height: auto;
  }
  .righthome .a1-img3 img{
    max-width: 500px;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .lefthome .a1-img1, .righthome .a1-img3 {
    margin-top: 20px;
    width: 100%;
  }

  .lefthome .a1-img2 img {
    width: 100%;
    height: auto;
  }

  .righthome .a1-img3 img {
    padding: 0;
    border: none;
  }
}


/*home*/







/* Keyframes for animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* About start */
.about {
  display: flex;
  width: 100%;
  height: auto;
  background-color: #FBE4C9;
  padding: 50px;
  box-sizing: border-box;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  height: auto;
  border: #da2877 solid 1px;
  position: relative;
  box-sizing: border-box;
}

.about-text-section {
  flex: 1 1 100%;
  padding: 150px 40px 40px 40px;
  box-sizing: border-box;
  text-align: center;
  opacity: 0;
  animation: fadeIn 1.5s ease forwards; /* Text animation */
}

.about-text-section h1 {
  font-family: 'fadyen'; /* Ensure you have this font or provide a fallback */
  margin-bottom: 20px;
  font-size: 36px;
  font-weight: 200;
  color: #935941;
}

.about-text-section p {
  width: 100%;
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 300;
  color: #935941;
  font-family: "Raleway", sans-serif;
}

.about-image-section {
  flex: 1 1 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  text-align: center;
}

.about-image-section div {
  margin: 0 10px; /* Add some space between images */
}

.about-image-section img {
  width: 80%;
  height: auto;
  opacity: 0;
  animation: zoomIn 1s ease forwards; /* Image animation */
  animation-delay: 1.2s;
}

.small-image {
  max-width: 150px;
  margin-top: 170px;
  animation-delay: 0.5s; /* Stagger animation */
}

.medium-image {
  max-width: 250px;
  margin-top: 90px;
  animation-delay: 0.7s; /* Stagger animation */
}

.large-image {
  max-width: 350px;
  animation-delay: 0.9s; /* Stagger animation */
}

.about-center-image {
  position: absolute;
  top: 0%;
  left: 40%;
  transform: translate(-50%, -50%);
  width: 150px;
  height: 150px;
  border-radius: 50%;
  opacity: 0;
  animation: zoomIn 1.5s ease forwards; /* Animation for center image */
  animation-delay: 1.2s;
  
}

/* Media Queries */
@media (min-width: 768px) {
  .about-text-section {
    flex: 1 1 50%;
    text-align: left;
  }
  
  .about-text-section h1 {
    font-size: 48px;
  }
  
  .about-text-section p {
    font-size: 22px;
  }
  
  .about-image-section {
    flex: 1 1 50%;
    justify-content: center;
  }
  
  .small-image {
    max-width: 200px;
  }
  
  .medium-image {
    max-width: 300px;
  }
  
  .large-image {
    max-width: 400px;
  }
  
  .about-center-image {
    width: 250px;
    height: 250px;
  }
}

@media (min-width: 1024px) {
  .about-text-section h1 {
    font-size: 64px;
  }
  
  .about-text-section p {
    font-size: 30px;
  }
}

/* About end */





/*service*/

.service {
  padding: 50px;
}

.custom-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px;
  gap: 50px;
  border: #da2877 1px solid;
}

.left-side {
  flex: 1; /* Makes sure the left and right sides are equal in width */
  background-color: #FEE7CB;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.left-side h1 {
  font-size: 70px;
  color: #935941;
  padding: 40px;
  font-family: var(fadyen);
  font-weight: 300;
}

.left-side p {
  color: #935941;
  font-size: 30px;
  font-weight: 300;
  line-height: 1.6;
  max-width: 800px;
  font-family: "Raleway", sans-serif;
  padding: 40px;
  margin-bottom: 100px;
}

.left-side img {
  width: 60%;
  max-width: 400px;
  height: auto;
  border-radius: 10px;
  filter: drop-shadow(30px 10px 4px #a3a3a3);
}

.right-side {
  flex: 1; /* Makes sure the left and right sides are equal in width */
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 50px;

}

.image-grid img {
  width: 90%;
  height: auto;
  object-fit: cover;
  border-radius: 30px;
  border: 1px solid #da2877;
  padding: 5px;
  cursor: pointer;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;}


/* Existing CSS... */

.image-grid img {
  width: 90%;
  height: auto;
  object-fit: cover;
  border-radius: 30px;
  border: 1px solid #da2877;
  padding: 5px;
  transition: transform 0.3s; /* Add transition for smooth scaling */
}

.image-grid img:hover {
  transform: scale(1.1); /* Scale image on hover */
}

/* Modal styles */
.modal {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.8); /* Black background with transparency */
}

.modal-content {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
}

.close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  transition: color 0.3s;
}

.close:hover,
.close:focus {
  color: #da2877; /* Change color on hover */
}


 





/* Media Queries for responsiveness */
@media (max-width: 1024px) {
  .custom-section {
    flex-direction: column;
    gap: 30px;
  }

  .left-side img, .image-grid img {
    max-width: 100%;
  }

  .image-grid {
    grid-template-columns: repeat(1, 1fr); /* Change to single column */
  }
}

@media (max-width: 480px) {
  .image-grid {
    grid-template-columns: repeat(1, 1fr); /* Ensure single column on small screens */
    gap: 20px; /* Adjust gap for smaller screens if needed */
  }
  .left-side {
    background-color: transparent;
  }
  .left-side h1{
    font-size: 38px;
    margin-bottom: 0;
  }
  .left-side p {
    font-size: 18px;
    margin-bottom: 0;
  }
}



 
/*Convenient shared spaces*/

.split-layout {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 50px;
  box-sizing: border-box;
}

/* Upper section */
.upper-section {
  width: 100%;
  height: 50%;
  background-color: #FBE4C9;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  text-align: center;
  color: #fff;
  padding-bottom: 20px;
  border: 1px solid #da2877;
}

.content-section-top {
  max-width: 1200px;
  text-align: center;
  padding: 20px;
}

.content-section-top img {
  max-width: 100px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
}

.content-section-top h2 {
  font-size: 30px;
  margin: 10px 0;
  color: #935941;
  font-family: fadyen;
}

.content-section-top p {
  font-size: 15px;
  line-height: 1.5;
  color: #935941;
  font-family: "Raleway", sans-serif;
  max-width: 1000px;
}

/* Lower section */
.lower-section {
  width: 100%;
  height: 50%;
  background-color: #FFF;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.img-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  gap: 50px;
}

/* Individual image container sizes */
.img-container {
  padding: 5px;
  border: 1px solid red;
  border-radius: 50%;
}

.img-container-01 {
  width: 200px;
  height: 200px;
}

.img-container-02 {
  width: 200px;
  height: 200px;
}

.img-container-03 {
  width: 200px;
  height: 200px;
}

.img-container-04 {
  width: 200px;
  height: 200px;
}

.img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

/* Responsive styling */

@media (max-width: 1200px) {
  .content-section-top img{
    max-width: 70px;
  }
  .content-section-top p {
    font-size: 20px;
  }
  .content-section-top h2 {
    font-size: 30px;
  }
  .img-container-01{
    width: 100px;
    height: 100px;
  }
  .img-container-02{
    width: 100px;
    height: 100px;
  }
  .img-container-03{
    width: 100px;
    height: 100px;
  }
  .img-container-04{
    width: 100px;
    height: 100px;
  }
}

@media (max-width: 1024px){
  .content-section-top img{
    max-width: 40px;
  }
  .content-section-top h2{
    font-size: 20px;
  }
  .content-section-top p{
    font-size: 10px;
  }
  .img-container-01{
    width: 100px;
    height: 100px;
  }
  .img-container-02{
    width: 100px;
    height: 100px;
  }
  .img-container-03{
    width: 100px;
    height: 100px;
  }
  .img-container-04{
    width: 100px;
    height: 100px;
  }
}



@media (max-width: 768px) {
  .split-layout {
    height: auto;
    padding: 30px;
  }

  .upper-section, .lower-section {
    height: auto;
    padding: 40px 20px;
  }

  .content-section-top h2 {
    font-size: 1.5rem;
  }

  .content-section-top p {
    font-size: 1rem;
  }

  .img-grid {
    flex-direction: column;
  }

  .img-container-01, .img-container-02, .img-container-03, .img-container-04 {
    width: 150px;
    height: 150px;
  }
}


/*neeeeeeeee*/


/* Custom section styles */
.custom-section {
  border: 1px solid red; 
  padding: 50px;  
  display: flex;  
  justify-content: space-between; 
  align-items: center;  
  height: auto;  
}

/* Left side styles */
.custom-left-side {
  flex: 1;  
  display: flex; 
  flex-direction: column;  
  justify-content: left center; 
  padding-right: 20px; 
}

.custom-heading {
  font-size: 70px;  
  margin-bottom: 15px;  
  font-family: fadyen; 
  color: #935941; 
}

.custom-paragraph {
  font-size: 30px;  
  line-height: 1.5;  
  font-family: "Raleway", sans-serif;   
  color: #935941; 
  font-weight: 200;  
  max-width: 600px;
 
}

/* Right side styles */
.custom-right-side {
  flex: 1; 
  display: flex; 
  flex-direction: column;  
}

/* Row styles for images */
.custom-image-row {
  display: flex;  
  justify-content: space-between;  
  margin-bottom: 10px;  
}

/* Image box styles */
.custom-image-box {
  flex: 1;  
  padding: 5px;  
}

/* Responsive image styles */
.custom-image-box img {
  width: 100%;  
  height: auto; 
  border-radius: 8px; 
}

/* Responsive media query */
@media (max-width: 768px) {
  .custom-section {
      flex-direction: column;  
      align-items: center;  
      padding: 20px;  
  }

  .custom-left-side {
      padding-right: 0;  
      margin-bottom: 20px;  
      text-align: center;  
  }

  .custom-heading {
      font-size: 50px;  
  }

  .custom-paragraph {
      font-size: 20px;  
  }

  .custom-image-row {
      flex-direction: column;  
  }

  .custom-image-box {
      margin-bottom: 10px;  
      width: 100%;  
  }
}



/*neeeeeeeee*/







/*last*/
/* Basic Section Styling */
/* Wrapper Section Styling */
.section-100 {
  width: 100%;
  height: 100vh;
  padding: 50px;
  box-sizing: border-box;
  background-color: #f5f5f5;
}

/* Section 101 Main Styling */
.section-101 {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  height: 100%;
  border: 1px solid #da2877;
}

/* Left Side Styling */
.left-102 {
  flex: 1;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

/* Left Side - Top Section */
.left-top-104 {
  flex: 1;
  position: relative;
  background-color: #FBE4C9;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

.top-image {
  position: absolute;
  top: 10px;
  left: 10px;
  max-width: 150px;
  height: auto;
  filter: drop-shadow(30px 10px 4px #a09e9e);
}

.center-heading {
  text-align: center;
  font-size: 6rem;
  color: #935941;
  line-height: 1.4;
  max-width: 90%;
  font-family: fadyen;
  
}

/* Left Side - Bottom Section */
.left-bottom-105 {
  flex: 1;
  display: flex;
  align-items: center;
  background-color: #fff;
  padding: 20px;
}

.center-paragraph {
  font-size: 2.5rem;
  color: #935941;
  max-width: 90%;
  margin-left: 10px;
  line-height: 1.2;
  font-family: "Raleway", sans-serif;
  font-weight: 200;
}

/* Right Side Styling */
.right-103 {
  flex: 1;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
}

/* Grid Layout for Images */
.image-grid-106 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 15px;
  width: 80%;
  justify-items: center;
  align-items: center;
  
}

.grid-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
}

/* Responsive Design */

/* Tablet Screens */
@media (max-width: 1440px) {
  .center-heading{
    font-size: 4rem;
  }
  .top-image {
    max-width: 100px;
  }
}
@media (max-width: 1024px) {
  .section-100 {
    height: auto;
  }

  .section-101 {
    flex-direction: column;
    height: auto;
  }

  .top-image {
    max-width: 50px;
  }

  .center-heading {
    font-size: 2rem;
  }

  .center-paragraph {
    font-size: 2rem;
  }
  .center-paragraph {
    font-size: 15px;
    line-height: 1;
  }

  .image-grid-106 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile Devices */
@media (max-width: 768px) {
  .section-100 {
    padding: 20px;
    height: auto;
  }

  .section-101 {
    flex-direction: column;
    height: auto;
  }

  .left-102, .right-103 {
    padding: 15px;
  }

  .top-image {
    max-width: 80px;
  }

  .center-heading {
    font-size: 2.5rem;
  }

  .center-paragraph {
    font-size: 1.5rem;
  }

  .image-grid-106 {
    grid-template-columns: 1fr;
  }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
  .section-100 {
    padding: 15px;
    height: auto;
  }

  .top-image {
    max-width: 50px;
  }

  .center-heading {
    font-size: 1.8rem;
  }

  .center-paragraph {
    font-size: 1.2rem;
  }

  .image-grid-106 {
    grid-template-columns: 1fr;
    width: 100%;
  }
}


/*last*/




 


/* Testimonials start */

 


/* Section Title */
/* Testimonials */
.testo {
  width: 100%;
  height: auto;
  padding: 50px;
}

.test-in {
  border: 1px solid #da2877;
}

.section-title {
  color: #333;
  text-align: center;
  text-transform: uppercase;
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  position: relative;
  margin: 25px 0 50px;
}

.section-title::after {
  content: "";
  width: 100px;
  position: absolute;
  margin: 0 auto;
  height: 3px;
  background: #935941;
  left: 0;
  right: 0;
  bottom: -10px;
}

/* Carousel */
.carousel {
  width: 100%;
  max-width: 650px;
  margin: 0 auto;
  padding-bottom: 50px;
}

.carousel .item {
  color: #999;
  font-size: 14px;
  text-align: center;
  overflow: hidden;
  min-height: 340px;
}

.carousel .img-box {
  width: 145px;
  height: 145px;
  margin: 0 auto;
  border-radius: 50%;
}

.carousel .img-box img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 50%;
}

.carousel .testimonial {
  padding: 30px 0 10px;
}

.carousel .overview {
  text-align: center;
  padding-bottom: 5px;
}

.carousel .overview b {
  color: #333;
  font-size: 15px;
  text-transform: uppercase;
  display: block;
  padding-bottom: 5px;
}

.carousel .star-rating i {
  font-size: 18px;
  color: #ffdc12;
}

.carousel .carousel-control {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #999;
  text-shadow: none;
  top: 4px;
}

.carousel-control i {
  font-size: 20px;
  margin-right: 2px;
}

.carousel-control.left {
  left: auto;
  right: 40px;
}

.carousel-control.right i {
  margin-right: -2px;
}

.carousel .carousel-indicators {
  bottom: 15px;
}

.carousel-indicators li,
.carousel-indicators li.active {
  width: 11px;
  height: 11px;
  margin: 1px 5px;
  border-radius: 50%;
}

.carousel-indicators li {
  background: #e2e2e2;
  border-color: transparent;
}

.carousel-indicators li.active {
  border: none;
  background: #888;
}

/* Responsive Styles */
@media screen and (max-width: 1024px) {
  .testo {
    padding: 30px;
  }

  .carousel {
    max-width: 550px;
  }

  .carousel .item {
    font-size: 13px;
  }

  .carousel .img-box {
    width: 130px;
    height: 130px;
  }

  .carousel .testimonial {
    padding: 20px 0 5px;
  }

  .carousel-control.left,
  .carousel-control.right {
    top: 50%;
    transform: translateY(-50%);
  }
}

@media screen and (max-width: 768px) {
  .carousel {
    max-width: 400px;
  }

  .carousel .item {
    font-size: 12px;
  }

  .carousel .img-box {
    width: 100px;
    height: 100px;
  }

  .carousel .testimonial {
    padding: 15px 0 5px;
  }

  .section-title {
    font-size: 20px;
  }
}

@media screen and (max-width: 480px) {
  .carousel {
    max-width: 300px;
  }

  .carousel .item {
    font-size: 11px;
  }

  .carousel .img-box {
    width: 80px;
    height: 80px;
  }

  .carousel .testimonial {
    padding: 10px 0 5px;
  }

  .section-title {
    font-size: 18px;
  }
}


/* Testimonials end */








/*footer*/
 
.footer {
  display: flex;
  justify-content: space-between;
  padding: 20px;
  background-color: #FBE4C9;
  color: #fff;
  flex-wrap: wrap;
}

.footer-section {
  flex: 1;
  text-align: center;
  margin: 10px 0;
}

.left {
  text-align: left;
}
.left p{
  color: #935941;
  font-family: "Raleway", sans-serif;
}

.center {
  text-align: center;
}

.right {
  text-align: right;
}

.footer-logo {
  max-width: 300px;
  
}
.footer-logo img{
  width: 100%;
}

.book-btn {
  padding: 10px 20px; /* Adjust padding for better sizing */
  background-color: #da2877;
  color: #fff;
  border: none;
  border-radius: 30px; /* Adjust for less rounded corners */
  cursor: pointer;
  font-size: 16px; /* Adjust font size */
  width: auto; /* Ensures button does not stretch */
  text-align: center;
  text-decoration: none;
  font-family: "Raleway", sans-serif;
}

.quick-links {
  list-style-type: none;
  padding: 0;
}

.quick-links li {
  margin: 5px 0;
}

.quick-links li a {
  color:#935941;
  text-decoration: none;
  font-size: medium;
  font-family: "Raleway", sans-serif;

}

.quick-links a:hover {
  background-color: #da2877;
  color: #fff;
  padding: 5px;
  border-radius: 30px;
}

.right a img {
  width: 24px;
  margin: 0 8px;
}

.right a:hover {
  opacity: 0.8;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .footer {
    flex-direction: column;
    align-items: center;
  }

  .footer-section {
    text-align: center;
    margin: 10px 0;
  }

  .left, .center, .right {
    text-align: center;
  }

  .footer-logo {
    margin-bottom: 10px;
  }
}

 
/*footer*/



