/* Base styles */
.animated-image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 250px;
  position: relative;
  margin-top: 50px;
}

.floating-balloon {
  margin-top: 25px;
  width: 100%;
  height: 400px;
  transition: box-shadow 0.5s ease-in-out;
}

/* Responsive styles */

/* For devices from 1025px to 1440px */
@media (min-width: 1025px) and (max-width: 1440px) {
  .animated-image-container {
    height: 200px; /* Adjust height for this range */
  }

  .floating-balloon {
    height: 300px; /* Adjust height for this range */
  }
}

/* For devices from 1441px to 1601px */
@media (min-width: 1441px) and (max-width: 1601px) {
  .animated-image-container {
    height: 220px; /* Adjust height for this range */
  }

  .floating-balloon {
    height: 350px; /* Adjust height for this range */
  }
}

/* For devices from 1601px to 2560px */
@media (min-width: 1601px) and (max-width: 2560px) {
  .animated-image-container {
    height: 240px; /* Adjust height for this range */
  }

  .floating-balloon {
    height: 350px; /* Adjust height for this range */
  }
}


/* For devices from 1200px and below */
@media (min-width: 992px) and (max-width: 1200px) {
  .animated-image-container {
    height: 200px;
  }

  .floating-balloon {
    height: 300px;
  }
}

/* For devices from 768px to 991px */
@media (min-width: 768px) and (max-width: 992px) {
  .animated-image-container {
    height: 180px;
  }

  .floating-balloon {
    height: 250px;
  }
}

/* For devices from 576px to 767px */
@media (min-width: 576px) and (max-width: 768px) {
  .animated-image-container {
    height: 150px;
  }

  .floating-balloon {
    height: 200px;
  }
}

/* For devices below 576px */
@media (max-width: 576px) {
  .animated-image-container {
    height: 120px;
  }

  .floating-balloon {
    height: 150px;
  }
}







.popular-categories-container.show {
  animation: slideIn 0.8s forwards ease-in-out;
  opacity: 1;
}

.popular-categories-heading {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: #828284;
  text-align: center;
  letter-spacing: 1px; /* Add letter spacing for elegance */
  margin-top:125px;
  margin-bottom:10px;
}

:root {
  --card-height: 350px; /* Increased card height */
  --card-width: calc(var(--card-height) / 1.5); /* Adjust card width proportionally */
}

.categories-section {
/*  margin-left: 50px;*/
  display: flex;
  justify-content: center; /* Center cards horizontally */
  padding: 15px;
  flex-wrap: nowrap; /* Ensure cards stay on the same row */
  overflow-x:hidden ; /* Scroll if there are too many cards */

}

.card {
  height: var(--card-height);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  perspective: 2500px;
  margin: 40px 20px 0; /* Reduced margin to balance card size and spacing */
  border: none;
}



.cover-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
  border: 4px solid rgba(207, 181, 145, 0.6); /* Soft champagne color */
  transition: border-radius 0.5s ease, border 0.5s ease;
 
}

/* Other card styling remains unchanged */

.wrapper {
  transition: all 0.5s;
  position: absolute;
/*  width: 100%;*/
  z-index: -1;
}

.card:hover .wrapper {
  transform: perspective(900px) translateY(-5%) rotateX(25deg) translateZ(0);
  
}

.wrapper::before,
.wrapper::after {
  content: "";
  opacity: 0;
  width: 100%;
  height: 80px;
  transition: all 0.5s;
  
  left: 0;
}

.wrapper::before {
  top: 0;
  height: 100%;
  background-image: linear-gradient(
    to top,
    transparent 46%,
    rgba(12, 13, 19, 0.5) 68%,
    rgba(12, 13, 19) 97%
  );
}

.wrapper::after {
  bottom: 0;
  opacity: 1;
  background-image: linear-gradient(
    to bottom,
    transparent 46%,
    rgba(12, 13, 19, 0.5) 68%,
    rgba(12, 13, 19) 97%
  );
}

.card:hover .wrapper::before,
.card:hover .wrapper::after {
  opacity: 1;
}

.card:hover .wrapper::after {
  height: 120px;
}

.title {
/*  width: 100%;*/
  transition: transform 0.5s;
}

.card:hover .title {
  transform: translate3d(0%, 75px, 100px);
}

.character {
/*  width: 100%;*/
  opacity: 0;
  transition: all 0.5s;
  position: absolute;
  z-index: -1;
}

.card:hover .character {
  opacity: 1;
  transform: translate3d(0%, -30%, 100px);
}

/* Apply the premium border effect to the primary image during hover as well */
.card:hover .cover-image {
  border-radius: 15px;
  background: linear-gradient(white, white), 
              linear-gradient(to right, #a38953, #ffce00); /* Premium gold gradient on hover */
}



@media (max-width: 576px) {
  :root {
    --card-height: 300px; /* Smaller card height for mobile devices */

  }

  .categories-section {
    padding: 20px;
    justify-content: center;
    align-items: center;
  }

  .card {
    margin: 20px 5px; /* Further reduce margins for small mobile screens */
  }

  .popular-categories-heading {
    font-size: 2rem; /* Reduce heading size on mobile */
    margin-top: 50px;
  }
}







.premium-button {
  display: inline-block;
  padding: 15px 40px;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: #fff;
  background: linear-gradient(135deg, #8e44ad, #3498db); /* Premium gradient */
  border: none;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: background 0.5s ease, transform 0.4s ease;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15); /* Soft shadow */
}

.premium-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 250%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.6) 50%, transparent 100%);
  opacity: 0.5; /* Increase visibility of the wave */
  transform: skewX(-15deg); /* Skew the wave to make it more dynamic */
  transition: none;
  pointer-events: none;
}

.premium-button:hover::before {
  left: 100%;
  transition: left 1.5s ease-in-out; /* Adjust speed for better visibility */
}

.premium-button:hover {
  transform: scale(1.05); /* Slight scale for emphasis */
  background: linear-gradient(135deg, #3498db, #8e44ad); /* Reverse gradient */
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25); /* Stronger shadow */
}

.premium-button-container {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}


@media (min-width: 1602px) {
  .premium-button {
    font-size: 2rem; /* Increase font size for larger screens */
    padding: 10px 50px; /* Larger padding */
    min-width: 250px;
  }
}
@media (min-width: 1025px) and (max-width: 1601px) {
  .premium-button {
    font-size: 1.4rem; /* Increase font size for larger screens */
    padding: 10px 50px; /* Larger padding */
    min-width: 250px;
  }
}

/* Tablets (768px to 1024px) */
@media (max-width: 1024px) and (min-width: 768px) {
  .premium-button {
    font-size: 1.2rem; /* Slightly smaller font for tablets */
    padding: 10px 35px;
    min-width: 220px;
  }
}

/* Mobile devices (below 768px) */
@media (max-width: 767px) {
  .premium-button {
    font-size: 1.2rem; /* Smaller font for mobile */
    padding: 12px 30px; /* Reduce padding for mobile */
    min-width: 180px; /* Smaller width on mobile */
  }
}

/* Smallest devices (below 576px) */
@media (max-width: 576px) {
  .premium-button {
    font-size: 1.3rem; /* Further reduce font size for very small devices */
    padding: 10px 25px;
    min-width: 160px;
  }
}
.header-hr {
  display: inline-block;
  margin-top: 0.5em;
  margin-bottom: 0.3em;
  width: 30%;
  border: none;
  border-top: 3px double #007bff;
  position: relative;
}

.header-hr::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: #007bff;
  transform: translateY(-50%);
}

.scrolling-images {
  width: 100%;
  position: relative;
  height: 140px;
  overflow: hidden;
 
}

.scrolling-images-hr {
  width: 70%;
}

.scrolling-images > img {
  max-height: 120px;
  position: absolute;
  max-width: 110px;
  left: 0;
  right: 0;
  top: 50%;
  margin: auto;
  opacity: 0;
}

.scrolling-images > .animated { 
  animation-name: imscroll;
  animation-delay: 0s;
  animation-iteration-count: infinite;
  animation-direction: forward;
  animation-duration: 3s;
  animation-timing-function: linear;
}

@keyframes imscroll {
  0% {
    transform: translate(500px, -50%);
    opacity: 0;
  }
  20% {
    opacity: 0.7;
  }
  50% {
    transform: translate(0, -50%);
    opacity: 1;
  }
  70% {
    opacity: 0.7;
  }
  100% {
    opacity: 0;
    transform: translate(-500px, -50%);
  }
}

@media screen and (max-width: 992px) {

  .header-hr {
    display: none;
  }
  
  
  .scrolling-images > img {
    max-height: 90px;
    position: absolute;
    max-width: 90px;
  }

  .scrolling-images {
    height: 110px;
  }
  
  @keyframes imscroll {
    0% {
      transform: translate(-300px, -50%);
      opacity: 0;
    }
    20% {
      opacity: 0.7;
    }
    50% {
      transform: translate(0, -50%);
      opacity: 1;
    }
    70% {
      opacity: 0.7;
    }
    100% {
      opacity: 0;
      transform: translate(300px, -50%);
    }
  }
}







.our-text {
  text-align: center;
  font-weight: bold;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  font-family: 'Oswald', sans-serif;
  color: #333333;
  margin-top: 50px;
}




@import url("https://fonts.googleapis.com/css?family=Lato:400,400i,700");

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

.faq-page-wrapper {
  
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: 20px auto; /* Center horizontally with auto margins */
  width: 100%;
  max-width: 1050px;
  padding: 20px;
  position: relative;
}

.faq-title {
  text-align: center;
  margin-top: 60px;
  font-size: 2rem;
}

.faq-container {
  background-color: white;
  color: black;
  border-radius: 20px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.25);
  margin-bottom: 20px;
  width: 100%;
}

.faq-question {
  font-size: 1.2rem;
  font-weight: 600;
  padding: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.faq-question::after {
  content: "\002B";
  font-size: 2.2rem;
  transition: transform 0.3s ease;
}

.faq-question.active::after {
  transform: rotate(45deg);
}

.faq-answer-cont {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer {
  padding: 0 20px 20px;
  line-height: 1.5rem;
}

/* Responsive Styles */
@media screen and (max-width: 1200px) {
  .faq-container {
    width: 90%;
  }
}

@media screen and (max-width: 992px) { /* Adjusted breakpoint */
  .faq-page-wrapper {
    padding: 15px;
  }

  .faq-title {
    font-size: 1.8rem;
    margin-top: 50px;
  }

  .faq-container {
    padding: 15px;
  }
}

@media screen and (max-width: 768px) {
  .faq-title {
    font-size: 1.6rem;
    margin-top: 40px;
  }

  .faq-question {
    font-size: 1rem;
    padding: 15px;
  }

  .faq-question::after {
    font-size: 1.8rem;
  }

  .faq-answer {
    padding: 0 15px 15px;
    line-height: 1.4rem;
  }
}

@media screen and (max-width: 576px) {
  .faq-title {
    font-size: 1.4rem;
    margin-top: 30px;
  }

  .faq-question {
    font-size: 0.9rem;
    padding: 10px;
  }

  .faq-question::after {
    font-size: 1.5rem;
  }

  .faq-answer {
    padding: 0 10px 10px;
    line-height: 1.3rem;
  }
}

@media screen and (max-width: 400px) {
  .faq-title {
    font-size: 1.2rem;
    margin-top: 20px;
  }

  .faq-question {
    font-size: 0.8rem;
    padding: 8px;
  }

  .faq-question::after {
    font-size: 1.2rem;
  }

  .faq-answer {
    padding: 0 8px 8px;
    line-height: 1.2rem;
  }
}










.testimonial-header {
  margin-bottom: 20px;
  margin-top: 50px;
  position: relative;
  left: 0; /* Changed to 0 for responsive design */
  text-align: center; /* Centered text for better alignment */
}

.testimonial-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
  font-family: 'Nunito', sans-serif;
}

.testimonial-header p {
  font-size: 1.2rem;
  color: #666;
  margin: 0;
  font-family: 'Nunito', sans-serif;
  position: relative;
  top: 10px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .testimonial-header {
    margin-left: 20px; /* Adjusted margin for smaller screens */
    margin-right: 20px; /* Adjusted margin for smaller screens */
  }

  .testimonial-header h2 {
    font-size: 2rem; /* Reduced font size for smaller screens */
  }

  .testimonial-header p {
    font-size: 1rem; /* Reduced font size for smaller screens */
    left: 0; /* Reset left positioning */
  }
}

@media (max-width: 480px) {
  .testimonial-header {
    margin-left: 10px; /* Further adjusted margin for very small screens */
    margin-right: 10px; /* Further adjusted margin for very small screens */
  }

  .testimonial-header h2 {
    font-size: 1.5rem; /* Further reduced font size for very small screens */
  }

  .testimonial-header p {
    font-size: 0.9rem; /* Further reduced font size for very small screens */
    top: 5px; /* Adjusted top positioning */
  }
}








@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;500;600;700;800;900;1000&display=swap');

/* Body Styles */
.testimonial-carousel-wrapper {
  display: grid;
  place-items: center;
  position: relative;
  padding: 0 12px; /* Added padding for smaller screens */
}

/* Swiper Styles */
.carousel-container {
  border-radius: 5px;
  width: 90vw;
  overflow: hidden;
  font-size: 50px;
  position: relative;
  padding-bottom: 50px;
  height: 410px;
  margin: 50px auto; /* Centered carousel */
}

.carousel-slide {
  width: auto;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  padding: 0;
  background-color: white;
  border-radius: 5px;
  overflow: hidden;
}

.image-holder {
  background-color: #4361ee;
  display: flex;
  width: 100%;
  padding: 30px;
  border-bottom-left-radius: 20px;
}

.image-holder img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: auto;
  object-fit: cover;
  border: 3px solid #4361ee;
  outline: 2px solid white;
}

.content-holder {
  position: relative;
  padding: 10px;
  background-color: white;
  border-top-right-radius: 20px;
}

.content-holder::before {
  background-color: #4361ee;
  content: '';
  width: 50px;
  height: 50px;
  position: absolute;
  top: -5px;
  right: 0px;
  z-index: -1;
}

.carousel-slide h3 {
  font-size: 1.1rem;
  text-align: center;
  font-weight: bold;
}

.carousel-slide p {
  font-size: 0.9rem;
  padding: 5px;
}

.swiper-pagination-bullet {
  background-color: white;
  opacity: 1;
  border: 1px solid #4361ee;
}

.swiper-pagination-bullet-active {
  background-color: #4361ee;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .carousel-container {
    width: 80vw; /* Adjusted for medium screens */
  }
}

@media (max-width: 768px) {
  .carousel-container {
    width: 90vw; /* Increased width for tablets */
  }

  .carousel-slide {
    font-size: 0.9rem; /* Reduced font size */
  }

  .image-holder {
    padding: 20px; /* Reduced padding */
  }

  .image-holder img {
    width: 80px; /* Adjusted image size */
    height: 80px; /* Adjusted image size */
  }

  .content-holder {
    padding: 8px; /* Reduced padding */
  }
}

@media (max-width: 500px) {
  .carousel-container {
    width: 100%;
  }

  .carousel-slide {
    font-size: 0.8rem; /* Further reduced font size */
  }

  .image-holder {
    padding: 15px; /* Further reduced padding */
  }

  .image-holder img {
    width: 70px;
    height: 70px; /* Further adjusted image size */
  }

  .content-holder {
    padding: 6px; 
  }
}

@media (max-width: 300px) {
  .carousel-container {
    width: 100%;
    margin: 20px 0; 
  }

  .carousel-slide {
    border-radius: 0px; 
  }

  .image-holder {
    border-radius: 0px;
  }

  .content-holder {
    border-radius: 0px; 
  }
}





  


.testi-bgcolor{
  background-color: white !important;
}

.review-boxbg{
  background-color: #f8f8f8 !important;
}

