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

    body {
      font-family: Arial, sans-serif;
      background-color: #fff;
      color: #333;
      padding-bottom: 15px;
      
    }

    header {
      font-family: 'Parisienne', Lato;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
     
    }
    .brand-title {
  font-size: 48px;
  font-weight: bold;
  text-align: center;
  line-height: 1.0;
}

.subtitle {
  font-size: 20px;
  font-family: 'Great Vibes', cursive;
  font-weight: 500;
  color: #888; /* or any soft color like #999, #ccc, etc. */
  letter-spacing: 1px;
  text-transform: lowercase;
}

    
    .logo {
  width: 50px;
  height: auto;
  object-fit: contain;
   color: #e91e63; /* pink */
}
     .brand-title {
      font-size: 48px;
      font-weight: bold;
    }

    .brand-title .part1 {
      color: #F28B8B; /* Soft pink */
    }

    .brand-title .part2 {
      color: #3BB9B0; /* Teal green */
    }
    header img {
      height: 25px;
    }

    .header-icons a i {
  color: #d63384;  /* or #44ada9 */
  font-size: 20px;
  margin-left: 12px;
  transition: color 0.3s ease;
}

.header-icons a:hover i {
  color: #44ada9; /* optional hover color */
}
  @keyframes ring {
      0% { transform: rotate(0); }
      20% { transform: rotate(15deg); }
      40% { transform: rotate(-10deg); }
      60% { transform: rotate(5deg); }
      80% { transform: rotate(-5deg); }
      100% { transform: rotate(0); }
    }

    /* Pulse animation */
    @keyframes pulse {
      0% { transform: scale(1); }
      50% { transform: scale(1.3); }
      100% { transform: scale(1); }
    }

    .animate-ring {
      animation: ring 0.6s ease-in-out;
    }

    .animate-pulse {
      animation: pulse 1s ease-in-out;
    }

 .main-slider-section {
  position: relative;
  overflow: visible;
  padding: 40px 0;
  background: url('bg2.avif') no-repeat center center/cover;
}

/* Wrapper */
.main-slider-wrapper {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: auto;
  overflow: hidden;
  border-radius: 16px;
 
}

/* Track */
.main-slider-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

/* Slide */
.slide {
  min-width: 100%;
  box-sizing: border-box;
}

.slide img {
  width: 100%;
  height: 450px;
  object-fit: contain; /* ✅ this shows full image without crop or blur */
  border-radius: 16px;
  display: block;
}

/* Navigation Arrows */
button.main-prev,
button.main-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  font-size: 32px;
  padding: 12px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
  transition: background 0.3s ease;
}

button.main-prev:hover,
button.main-next:hover {
  background: rgba(255, 200, 230, 0.95);
}

button.main-prev {
  left: 20px;
}

button.main-next {
  right: 20px;
}

.floating-icons {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.float-icon {
  position: absolute;
  font-size: 32px;
  color: #a07f6c; /* ✨ soft rose gold */
  opacity: 0.75;
  animation: floatIcon 6s ease-in-out infinite;
}

.icon1 { top: 10%; left: 8%; animation-delay: 0s; }
.icon2 { top: 40%; left: 85%; animation-delay: 2s; }
.icon3 { top: 70%; left: 12%; animation-delay: 1s; }
.icon4 { top: 25%; left: 45%; animation-delay: 3s; }
.icon5 { top: 60%; left: 70%; animation-delay: 4s; }

@keyframes floatIcon {
  0%   { transform: translateY(0px) rotate(0deg); }
  50%  { transform: translateY(-20px) rotate(5deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}


/* Responsive */
@media (max-width: 768px) {
  button.main-prev,
  button.main-next {
    font-size: 24px;
    padding: 8px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
  }

  button.main-prev {
    left: -20px; /* move it more to the left */
  }

  button.main-next {
    right: -20px; /* move it more to the right */
  }
}



@media (max-width: 480px) {
  .main-slider-section {
    padding: 30px 20px;
  }
  .slide img {
     height: auto;
    max-height: 200px;
    object-fit: contain; /* reduce height for small screens */
  }
}
.image-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
}

.image-modal img {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 80%;
  border-radius: 8px;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 1001;
}

    

    .promo {
      padding: 20px;
      text-align: center;
    }

    .promo h2 {
      font-size: 20px;
      font-weight: bold;
      margin-bottom: 10px;
    }

    .promo p {
      font-size: 14px;
      color: #555;
    }

    .bottom-nav {
      position: fixed;
      bottom: 0;
      width: 100%;
      background: #fda7b0;
      display: flex;
      justify-content: space-around;
      align-items: center;
      padding: 10px 0;
      box-shadow: 0 -2px 8px rgba(0,0,0,0.1);
      z-index: 999;
    }
    .nav-item i {
 
  transition: color 0.3s ease;
}

.nav-item.active i {
  color: #26bba0; /* your brand green color */
}
    .nav-item {
      text-align: center;
      font-size: 12px;
      color: #fff;
    }

    .nav-item i {
      font-size: 18px;
      display: block;
      margin-bottom: 3px;
    }

    .center-btn {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #26bba0;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 4px solid #26bba0;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  overflow: hidden; /* hides extra from inside image */
}

.center-btn img.logo-icon {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 50%;
  padding: 0;         /* remove padding */
  box-shadow: none;   /* remove inner shadow */
  background: none;   /* remove any extra background */
}



    @media (min-width: 600px) {
      .promo h2 { font-size: 24px; }
      .promo p { font-size: 16px; }
    }

    .categories {
      
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
      gap: 25px;
      text-align: center;
      padding: 20px;
    }

    .category {
      cursor: pointer;
      position: relative;
    }

    .category img {
      width: 80px;
      height: 80px;
      border-radius: 50%;
       object-fit: cover;
  background-color: #fff; /* Optional to avoid transparency gaps */
      margin-bottom: 8px;
    }

    .category-title {
      font-weight: 500;
      color: #333;
    }

  .dropdown {
  display: none;
  position: absolute;
  top: auto;
  bottom: 110%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  padding: 12px 16px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  width: max-content;
  max-width: 90vw;
  z-index: 999;
width: fit-content;
  animation: dropdownSlide 0.3s ease-in-out;
  box-sizing: border-box;
  overflow-wrap: break-word;
  word-break: break-word;
}

.dropdown.active {
  display: block;
}

.dropdown strong {
  display: block;
  font-size: 14px;
  margin-bottom: 8px;
}

.dropdown ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dropdown li {
  padding: 10px;
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.2s;
  font-size: 15px;
}
.dropdown ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  padding: 8px 12px;
  white-space: nowrap; /* ✅ Prevents text from breaking in weird ways */
  border-bottom: 1px solid #d85757;
  font-size: 14px;
  color: #ff5c8d;
}
.dropdown li:hover {
  background-color: #f3f3f3;
}
.dropdown ul li img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: cover;
}

.dropdown ul li span {
  font-size: 14px;
  color: #333;
}
.dropdown ul li .service-name {
  font-size: 14px;
  font-weight: 500;
  color: #333;
}

.dropdown ul li .price {
  font-size: 14px;
  color: #e91e63; /* Pink color */
  font-weight: bold;
  margin-left: auto;
}
@keyframes dropdownSlide {
  0% {
    opacity: 0;
    transform: translate(-50%, 10px);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

/* ✅ Responsive override */
@media (max-width: 480px) {
 .dropdown {
     max-width: 90vw;
    font-size: 14px;
    padding: 10px 12px;
  }
}@media (max-width: 768px) {
  .categories {
   grid-template-columns: 1fr; /* ✅ Only one button per row */
    padding: 10px;
    gap: 15px;
  }

  .dropdown {
    left: 0 !important;
    right: 0;
    transform: none !important;
    width: 100vw;
    max-width: 100vw;
    margin: 0 auto;
    bottom: 110%;
    padding: 10px;
    border-radius: 10px;
  }
  
}

.slider {
  scroll-snap-align: center;
  width: 300px; /* Or any fixed width you want */
  overflow: hidden;
  border: 1px solid #ccc;
}

    .experience-slider {
       overflow-x: auto;
  padding: 40px 20px;
  text-align: center;
  background: #fafafa;
}

.experience-slider h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

/* Container around slider */
.slider-container {
  scroll-snap-type: x mandatory;
   overflow-x: auto;
    position: relative;
  width: 100%;
  max-width: 900px; /* You can adjust this */
  overflow: hidden;
  margin: 0 auto;
  border-radius: 16px;
  background-color: #fafafa;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  scroll-behavior: smooth;
}

/* Inner track with horizontal scroll effect */
.slider-track {
  justify-content: center;
   border-radius: 10px;
    width: 100%;
  display: flex;
  gap: 20px;
  padding: 10px;
  transition: transform 0.5s ease-in-out;
}

/* Card-style image items */
.slider-track img {
   scroll-snap-align: center;
  width: 100vw;
  max-width: 300px;
   object-fit: contain;
  width: 300px; /* Must match .slider width */
  flex-shrink: 0;
   /* optional for image fit */
  height: 180px;
  
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.slider-track img:hover {
  transform: scale(1.05);
}

/* Arrow buttons */
button.prev,
button.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.8);
  border: none;
  font-size: 28px;
  padding: 12px;
  cursor: pointer;
  z-index: 2;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

button.prev:hover,
button.next:hover {
  background-color: rgba(255, 255, 255, 1);
}

button.prev {
  left: 10px;
}

button.next {
  right: 10px;
}
.more-slide {
  display: block;
  text-align: center;
  margin: 40px auto 0;
  text-decoration: none;
  color: #333;
  font-size: 18px;
  font-weight: 500;
  position: relative;
}

.more-slide::before {
  content: "";
  display: block;
  width: 100px;
  height: 2px;
  background-color: #ccc;
  margin: 0 auto 10px;
}

.more-slide i {
  font-size: 20px;
  margin-right: 8px;
  vertical-align: middle;
}

.more-slide p {
  display: inline;
  font-size: 16px;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .slider-track {
    gap: 0;
  }
}
@media (max-width: 768px) {
  button.prev {
    left: 5px;
  }

  button.next {
    right: 5px;
  }
}
@media (max-width: 768px) {
  .slider-track img {
    width: 100vw;
    max-width: 100vw;
  }
}
.experience-slider-custom {
  position: relative;
  padding: 30px 0;
  
  overflow: hidden;
  text-align: center;
}

.experience-slider-container {
  position: relative;
  overflow: hidden;
  max-width: 800px; /* smaller than before */
  margin: 0 auto;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  touch-action: pan-y;
}

.experience-slider-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  will-change: transform;
}

.experience-slider-track img {
  width: 100%;
  height: 350px; /* reduced from 450px */
  object-fit: contain;
  border-radius: 12px;
  flex-shrink: 0;
  flex-grow: 0;
  min-width: 100%;
  max-width: 100%;
}

.experience-prev,
.experience-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.8);
  border: none;
  font-size: 1.5rem;
  padding: 8px 12px;
  cursor: pointer;
  z-index: 2;
  border-radius: 50%;
  color: #333;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.experience-prev {
  left: 10px;
}

.experience-next {
  right: 10px;
}

.experience-more-slide {
  text-decoration: none;
  display: inline-block;
  margin-top: 16px;
}

.experience-more-content {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background-color: #fff;
  color: #333;
  padding: 10px 16px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: 0.3s ease;
}

.experience-more-content:hover {
  transform: scale(1.05);
  background-color: #f28b8b;
  color: #fff;
}
.experience-dots {
  text-align: center;
  margin-top: 15px;
}

.experience-dot {
  display: inline-block;
  height: 10px;
  width: 10px;
  margin: 0 5px;
  background-color: #ccc;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.experience-dot.active {
  background-color: #F28B8B;
}

@media (max-width: 768px) {
  .experience-slider-container {
    max-width: 95%;
  }

  .experience-slider-track img {
    height: 240px;
  }

  .experience-prev,
  .experience-next {
    font-size: 1.2rem;
    padding: 6px 10px;
  }
}

/* ===== FAQ Section ===== */
.faq-section {
  background-color: #f8eded;
  padding: 40px 20px;
  max-width: 800px;
  margin: auto;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.faq-section h2 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 30px;
  color: #333;
}

.faq-item {
  border-bottom: 1px solid #ccc;
  padding: 15px 0;
}
.icon {
  font-size: 22px;
  transition: transform 0.3s;
}


.faq-item .question {
   font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  color: #444;
  display: flex;           /* Make text + icon align in row */
  justify-content: space-between;
  align-items: center;
}
.q-text {
  flex: 1;
  padding-right: 10px;
}

.faq-item .answer {
  font-family: 'Lato', sans-serif;
  display: none;
  margin-top: 8px;
  font-size: 16px;
  color: #555;
  line-height: 1.5;
}

.faq-item.active .answer {
  display: block;
}

/* ===== Footer ===== */
.footer {
  background-color: #46b0a9;
  color: #fff;
  padding: 40px 20px 20px;
}

.footer-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: auto;
}

.footer-column {
  margin: 20px;
}

.footer-column h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #fff;
  border-bottom: 1px solid #555;
  padding-bottom: 5px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin: 8px 0;
}

.footer-column ul li a {
  color: #bbb;
  text-decoration: none;
  font-size: 14px;
}

.footer-column ul li a:hover {
  color: #fff;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #444;
  color: #aaa;
  font-size: 14px;
}

section-title {
  text-align: center;
  color: #883f6c;
  font-size: 2rem;
  margin: 40px 0 20px;
}

/* Tutorials */
/* Section Styling */
.tutorials-section {
  padding: 40px 20px;
  background-color: #fff9f9;
  text-align: center;
}

/* Title Styling */
.tutorials-section .section-title {
  font-size: 2rem;
  color: #d28bb0;
  margin-bottom: 10px;
}

.tutorials-section .section-subtitle {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 30px;
}

/* Swiper Styling */
.tutorials-swiper {
  max-width: 90%;
  margin: auto;
  overflow: hidden;
}

.swiper-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Video Styling */
.tutorial-slide video {
 width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 0 10px hotpink;
  margin-bottom: 15px;
}


/* Video Title */
.video-title {
  font-size: 1rem;
  color: #333;
  margin-top: 10px;
}
.swiper-button-next,
.swiper-button-prev {
  color: #c06b50;
  top: 45%;
}


/* Responsive */
@media (max-width: 768px) {
  .tutorial-slide video {
    max-width: 90%;
  }
}

.video-slider {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 12px;
}

.video-track {
  display: flex;
  transition: transform 0.5s ease;
}

.video-track iframe {
  width: 100%;
  max-width: 300px;
  height: 180px;
  margin: 0 5px;
  flex-shrink: 0;
  border-radius: 8px;
}

.video-prev, .video-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border: none;
  font-size: 24px;
  padding: 8px;
  cursor: pointer;
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(0,0,0,0.2);
  z-index: 2;
}
.video-prev { left: 10px; }
.video-next { right: 10px; }

/* Booking Section */
.booking-section {
  background: linear-gradient(135deg, #fffafc, #fef2f4);
  padding: 60px 20px;
  text-align: center;
  border-radius: 20px;
  max-width: 700px;
  margin: 50px auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.booking-section .section-title {
  font-size: 2.5rem;
  color: #e91e63;
  margin-bottom: 10px;
  font-weight: 700;
}

.booking-section .section-subtitle {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 40px;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.booking-form input,
.booking-form select {
  padding: 12px 20px;
  width: 100%;
  max-width: 500px;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 1rem;
  transition: border 0.3s ease;
}

.booking-form input:focus,
.booking-form select:focus {
  outline: none;
  border-color: #e91e63;
  box-shadow: 0 0 8px rgba(233, 30, 99, 0.2);
}

.booking-form button {
  padding: 14px 30px;
  background-color: #e91e63;
  color: #fff;
  border: none;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.booking-form button:hover {
  background-color: #d81b60;
}

/* Booking Section */
.booking-section {
  background: linear-gradient(135deg, #fffafc, #fef2f4);
  padding: 60px 20px;
  text-align: center;
  border-radius: 20px;
  max-width: 700px;
  margin: 50px auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.booking-section .section-title {
  font-size: 2.5rem;
  color: #e91e63;
  margin-bottom: 10px;
  font-weight: 700;
}

.booking-section .section-subtitle {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 40px;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.booking-form input,
.booking-form select {
  padding: 12px 20px;
  width: 100%;
  max-width: 500px;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 1rem;
  transition: border 0.3s ease;
}

.booking-form input:focus,
.booking-form select:focus {
  outline: none;
  border-color: #e91e63;
  box-shadow: 0 0 8px rgba(233, 30, 99, 0.2);
}

.booking-form button {
  padding: 14px 30px;
  background-color: #e91e63;
  color: #fff;
  border: none;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.booking-form button:hover {
  background-color: #d81b60;
}
@media (max-width: 768px) {
  .tutorial-slide iframe {
    height: 200px;
  }
}
.success-card {
  background: #e6ffe6;
  border-left: 5px solid #00cc66;
  padding: 20px;
  margin-top: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  animation: fadeIn 0.5s ease-in;
  text-align: center;
}

.success-card h3 {
  margin: 10px 10px;
  color: #007744;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media screen and (max-width: 768px) {
  .video-track iframe {
    max-width: 100%;
    height: 200px;
  }
  .video-track {
    flex-direction: column;
    align-items: center;
  }
}
#bookingMsg {
  margin-top: 15px;
  font-size: 16px;
  font-weight: bold;
  padding: 10px 15px;
  border-radius: 8px;
  text-align: center;
  display: none; /* Hidden initially */
}

#bookingMsg.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

#bookingMsg.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}
.review-section {
  background: #fffaf0; /* light beige */
  padding: 30px 20px;
  max-width: 600px;
  margin: 30px auto;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  font-family: 'Segoe UI', sans-serif;
  text-align: center;
}

.review-section h2 {
  color: #c59d5f; /* golden accent */
  margin-bottom: 20px;
  font-size: 1.8em;
}

.review-form input[type="text"],
.review-form select,
.review-form textarea {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 15px;
  border: 1px solid #e0cfa9;
  border-radius: 10px;
  font-size: 16px;
  background-color: #fffef9;
  transition: border 0.3s ease;
}

.review-form input:focus,
.review-form select:focus,
.review-form textarea:focus {
  border-color: #c59d5f;
  outline: none;
}

.review-form label {
  font-weight: 600;
  color: #444;
  display: block;
  margin-bottom: 5px;
  text-align: left;
}

.review-form textarea {
  min-height: 100px;
  resize: vertical;
}

.review-form button {
  background-color: #c59d5f;
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.review-form button:hover {
  background-color: #a87c3d;
}

/* Mobile responsive */
@media (max-width: 600px) {
  .review-section {
    padding: 20px 15px;
  }

  .review-form button {
    width: 100%;
  }
}


.reviews-section {
  margin: 20px 2px;
  padding: 40px 20px;
 background: linear-gradient(135deg, #fffafc, #fef2f4);
  position: relative;
  text-align: center;
}

.section-title {
  font-size: 28px;
  color: #dcae96;
  margin-bottom: 30px;
  font-weight: bold;
}

.reviews-slider-container {
  position: relative;
  overflow: hidden;
  max-width: 600px;
  margin: auto;
  width: 100%;
}

.reviews-slider-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.reviews-card {
  flex: 0 0 100%; /* Ensures only one card shows at a time */
  box-sizing: border-box;
  padding: 20px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  margin: 0;
}
.reviews-rating {
  color: #f5b301; /* gold star color */
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.reviews-text {
  font-size: 16px;
  color: #555;
  margin-bottom: 10px;
  font-style: italic;
}

.reviews-author {
  color: #a66742;
  font-weight: bold;
}

.reviews-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #dcae96;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  padding: 8px 14px;
  border-radius: 50%;
  z-index: 10;
  transition: background 0.3s ease;
}

.reviews-prev {
  left: 1px;
}

.reviews-next {
  right: 1px;
}

.reviews-nav-btn:hover {
  background: #b8886a;
}

/* ✅ Mobile responsiveness: ensure 1 full card at a time */
@media (max-width: 600px) {
  .section-title {
    font-size: 22px;
  }

  .reviews-text {
    font-size: 15px;
  }

  .reviews-nav-btn {
    font-size: 20px;
    padding: 6px 12px;
  }

  .reviews-card {
    padding: 16px;
  }
}


/* Why Home Salon */
.why-home-salon {
  background: #fff6e5;
  border-radius: 16px;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin: 40px auto;
  max-width: 1200px;
  flex-wrap: wrap; /* allows wrapping on smaller screens */
}

.why-home-salon .why-text h2 {
  color: #b91c1c;
  font-size: 22px;
  margin-bottom: 15px;
}

.why-home-salon ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.why-home-salon li {
  font-size: 16px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.why-home-salon .icon {
  color: #b91c1c;
  font-weight: bold;
  margin-right: 10px;
}

.why-home-salon .why-img img {
  width: 180px;
  max-width: 100%;
}

/* Safety Standards */
.safety-standards {
  background: #fff;
  text-align: center;
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.safety-standards h2 {
  font-size: 24px;
  margin-bottom: 30px;
  color: #111827;
}

.standards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.standard .icon {
  color: #d63384;
  margin-bottom: 10px;
}

.standard p {
  font-size: 16px;
  font-weight: 500;
  color: #1f2937;
}

/* Responsive Design */
@media (max-width: 992px) {
  .standards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-home-salon {
    flex-direction: column;
    text-align: center;
  }

  .why-home-salon .why-img {
    order: -1;
  }
}

@media (max-width: 576px) {
  .standards-grid {
    grid-template-columns: 1fr;
  }

  .why-home-salon {
    padding: 20px;
    gap: 20px;
  }

  .why-home-salon .why-text h2 {
    font-size: 20px;
  }

  .why-home-salon li {
    font-size: 14px;
  }

  .safety-standards h2 {
    font-size: 20px;
  }

  .standard p {
    font-size: 14px;
  }
}

.site-footer {
  background-color: #44ada9;
  color: white;
  padding: 40px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.footer-about img {
  height: 60px;
  margin-right: 10px;
}

.footer-logos {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.footer-about p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 10px;
}

.footer-copy {
  font-size: 13px;
  margin-top: 10px;
}

.footer-contact h3,
.footer-links h3 {
  font-size: 16px;
  margin-bottom: 12px;
}

.footer-contact ul,
.footer-links ul {
  list-style: none;
  padding: 0;
  font-size: 14px;
}

.footer-contact li,
.footer-links li {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-contact i,
.footer-social i {
  color: white;
}

.footer-social {
  margin-top: 10px;
  display: flex;
  gap: 14px;
  font-size: 20px;
}

.footer-links a {
  color: white;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

/* Intro Section Container */
.intro-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 1rem;
  background: #fff0f5;
}

/* Card Style */
.intro-card {
  max-width: 95%;
  width: 100%;
  max-width: 650px;
  padding: 2rem;
  border-radius: 20px;
  background-color: #ffeaf3;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
  animation: fadeIn 1.5s ease;
}

/* Heading */
.animated-heading {
  color: #f76c98;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 10px;
  animation: bounce 2s ease infinite alternate;
}

/* Subheading */
.sub-heading {
  color: #40b9b9;
  font-size: 17px;
  margin-bottom: 10px;
}

/* Main text */
.intro-text {
  color: #444;
  font-size: 15.5px;
  line-height: 1.6;
}

/* Divider line */
.divider {
  margin: 20px auto;
  width: 70%;
  border: 0;
  border-top: 1px solid #ddd;
}

/* Location info */
.location-info {
  color: #777;
  font-size: 14px;
  font-style: italic;
}

/* Bounce animation */
@keyframes bounce {
  0% { transform: translateY(0); }
  100% { transform: translateY(-5px); }
}

/* Fade in animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media screen and (max-width: 480px) {
  .intro-card {
    padding: 1.5rem 1rem;
  }

  .animated-heading {
    font-size: 24px;
  }

  .sub-heading {
    font-size: 15px;
  }

  .intro-text, .location-info {
    font-size: 14px;
  }
}

/* Floating Icon Base */
.floating-icon {
  position: absolute;
  font-size: 28px;
  animation: float 4s ease-in-out infinite;
  z-index: 0;
  opacity: 0.6;
}

/* Individual Positions */
.lipstick {
  top: 40%;
  left: 5%;
  animation-delay: 0s;
}

.lips {
  top: 5%;
  right: 8%;
  animation-delay: 1s;
}

.nails {
  bottom: 10%;
  left: 10%;
  animation-delay: 2s;
}

.facial {
  bottom: 5%;
  right: 12%;
  animation-delay: 3s;
}

/* Floating animation */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

/* Adjust parent container to relative */
.intro-section {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 1rem;
  background: #fff0f5;
}

/* Card (unchanged) */
.intro-card {
  position: relative;
  max-width: 95%;
  width: 100%;
  max-width: 650px;
  padding: 2rem;
  border-radius: 20px;
  background-color: #ffeaf3;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
  animation: fadeIn 1.5s ease;
  z-index: 1; /* Above floating icons */
}

.slider-dots {
  text-align: center;
  margin-top: 15px;
}

.slider-dots .dot {
  height: 12px;
  width: 12px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.3s;
  cursor: pointer;
}

.slider-dots .dot.active {
  background-color: #e91e63; /* pink active color */
}




/* Marquee Container */
.salon-marquee-container {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  width: 100%;
  max-width: 1000px; /* keeps nice size on big screens */
  margin: auto;
}

/* Track with smooth scrolling */
.salon-marquee-track {
  display: flex;
  width: max-content;
  animation: scrollSalon 25s linear infinite;
}

/* Images inside slider */
.salon-marquee-track img {
  flex-shrink: 0;
  width: 100%;
  max-width: 280px; /* how many images fit in row */
  height: auto;     /* auto height for aspect ratio */
  margin: 8px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  object-fit: contain; /* keep full image visible */
}

/* Infinite scroll keyframes */
@keyframes scrollSalon {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Navigation Buttons */
.salon-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(214,51,132,0.7);
  color: #fff;
  border: none;
  font-size: 22px;
  padding: 12px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 2;
}
.salon-prev { left: 10px; }
.salon-next { right: 10px; }

/* Pause on Hover */
.salon-marquee-container:hover .salon-marquee-track {
  animation-play-state: paused;
}

/* 📱 Mobile Responsiveness */
@media (max-width: 768px) {
  .salon-marquee-track img {
    max-width: 180px; /* smaller for tablets */
  }
}
@media (max-width: 480px) {
  .salon-marquee-track img {
    max-width: 140px; /* smaller for phones */
    margin: 5px;
  }
}
.review-section {
  background: #fffaf0; /* light beige background */
  padding: 30px 25px;
  max-width: 600px;
  margin: 40px auto;
  border-radius: 18px;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.1);
  font-family: 'Segoe UI', sans-serif;
}

.review-section h2 {
  text-align: center;
  font-size: 1.9em;
  margin-bottom: 25px;
  color: #c59d5f; /* golden accent */
  font-weight: 600;
}

/* Inputs and Textarea */
.review-section input[type="text"],
.review-section input[type="email"],
.review-section select,
.review-section textarea {
  width: 100%;
  padding: 12px 14px;
  margin-top: 5px;
  margin-bottom: 18px;
  border: 1px solid #e0cfa9;
  border-radius: 10px;
  font-size: 15px;
  background: #fffef9;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.review-section input:focus,
.review-section select:focus,
.review-section textarea:focus {
  border-color: #c59d5f;
  outline: none;
  box-shadow: 0 0 6px rgba(197, 157, 95, 0.4);
}

/* Labels */
.review-section label {
  font-weight: 600;
  color: #444;
  display: block;
  margin-bottom: 5px;
}

/* Textarea */
.review-section textarea {
  min-height: 120px;
  resize: vertical;
}

/* Submit Button */
.review-section button {
  display: block;
  width: 100%;
  padding: 14px;
  background: #c59d5f;
  color: white;
  font-size: 16px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.review-section button:hover {
  background: #a87c3d;
  transform: translateY(-2px);
}

/* Mobile Responsive */
@media (max-width: 600px) {
  .review-section {
    padding: 20px 15px;
  }

  .review-section h2 {
    font-size: 1.6em;
  }

  .review-section button {
    font-size: 15px;
    padding: 12px;
  }
}
.google-review-link {
  margin-top: 20px;
}

.google-review-link p {
  font-size: 14px;
  color: #555;
  margin-bottom: 10px;
}

.google-btn {
  display: inline-block;
  background-color: #c59d5f; /* same golden accent */
  color: white;
  padding: 12px 25px;
  border-radius: 25px;
  font-size: 16px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.google-btn:hover {
  background-color: #a87c3d;
}



    /* Product Grid */
    .product-grid {
      display:grid;
      grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
      gap:25px;
      padding:20px;
      max-width:1100px;
      margin:0 auto;
    }
    .product-card {
      background:#fff;
      border-radius:15px;
      padding:20px;
      box-shadow:0 4px 15px rgba(0,0,0,0.1);
      text-align:center;
      transition:transform 0.2s ease, box-shadow 0.2s ease;
    }
    .product-card:hover {
      transform:translateY(-5px);
      box-shadow:0 6px 20px rgba(0,0,0,0.15);
    }
    .product-card img {
      width:100%;
       height: 200px;            /* fixed height for uniform cards */
  object-fit: contain; 
      border-radius:12px;
      margin-bottom:15px;
    }
    .product-card h3 { margin:10px 0; font-size:20px; color:#d63384; }
    .product-card p { font-size:14px; color:#555; margin:5px 0; }
    .product-card .price { font-weight:bold; color:#000; font-size:16px; margin:10px 0; }
    .product-card button {
      padding:10px 20px;
      background:#d63384;
      color:white;
      border:none;
      border-radius:8px;
      cursor:pointer;
      transition:background 0.2s ease;
    }
    .product-card button:hover { background:#b52b6f; }

  /* Cart Section */
#cart {
  padding: 50px 20px;
  background: linear-gradient(135deg, #fff0f6, #fafafa);
  border-top: 5px solid #d63384;
  margin-top: 50px;
  font-family: 'Poppins', sans-serif;
}

#cart .container {
  max-width: 850px;
  margin: 0 auto;
  background: #fff;
  padding: 30px 35px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#cart .container:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.18);
}

#cart h2 {
  text-align: left;
  font-size: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #d63384;
  margin-bottom: 20px;
}

#cart-items ul { 
  list-style: none; 
  padding: 0; 
  margin: 0; 
}

#cart-items li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
  font-size: 16px;
  transition: background 0.2s ease;
}

#cart-items li:hover {
  background: #fff0f5;
  border-radius: 10px;
  padding-left: 10px;
}

#cart-items button {
  padding: 6px 12px;
  background: #ff4d4d;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 13px;
  transition: background 0.2s ease, transform 0.2s ease;
}

#cart-items button:hover {
  background: #e60000;
  transform: scale(1.05);
}

#cart-total { 
  font-weight: bold; 
  margin: 25px 0; 
  font-size: 18px;
  color: #333;
}

#checkout-btn {
  width: 100%;
  padding: 16px;
  background: #25D366;
  color: white;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 500;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

#checkout-btn:hover {
  background: #1da851;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}


    /* Responsive Fix */
    @media(max-width:600px) {
      .product-card img { height:160px; }
      .product-card h3 { font-size:18px; }
      #cart .container { padding:20px; }
      #checkout-btn { font-size:15px; padding:12px; }
    }
    .nail-option {
  padding: 10px 15px;
  border: 2px solid #e91e63; /* pink border */
  border-radius: 8px;
  background: #fff;
  font-size: 15px;
  font-weight: 500;
  color: #333;
  outline: none;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  max-width: 220px; /* keeps it neat */
  appearance: none; /* remove default arrow */
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg fill='%23e91e63' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px;
}

.nail-option:hover {
  border-color: #d81b60;
  background: #fef3f8;
}

.nail-option:focus {
  border-color: #c2185b;
  box-shadow: 0 0 5px rgba(233, 30, 99, 0.5);
}
#tutorials .swiper-button-prev,
#tutorials .swiper-button-next {
  position: absolute;
  top: 50%;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  cursor: pointer;
  z-index: 10;
  user-select: none;
  transform: translateY(-50%);
}

#tutorials .swiper-button-prev::after {
  content: '❮'; /* left arrow */
}

#tutorials .swiper-button-next::after {
  content: '❯'; /* right arrow */
}

#tutorials .swiper-button-prev {
  left: 10px;
}

#tutorials .swiper-button-next {
  right: 10px;
}
