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

.floating-balloon {
  width: 100%;
  height: 350px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.5), 0 0 30px rgba(255, 255, 255, 0.7);
  transition: box-shadow 0.5s ease-in-out;
}

.floating-balloon:hover {
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.7), 0 0 40px rgba(255, 255, 255, 0.9);
}

/* Responsive styles */
@media (max-width: 1200px) {
  .animated-image-container {
    height: 200px;
  }

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

@media (max-width: 992px) {
  .animated-image-container {
    height: 180px;
  }

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

@media (max-width: 768px) {
  .animated-image-container {
    height: 150px;
  }

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

@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: var(--heading-color);
  margin-bottom: 2rem;
  text-align: center;
  margin-top: 75px;
  letter-spacing: 1px; /* Add letter spacing for elegance */
}

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

.categories-section {
  display: flex;
  justify-content: center; /* Center cards horizontally */
  /* Reduced space between cards */
  padding: 20px;
  flex-wrap: nowrap; /* Ensure cards stay on the same row */
  overflow-x: auto; /* Scroll if there are too many cards */
}

.card {
  width: var(--card-width);
  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 */
}



.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 */
}



.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;
}










.overlay1 {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.overlay1.visible {
    display: flex;
}

.modal-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    width: 400px;
    text-align: center;
}

.close-btn {
    float: right;
    font-size: 1.5rem;
    border: none;
    background: transparent;
}




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


/* Form Container Styling */
.form-container {
  background: #fff;
  border-radius: 15px;
  padding: 40px;
  max-width: 700px;
  width: 100%;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  position: relative;
  transition: all 0.3s ease;
}


.form-container:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.form-container h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 2em;
  color: #333;
  font-weight: 600;
}



.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}
select#product {
  background-color: #f9f9f9;
}

.form-group {
  position: relative;
  display: flex;
  flex-direction: column;
}

.form-group i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #007bff;
  transition: color 0.3s ease;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 15px 15px 15px 45px; /* Adjusted padding for icons */
  border-radius: 10px;
  border: 1px solid #ddd;
  background: #f9f9f9;
  color: #333;
  font-size: 1em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.form-group textarea {
  resize: none;
  min-height: 120px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #007bff;
  box-shadow: 0 8px 15px rgba(0, 123, 255, 0.2);
  background: #fff;
}

.form-group input:focus + i,
.form-group select:focus + i,
.form-group textarea:focus + i {
  color: #007bff;
}

.form-group input:not(:placeholder-shown) ~ .floating-label,
.form-group select:not(:placeholder-shown) ~ .floating-label,
.form-group textarea:not(:placeholder-shown) ~ .floating-label {
  top: -10px;
  left: 40px;
  font-size: 0.9em;
  color: #007bff;
  background: #fff;
  padding: 0 5px;
}

.floating-label {
  position: absolute;
  left: 40px;
  top: 50%;
  transform: translateY(-50%);
  color: #666;
  pointer-events: none;
  transition: all 0.3s ease;
}

.form-group select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding-right: 40px;
  background: #fff url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAiIGhlaWdodD0iNTAiIHZpZXdCb3g9IjAgMCAxMDAgNTAiPjxwYXRoIGQ9Ik0zMCAyNS42TDEwMCA3TDUuNUw1LjUgMTQuNCAzMCAyNS42TDEwMCA1My4xWiIgZmlsbD0iI2ZmZiIvPjwvc3ZnPg==') no-repeat right 15px center;
  background-size: 20px;
  cursor: pointer;
}

.form-group select:focus {
  border-color: #007bff;
  box-shadow: 0 8px 15px rgba(0, 123, 255, 0.2);
}

.submit-btn {
  width: 100%;
  padding: 15px;
  background: #007bff;
  border: none;
  color: #fff;
  font-size: 1.2em;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  margin-top: 20px;
  box-shadow: 0 6px 15px rgba(0, 123, 255, 0.3);
}

.submit-btn:hover {
  background: #0056b3;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 123, 255, 0.4);
}

.submit-btn:active {
  transform: translateY(1px);
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  background: #ff5c5c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.close-btn:hover {
  background: #ff3838;
  transform: scale(1.1);
}

.close-btn:active {
  background: #ff2b2b;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .form-grid {
      grid-template-columns: 1fr;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
      font-size: 0.9em;
  }

  .form-container {
      padding: 20px;
  }

  .form-container h2 {
      font-size: 1.5em;
  }

  .submit-btn {
      font-size: 1em;
  }

  .close-btn {
      width: 35px;
      height: 35px;
      font-size: 1.2em;
  }
}

@media (max-width: 480px) {
  .form-group input,
  .form-group select,
  .form-group textarea {
      padding: 12px 12px 12px 35px; /* Adjusted padding for icons */
  }

  .form-container h2 {
      font-size: 1.2em;
  }

  .submit-btn {
      font-size: 0.9em;
  }

  .close-btn {
      width: 30px;
      height: 30px;
      font-size: 1em;
  }
}

/* Dropdown Container */
.dropdown {
  position: relative;
}
/* Dropdown Button */
.dropdown .dropdown-btn {
  padding: 15px;
  padding-left: 45px; /* Adjusted padding to make room for the left icon */
  padding-right: 35px; /* Adjusted padding to make room for the right icon */
  border-radius: 10px;
  background: #f9f9f9;
  border: 1px solid #ddd;
  color: #333;
  font-size: 1em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative; /* Added for positioning the icons */
}

/* Left Box Icon */
.dropdown .dropdown-btn i.fas.fa-box {
  position: absolute;
  left: 15px;
  color: #007bff;
  font-size: 1.2em;
}

/* Right Arrow Icon */
.dropdown .dropdown-btn i.fas.fa-caret-down {
  position: absolute;
  right: 15px;
  color: #007bff;
  font-size: 1.2em;
}

/* Ensure icons stay visible after clicking */
.dropdown .dropdown-btn i.fas {
  color: #007bff;
}

.dropdown .dropdown-btn:hover i.fas {
  color: #0056b3;
}

.dropdown ul {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #ddd;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transform: translateY(-10px);
  transition: max-height 0.4s ease, opacity 0.3s ease, transform 0.4s ease;
  z-index: 1000;
}

.dropdown.open ul {
  max-height: 200px;
  opacity: 1;
  transform: translateY(0);
  overflow-y: auto;
}

/* Limit the height of the dropdown menu */
.dropdown-menu {
  max-height: 300px; /* Adjust as needed */
  overflow-y: auto;  /* Enables scrolling within the dropdown */
}

/* Dropdown Menu Items */
.dropdown ul li {
  padding: 15px;
  list-style: none;
  cursor: pointer;
  background: linear-gradient(135deg, #fff, #f1f1f1);
  opacity: 0;
  transform: translateX(-20px);
  transition: background 0.3s ease, color 0.3s ease, padding-left 0.3s ease, opacity 0.4s ease, transform 0.4s ease;
}

/* Animation Effect on Dropdown Open */
.dropdown.open ul li {
  opacity: 1;
  transform: translateX(0);
}

/* Hover Effect on Menu Items */
.dropdown ul li:hover {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: #fff;
  padding-left: 25px;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
}











.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: 120px;
  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%);
    }
  }
}







.header {
  text-align: center;
/*   text-transform: uppercase; */
  font-weight: bold;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  font-family: 'Oswald', sans-serif;
  color: #333333;
  margin-top: 65px;
}




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

* {
  font-family: Lato, sans-serif;
  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 10px; /* 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; /* Further adjusted image size */
    height: 70px; /* Further adjusted image size */
  }

  .content-holder {
    padding: 6px; /* Further reduced padding */
  }
}

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

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

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

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