.section-title {
  text-align: center;
  font-size: 2rem;
  margin: 20px 0;
  color: #333;
}

/* Carousel */
.carousel-container {
  position: relative;
  max-width: 100%;
  overflow: hidden;
  padding: 0 40px;
  margin: 20px;
}

.product-carousel {
  overflow-x: auto;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;    
}
.product-carousel::-webkit-scrollbar {
  display: none; 
}

.product-track {
  display: flex;
  gap: 20px;
  min-width: max-content;
  padding: 10px 0;
}




.product-card {
  flex: 0 0 auto;
  width: 180px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s;
  margin: 25px 0px;
}

.product-card:hover {
  transform: scale(1.05);
}

.product-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
}

.product-card h3 {
  padding: 10px;
  font-size: 1rem;
}

/* Scroll Buttons */
.scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border: none;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  cursor: pointer;
  padding: 10px;
  border-radius: 50%;
  z-index: 1;
}

.scroll-btn.left {
  left: 10px;
}

.scroll-btn.right {
  right: 10px;
}

.scroll-btn:hover {
  background: #eee;
}

/* Responsive */
@media (max-width: 768px) {
  .product-card{
    width: 130px;
  }
  .product-card img {
    width: 100px;
    height: 100px;
  }

  .scroll-btn {
    padding: 8px;
  }
}

.offers-section {
  padding: 40px 20px;
  background: #f8efef;
}

.offers-container {
  max-width: 1150px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}

.offer-box {
  position: relative;
  flex: 1 1 250px;
  min-height: 180px;
  padding: 24px;
  border-radius: 16px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.content-wrapper {
  border: 2px solid #FF5ACC;
  padding: 20px;
  max-width: 1300px;
  margin: 0 auto;
  border-radius: 10px;
}

/* Unique background colors */
.box0 {
  text-align: center;
  background: #FF5ACC;
}
.box2 {
  background: #FF5ACC;
  text-align: center;
}
.box3 {
  background: #FF5ACC;
  text-align: center;
}

/* Text content */
.offer-box h3 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
  z-index: 2;
}
.offer-box p {
  margin: 10px 0 0;
  font-size: 0.95rem;
  line-height: 1.5;
  z-index: 2;
}

/* Discount badge */
.offer-discount {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #ffffff;
  color: #ff6f61;
  font-weight: bold;
  padding: 10px 18px;
  border-radius: 30px;
  font-size: 1rem;
  box-shadow: 0 3px 6px rgba(0,0,0,0.2);
  z-index: 3;
}

.box0 .offer-discount {
  color: #ff6f61;
}

.box2 .offer-discount {
  color: #3f51b5;
}

.box3 .offer-discount {
  color: #4caf50;
}


/* ========== SHAPES (4 per box) ========== */
.background-shape {
  position: absolute;
  opacity: 0.15;
  z-index: 1;
  pointer-events: none;
}

/* ===== BOX 0 SHAPES (Red Theme) ===== */
.box0 .shape1 {
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, #fff 40%, transparent 60%);
  border-radius: 50%;
  top: -30px;
  left: -30px;
}
.box0 .shape2 {
  width: 100px;
  height: 60px;
  background: url("data:image/svg+xml;utf8,<svg width='100' height='60' xmlns='http://www.w3.org/2000/svg'><path fill='%23fff' fill-opacity='0.2' d='M0 30 Q25 0 50 30 T100 30 V60 H0 Z'/></svg>") no-repeat center/contain;
  bottom: 0;
  right: 0;
}
.box0 .shape3 {
  width: 120px;
  height: 120px;
  background: linear-gradient(45deg, #fff, transparent);
  border-radius: 50%;
  top: 40%;
  left: 20px;
}
.box0 .shape4 {
  width: 80px;
  height: 80px;
  background: rgba(255,255,255,0.2);
  border-radius: 30% 70% 70% 30%;
  bottom: 10px;
  left: -20px;
}

/* ===== BOX 2 SHAPES (Blue Theme) ===== */
.box2 .shape1 {
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, #fff 40%, transparent 60%);
  border-radius: 50%;
  top: -20px;
  right: -30px;
}
.box2 .shape2 {
  width: 80px;
  height: 50px;
  background: url("data:image/svg+xml;utf8,<svg width='80' height='50' xmlns='http://www.w3.org/2000/svg'><path fill='%23fff' fill-opacity='0.2' d='M0 25 Q20 0 40 25 T80 25 V50 H0 Z'/></svg>") no-repeat center/contain;
  bottom: 20px;
  left: 20px;
}
.box2 .shape3 {
  width: 60px;
  height: 60px;
  background: #fff;
  opacity: 0.1;
  border-radius: 50%;
  bottom: 0;
  right: 50%;
}
.box2 .shape4 {
  width: 100px;
  height: 100px;
  background: linear-gradient(to bottom left, #fff, transparent);
  border-radius: 60% 40% 30% 70%;
  top: 40px;
  left: 10px;
}

/* ===== BOX 3 SHAPES (Green Theme) ===== */
.box3 .shape1 {
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, #fff 30%, transparent 70%);
  border-radius: 50%;
  top: -20px;
  left: 10px;
}
.box3 .shape2 {
  width: 80px;
  height: 60px;
  background: url("data:image/svg+xml;utf8,<svg width='80' height='60' xmlns='http://www.w3.org/2000/svg'><path fill='%23fff' fill-opacity='0.15' d='M0 30 Q20 0 40 30 T80 30 V60 H0 Z'/></svg>") no-repeat center/contain;
  top: 60%;
  right: 10px;
}
.box3 .shape3 {
  width: 90px;
  height: 90px;
  background: rgba(255,255,255,0.2);
  border-radius: 50% 50% 30% 70%;
  bottom: 0;
  left: 30%;
}
.box3 .shape4 {
  width: 60px;
  height: 60px;
  background: #fff;
  opacity: 0.1;
  border-radius: 50%;
  bottom: 20px;
  right: 10px;
}

/* Responsive layout */
@media (max-width: 768px) {
  .offers-container {
    flex-direction: column;
  }

  .offer-box {
    padding: 20px;
    text-align: center;
  }

  .offer-discount {
    position: static;
    margin-top: 15px;
    transform: none;
    display: inline-block;
  }

  .background-shape {
    display: none; /* Optional on mobile for readability */
  }
}



/* Trending Section */
.trending-section {
  background: #fbf7f8;
  padding: 20px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.trending-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.trending-title {
  font-size: 2rem;
  color: #FF5ACC;
  margin-bottom: 40px;
}

.trending-items {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
}

.trend-box {
  background: #ffffff;
  border-radius: 20px;
  padding: 30px 20px;
 border: 1px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  flex: 1 1 280px;
  max-width: 350px;
 
}


.trend-box:hover {
   border-color: #eee;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
  cursor: pointer;
}

.trend-icon {
  font-size: 2.5rem;
  color: #FF5ACC;
  margin-bottom: 15px;
}

.trend-box h3 {
  font-size: 1.4rem;
  color: #333;
  margin-bottom: 10px;
}

.trend-box p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .trending-items {
    flex-direction: column;
    align-items: center;
  }

  .trend-box {
    width: 90%;
  }

  .trending-title {
    font-size: 2rem;
  }
}

/* SECTION BASE */
.services-section {
  position: relative;
  padding: 20px 20px;
  background-color: #f7f7f7;
  overflow: hidden;
  font-family: 'Segoe UI', sans-serif;
}

/* SHAPES */
.services-background-shapes .shape {
  position: absolute;
  z-index: 0;
  opacity: 0.1;
}

.shape.circle {
  width: 500px;
  height: 200px;
  background-color: #d81b60;
  border-radius: 50%;
  top: 0%;
  left: -255px;
}

/* .shape.flower {
  width: 320px;
  height: 120px;
  background: radial-gradient(circle, #e91e63 30%, transparent 31%);
  background-size: 40px 40px;
  background-repeat: repeat;
  top: 50%;
  left: 45%;
  transform: translate(-50%, -50%);
} */

/* .shape.swirl {
  width: 360px;
  height: 660px;
  background: conic-gradient(from 0deg, #f06292 0deg 120deg, transparent 60deg 420deg);
  border-radius: 50%;
  bottom: -450px;
  right: -65px;
  
} */

/* CONTAINER */
.services-container {
  position: relative;
  z-index: 1;
  max-width: 1300px;
  margin: auto;
  text-align: center;
}

/* HEADINGS */
.services-title, .staffs {
  font-size: 1.8rem;
  color: #FF5ACC;
  margin-bottom: 10px;
  margin-top: 5px;
  margin-bottom: 15px;
}

.services-subtitle {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 40px;
}

/* GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
  z-index: 1;
  position: relative;
  padding-top: 10px;
  padding-bottom: 10px;
  
}


/* CARD */
.service-card {
  background: #fff;
  border-radius: 18px;
  padding: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 12px;
}

.service-card h3 {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 8px;
}

.service-card p {
  font-size: 0.9rem;
  color: #666;
}

/* FOOTER */
.availability-note {
  margin-top: 40px;
  font-size: 1rem;
  color: #444;
}

.book-button {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 30px;
  background-color: #FF5ACC;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 30px;
  transition: background 0.3s ease;
}

.book-button:hover {
  background-color: #FF5ACC;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .services-title {
    font-size: 2rem;
  }

  .services-subtitle {
    font-size: 1rem;
  }

  .service-card img {
    height: 130px;
  }
}

.why-choose-section {
  padding: 40px 20px;
  background-color: #ece8fa;
  font-family: 'Segoe UI', sans-serif;
  text-align: center;
}

.why-title {
  font-size: 2rem;
  color: #FF5ACC;
  margin-bottom: 50px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 25px;
  max-width: 1400px;
  margin: 0 auto;
}

.why-card {
  background: #fff;
  padding: 25px 20px;
  border-radius: 16px;
  border: 1px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
  border-color: #eee;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);

}


/* .why-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
} */

.why-card i {
  font-size: 2.5rem;
  color:  #FF5ACC;
  margin-bottom: 15px;
}

.why-card h3 {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 8px;
}

.why-card p {
  font-size: 0.95rem;
  color: #666;
}

/* Responsive */
@media (max-width: 768px) {
  .why-title {
    font-size: 2rem;
  }

  .why-card i {
    font-size: 2rem;
  }

  .why-card {
    padding: 20px 16px;
  }
}


.footer {
  background-color: #1f1f2e;
  color: #ccc !important;
  padding: 60px 20px 30px;
  font-family: 'Segoe UI', sans-serif;
}

.legal li{
 line-height: 1.7rem;
 color: #ccc !important;
}

.legal li:hover{
  color:white;
  
}
/* .featured__item__pic__hover {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card:hover .featured__item__pic__hover {
  opacity: 1;
}

.featured__item__pic__hover li a {
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  
  border-radius: 50%;
  display: inline-block;
}

.hover-icons {
  z-index: 2;
} */
.hover-icons {
  position: absolute;
  bottom: 55px; /* Moved 15px from the bottom */
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  background-color: #FF5ACC;
}

.card:hover .hover-icons {
  opacity: 1;
}

.featured__item__pic__hover li a {
  color: #fff;
  background: rgba(0, 0, 0, 0.6);
  
  border-radius: 50%;
  display: inline-block;
}
.featured__item__pic__hover li:hover a {
	background:#FF5ACC;
	border-color: #FF5ACC;
}

.sidebar {
  position: fixed;
  top: 0;
  right: -100%; /* Hidden by default */
  width: 300px;
  height: 100%;
  background: white;
  box-shadow: -2px 0 5px rgba(0,0,0,0.3);
  overflow-y: auto;
  z-index: 1050;
  transition: right 0.3s ease;
}

.sidebar.show {
  right: 0; /* Slide in */
}

.sidebar-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.5);
  z-index: 1040;
  display: none;
}

.sidebar-backdrop.show {
  display: block;
}

.sidebar-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.sidebar-item img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
  margin-right: 12px;
}

.sidebar-item-info {
  flex: 1;
}

.sidebar-item button {
  background: transparent;
  border: none;
  color: #dc3545;
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0;
}

li a span {
  background: red;
  color: white;
  padding: 2px 6px;
  border-radius: 50%;
  font-size: 12px;
  vertical-align: top;
  margin-left: 4px;
}

@media (max-width: 576px) {
  .sidebar {
    max-width: 100%;
  }
}


 .btn-pink {
    background-color: #FF5ACC;
    color: white;
    border: none;
    border-radius: 5px;
  }
  .btn-pink:hover {
    background-color: #FF5ACC;
  }


  .staff-img {
    height: 150px;
    object-fit: cover;
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
  }

  .staff-name {
    font-size: 1rem;
    color: #FF5ACC; /* Pink tone */
    font-weight: 600;
  }

  .staff-role {
    font-size: 0.75rem;
    color: #555;
  }

  @media (max-width: 768px) {
    .staff-img {
      height: 220px;
    }

    .staff-name {
      font-size: 1rem;
    }

    .staff-role {
      font-size: 0.85rem;
    }
  }

  @media (max-width: 576px) {
    .staff-img {
      height: 220px;
    }

    .staff-name {
      font-size: 0.95rem;
    }

    .staff-role {
      font-size: 0.8rem;
    }
  }


 
    .swiper-pagination {
        position: absolute;
        bottom: 20px;
        left: 0;
        right: 0;
        text-align: center;
        color: #FF5ACC !important;
    }
    .swiper-pagination-bullet {
        background: white;
        opacity: 0.6;
        color: #FF5ACC !important;
       
    }
    .swiper-pagination-bullet-active {
        opacity: 1;
        color: #FF5ACC !important;
      
    }
    .hero__item {
        background-size: cover;
        background-position: center;
        height: 500px; /* adjust as needed */
        position: relative;
        display: flex;
    }

.hero__item-overlay {
   
    background: rgba(1, 0, 0, 0.3); /* dark black overlay */

}
.primary-btn{
  text-decoration: none;
}

.staff-card {
  min-width: 370px;
  background: #fff;
  border-radius: 12px;
}

.staff-img {
  width: 120px;
  height: 120px;
  object-fit: cover;
}

.text-pink {
  color: #FF5ACC;
}
/* Arrow buttons style */
.scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  border: none;
  border-radius: 50%;
  box-shadow: 0 0 5px rgba(0,0,0,0.2);
  width: 36px;
  height: 36px;
  z-index: 2;
  color: #e91e63; /* pink color */
  display: flex;
  align-items: center;
  justify-content: center;
}

.scroll-btn.left { left: -50px; }
.scroll-btn.right { right: -50px; }

/* Hide bottom scrollbar */
#staff-scroll::-webkit-scrollbar {
  display: none;
}
#staff-scroll {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;     /* Firefox */
}

/* .staffs-heading{
  font-size: 1.8rem;
  color:#FF5ACC;
  font-weight: 600;
} */

.d-flex i{
  color:#FF5ACC;
}