/* ---- General Styling ---- */

:root {
  --theme-color: #f34f81;
  --theme-color-dark: #c93f69;
  --theme-color-light: #ff7fa6;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

html,
body {
  /* -----------copy pasting feature start------------ */
  /* -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none; */

  /* ------------copy pasting feature end------------ */
  background: #fff8f8;
  overflow-x: hidden !important;
  margin-top: 180px;
}


@media (max-width: 768px) {
  body {
    margin-top: -80px !important;
  }
}

/* ------------------------------------------------
   RESPONSIVE TOP BAR
-------------------------------------------------- */
.topbar {
  width: 100%;
  /* background: linear-gradient(135deg, #e91e63, #ff85a2); */
  background-color: var(--theme-color);
  color: white;
  padding: 8px 0;
  height: 55px;
  position: fixed;
  top: 0;
  z-index: 50;
}

.topbar-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Text Left Area */
.top-left {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.top-left span {
  font-size: 20px;
  font-weight: 700;
}

.top-left i {
  margin-right: 6px;
}

/* Icons Right */
.top-right {
  display: flex;
  /* gap: 15px; */
}

.top-right a {
  width: 38px;
  height: 38px;
  line-height: 38px;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 4px;
  font-size: 18px;
  color: #fff;
  text-decoration: none;
  transition: 0.3s ease;
}

/* Facebook */
.top-right a:nth-child(1) {
  background: #1877f2;
}

/* Instagram (gradient) */
.top-right a:nth-child(2) {
  background: linear-gradient(45deg,
      #feda75,
      #d62976,
      #962fbf,
      #4f5bd5);
}

/* YouTube */
.top-right a:nth-child(3) {
  background: #ff0000;
}

/* WhatsApp */
.top-right a:nth-child(4) {
  background: #25d366;
}

/* Messenger */
.top-right a:nth-child(5) {
  background: #0084ff;
}

/* LinkedIn */
.top-right a:nth-child(6) {
  background: #0077b5;
}

/* YouTube (again) */
.top-right a:nth-child(7) {
  background: #ff0000;
}

/* Snapchat */
.top-right a:nth-child(8) {
  background: #fffc00;
  color: #000;
}

/* Hover effect */
.top-right a:hover {
  transform: scale(1.15);
}

@media (max-width: 768px) {
  #personaz_topbar {
    display: none !important;
  }

  #personaz_header {
    top: 0 !important;
  }
}


/* MAIN NAVBAR */
/* used tailwind css */


/* MINI NAVBAR */
/* used tailwind css */


/* -----------------------------
   HERO BANNER SECTION
--------------------------------*/
.hero-banner {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Banner image */
.hero-banner__image {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Book Now Button */
.hero-banner__book-now-btn {
  position: absolute;
  bottom: 30px;
  left: 14%;
  transform: translateX(-50%);
  background: var(--theme-color);
  padding: 14px 55px;
  font-size: 18px;
  font-weight: 600;
  color: white;
  border-radius: 30px;
  cursor: pointer;
  text-decoration: none;
  transition: 0.3s ease;
}

.hero-banner__book-now-btn:hover {
  background-color: var(--theme-color-dark);
}

/* ------------------------------------
   RESPONSIVENESS
------------------------------------- */

/* Tablet */
@media (max-width: 991px) {
  .hero-banner__book-now-btn {
    bottom: 30px;
    padding: 12px 45px;
    font-size: 16px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .hero-banner__book-now-btn {
    bottom: 20px;
    padding: 10px 35px;
    font-size: 14px;
  }
}

/* ===========================================
   SERVICE SECTION (BEM + PRODUCTION STYLE)
=========================================== */

.service-section {
  width: 100%;
  background: #ffffff;
  padding: 40px 15px;
  display: flex;
  justify-content: center;
}

.service-section__container {
  width: 100%;
  max-width: 1100px;
  margin: auto;
}

.service-section__header {
  max-width: 550px;
  margin: 0 auto;
  text-align: center;
}

.service-section__title {
  font-size: 22px;
  font-weight: 400;
  color: #100408;
  font-family: "Poppins", sans-serif;
}

.service-section__title span {
  color: var(--theme-color);
}

.service-section__subtitle {
  margin-top: 10px;
  font-size: 14px;
  color: #66646c;
  font-family: "Poppins", sans-serif;
}

/* ------------------------------
   SERVICE GRID
--------------------------------*/
.service-section__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
  margin-top: 35px;
}

/* ------------------------------
   SERVICE CARD
--------------------------------*/


.service-card_top {
  width: 350px;
  border-radius: 12px;
  text-align: center;
}

.service-card__image_top {
  width: 100%;
  min-height: 300px;
  object-fit: cover;
  border-radius: 18px;
  transition: 0.4s ease;
}

/* -------------------changed--------------------- */


.service-card__image-wrapper {
  position: relative;
  width: 100%;
  display: block;
  overflow: hidden;
  border-radius: 18px;
}

/* IMAGE */
.service-card__image {
  width: 100%;
  /* min-height: 300px; */
  object-fit: cover;
  border-radius: 18px;
  transition: 0.4s ease;
}

/* BLACK OVERLAY */
.service-card__image-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  /* by default invisible */
  border-radius: 18px;
  transition: 0.4s ease;
}

/* HOVER EFFECT */
.service-card__image-wrapper:hover::after {
  background: rgba(0, 0, 0, 0.25);
  /* black film */
}

/* IMAGE ZOOM ON HOVER (optional but looks premium) */
.service-card__image-wrapper:hover .service-card__image {
  transform: scale(1.08);
}


/* --------------------changed------------------------- */

.service-card__title {
  margin-top: 12px;
  text-align: center;
  color: #100408;
  font-size: 14px;
  font-weight: 600;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .menu-icon {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 80px;
    right: -100%;
    width: 250px;
    background: white;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    transition: 0.3s ease;
  }

  .nav-links.open {
    right: 20px;
  }

  .nav-links li {
    margin: 15px 0;
  }
}

@media (max-width: 900px) {
  .topbar-container {
    flex-direction: column;
    gap: 5px;
    text-align: center;
  }

  .topbar::after {
    border-bottom: 30px solid transparent;
    border-right: 30px solid white;
  }

  .top-left {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .top-left span {
    font-size: 12px;
  }

  .top-right a {
    font-size: 14px;
  }

  .topbar::after {
    border-bottom: 24px solid transparent;
    border-right: 24px solid white;
  }
}

@media (min-width: 768px) {
  .service-section {
    padding: 70px 20px;
  }

  /* .service-card {
    width: 200px;
  } */

  .service-card__image {
    height: 180px;
  }

  .service-section__title {
    font-size: 28px;
  }

  .service-section__subtitle {
    font-size: 15px;
  }
}

@media (min-width: 1400px) {
  /* .service-card {
    width: 220px;
  } */

  .service-card__image {
    height: 210px;
    border-radius: 25px;
  }

  .service-card__image-wrapper {
    border-radius: 25px;
  }
}

/* ------------------------changed------------------------------------ */

.hsu-services-wrapper {
  padding: 40px 0;
  background: #fff;
}

.hsu-container {
  width: 90%;
  max-width: 1300px;
  margin: auto;
}

.hsu-services-row {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.hsu-column {
  width: 48%;
}

.hsu-title {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 25px;
}

.hsu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.hsu-box {
  text-align: center;
}

.hsu-box:hover .hsu-text {
  color: var(--theme-color);
}

.hsu-box img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 15px;
}

.hsu-text {
  margin-top: 10px;
  font-size: 16px;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 1046px) {
  .hsu-column {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .hsu-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}


/* ------------------------changed----------------------------------- */

/* -----------------------------
   HERO SLIDER WRAPPER
--------------------------------*/
.hero-slider {
  width: 100%;
  max-width: 1170px;
  margin: auto;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.15);
}

/* Slide Track */
.hero-slider__track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

/* Each Slide */
.hero-slide {
  min-width: 100%;
  position: relative;
}

/* Slide Image */
.hero-slide__image {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  border-radius: 16px;
}

/* Navigation Buttons */
.hero-slider__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.6);
  border: none;
  padding: 12px 16px;
  cursor: pointer;
  border-radius: 50%;
  backdrop-filter: blur(6px);
  transition: 0.3s ease;
  font-size: 20px;
}

.hero-slider__nav:hover {
  background: rgba(255, 255, 255, 0.9);
}

.hero-slider__nav--prev {
  left: 15px;
}

.hero-slider__nav--next {
  right: 15px;
}

/* Dots */
.hero-slider__dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.hero-slider__dots span {
  width: 12px;
  height: 12px;
  background: white;
  border-radius: 50%;
  opacity: 0.5;
  transition: 0.3s;
  cursor: pointer;
}

.hero-slider__dots .active {
  opacity: 1;
  transform: scale(1.2);
}

/* Mobile Responsive */
@media (max-width: 600px) {
  .hero-slide__image {
    height: fit-content;
    object-fit: contain;
  }

  .hero-slider__nav {
    padding: 10px 14px;
    font-size: 16px;
  }
}

/* -----------------------------------------
   RESPONSIVE RULES
----------------------------------------- */

/* Tablets */
@media (max-width: 991px) {
  .swagmee-col-lg-6 {
    width: 100%;
    margin-bottom: 40px;
  }

  .home-sevices-section .title {
    font-size: 24px;
  }
}

/* Mobile Landscape */
@media (max-width: 768px) {

  .swagmee-col-lg-4,
  .swagmee-col-sm-4,
  .swagmee-col-xs-4 {
    width: 33.33%;
  }

  .home-sevices-inner-section img {
    max-width: 120px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {

  .swagmee-col-lg-4,
  .swagmee-col-sm-4,
  .swagmee-col-xs-4 {
    width: 50%;
  }

  .home-sevices-section .title {
    font-size: 20px;
  }

  .home-sevices-inner-section img {
    max-width: 100px;
  }
}

/* ladyFair section css */

/* Section heading */
.section-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: #111;
  margin-bottom: 8px;
}

.section-sub {
  text-align: center;
  font-size: 18px;
  color: #666;
  margin-bottom: 40px;
}

/* Slider container */
.beauty {
  width: 90%;
  padding-bottom: 20px !important;
}

/* Card */
.beauty .swiper-slide {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  height: 380px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease;
}

.beauty .swiper-slide:hover {
  transform: translateY(-6px);
}

.beautyTips {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: #333;
  text-decoration: none;
}

/* Image */
.beautyTips .imgBx {
  height: 170px;
  width: 100%;
  overflow: hidden;
  background: #eee;
}

.beautyTips .imgBx img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.35s ease-in-out;
}

.beautyTips:hover .imgBx img {
  transform: scale(1.07);
}

/* Text area */
.beautyTips .info {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.beautyTips h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.35;
  height: 45px;
  overflow: hidden;
  color: #222;
}

.beautyTips p {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
  flex: 1;
  overflow: hidden;
}

/* Navigation Buttons */
.swiper-button-next,
.swiper-button-prev {
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;

  transition: all 0.35s ease;
}

/* Hover effect */
.swiper-button-next:hover,
.swiper-button-prev:hover {
  color: var(--theme-color-dark);
}

/* Remove default arrow icons & keep them centered */
.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 20px;
  font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
  .beauty .swiper-slide {
    height: 350px;
  }

  .beautyTips .imgBx {
    height: 150px;
  }
}

@media (max-width: 480px) {
  .beauty .swiper-slide {
    height: 330px;
  }

  .beautyTips .imgBx {
    height: 135px;
  }
}

/* yes madam section css */
/* Main section wrapper */
.banner-section {
  margin: 12px auto;
  max-width: 80%;
}

/* Row wrapper: flex gap */
.banner-row {
  display: flex;
  gap: 16px;
}

/* Each clickable link */
.banner-link {
  width: 100%;
  cursor: pointer;
  display: block;
}

/* Image styling */
.banner-image {
  width: 100%;
  height: auto;
  object-fit: contain;
  /* margin-top: 48px; */
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect */
.banner-link:hover .banner-image {
  transform: scale(1.02);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.18);
}

/* Responsive */
@media (max-width: 768px) {
  .banner-row {
    flex-direction: column;
  }

  .banner-image {
    margin-top: 24px;
  }
}

/* ------------------------------------------------------------------------------------------------- */

/* next phase css */

/* main s-7 section */
.about-section {
  width: 100%;
  background: #fff;
  font-family: Arial, sans-serif;
}

.about-section__container {
  max-width: 1200px;
  display: flex;
  gap: 30px;
  align-items: flex-start;
  justify-content: center;
  margin: auto;
}

.about-section__image-wrapper {
  width: 100%;
  flex: 1;
}

.about-section__image {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}

.about-section__content {
  flex: 1.3;
}

.about-section__title {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 12px;
  text-align: left;
  position: relative;
}

.about-section__title::after {
  content: "";
  width: 80px;
  height: 3px;
  background: #b71c1c;
  display: block;
  margin-top: 6px;
}

.about-section__text {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 12px;
  color: #444;
}

.about-section__stats {
  max-width: 1200px;
  margin: 40px auto 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
}

.stats-card {
  flex: 1;
  min-width: 190px;
  background: var(--theme-color);
  color: white;
  text-align: center;
  padding: 20px 15px;
  border-radius: 10px;
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
  transition: 0.3s ease-in-out;
}

.stats-card:hover {
  transform: translateY(-5px);
}

.stats-card__value {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 5px;
}

.stats-card__label {
  font-size: 14px;
  opacity: 0.9;
}

/* 📱 Responsive Styling */
@media (max-width: 992px) {

  .about-section__container {
    flex-direction: column;
    text-align: center;
  }

  .about-section__title {
    text-align: center;
  }

  .about-section__title::after {
    margin: 6px auto;
  }
}

@media (max-width: 600px) {
  .about-section {
    width: 85%;
    margin: 0 auto;
  }

  .stats-card {
    min-width: 100%;
  }
}

/* main s-8 section css */
/* ------------------------------
   FEATURED SERVICES SECTION
--------------------------------*/
.featured-services {
  width: 100%;
  margin-top: 40px;
  padding: 20px 0 20px;
  /* background: #fff4fb; */
}

/* Section Titles */
.featured-services__header {
  text-align: center;
  max-width: 1050px;
  margin: auto;
}

.featured-services__title {
  font-size: 2rem;
  font-weight: 700;
  color: black;
  margin-bottom: 20px;
}

.featured-services__title::after {
  content: "";
  width: 80px;
  height: 4px;
  background: var(--theme-color);
  border-radius: 4px;
  display: block;
  margin: 10px auto 0;
}

.featured-services__subtitle {
  font-size: 1.2rem;
  font-weight: 600;
  color: #5a5a5a;
}

/* ------------------------------
   Carousel Wrapper
--------------------------------*/
.featured-services__carousel-wrapper {
  width: 94%;
  position: relative;
  display: flex;
  align-items: center;
  margin: 40px auto;
}

/* Carousel Track */
.featured-services__carousel {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 25px;
  padding-bottom: 10px;
}

.featured-services__carousel::-webkit-scrollbar {
  display: none;
}

/* ------------------------------
   Service Card (Updated)
--------------------------------*/
.service-card {
  min-width: 200px;
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  flex-shrink: 0;
  cursor: pointer;
  text-decoration: none;
}

/* IMAGE CONTAINER */
.service-card__image {
  position: relative;
  width: 100%;
  height: 260px;
  overflow: hidden;
  border-radius: 14px;
}

/* IMAGE */
.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s ease;
}

/* BLACK OVERLAY */
.service-card__image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
  transition: 0.3s ease;
  z-index: 2;
}

/* HOVER ZOOM */
.service-card:hover img {
  transform: scale(1.12);
}

/* TITLE ON IMAGE */
.service-card__label {
  position: absolute;
  bottom: 18px;
  left: 0;
  width: 100%;
  text-align: center;
  color: #fff;
  z-index: 3;
  font-size: 18px;
  font-weight: 600;
}

/* ------------------------------
   Arrow Buttons
--------------------------------*/
.carousel-btn-featured-services {
  width: 90px;
  /* height: 60px; */
  background: var(--theme-color);
  border: none;
  color: #fff;
  cursor: pointer;
  font-size: 30px;
  border-radius: 50%;
  transition: 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

.carousel-btn-featured-services:hover {
  background: var(--theme-color-dark);
}

.carousel-btn--prev {
  margin-right: 15px;
}

.carousel-btn--next {
  margin-left: 15px;
}

/* Responsive */
@media (max-width: 768px) {
  .featured-services__title {
    font-size: 1.6rem;
  }

  .service-card__image {
    height: 180px;
  }

  .carousel-btn-featured-services {
    display: block;
  }
}

@media (max-width: 600px) {
  .service-card {
    width: 100%;
  }

  .featured-services {
    width: 85%;
    margin: 0 auto;
  }

  .carousel-btn-featured-services {
    border-radius: 20px;
    background: none;
    color: black;
  }

  .carousel-btn-featured-services:hover {
    background: none;
    color: palevioletred;
  }
}


/* section personaz video */
/* ===============================
   VIDEO GALLERY SECTION
================================*/
.category_page.detailgallery {
  /* max-width: 1200px; */
  margin: 0 auto;
  /* padding: 60px 5%; */
  background: #fff;
}

/* Section Title */
.videos-section-details .title_3 {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: black;
  margin-bottom: 30px;
  position: relative;
}

.videos-section-details .container {
  width: 90% !important;
  margin: 0 auto !important;
}

/* Accent underline */
.videos-section-details .title_3::after {
  content: "";
  width: 80px;
  height: 4px;
  background: var(--theme-color);
  border-radius: 4px;
  display: block;
  margin: 10px auto 0;
}

/* ===============================
   VIDEO CARD STYLING
================================*/
.video {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  background: #000;
}

.video video {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* Hover UI */
.video:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.15);
}

.video::after {
  content: "▶";
  position: absolute;
  font-size: 50px;
  color: rgba(255, 255, 255, 0);
  opacity: 0;
  transition: 0.4s ease;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

/* Hover play icon */
.video:hover::after {
  color: rgba(255, 255, 255, 0.8);
  opacity: 1;
}

/* ===============================
   RESPONSIVE GRID
================================*/

/* Desktop */
.videos-section-details .row .col-md-3 {
  padding: 5px;
}

/* Tablets */
@media (max-width: 992px) {
  .videos-section-details .row .col-md-3 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .videos-section-details .title_3 {
    font-size: 1.8rem;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .videos-section-details .row .col-md-3 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .videos-section-details .title_3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }

  .video {
    margin-bottom: 20px;
  }
}

/* Extra small phones */
@media (max-width: 380px) {
  .videos-section-details .title_3 {
    font-size: 1.3rem;
  }
}

/* main s-11 section blur slider section */
/* Section Wrapper */
.lookbook-section {
  padding: 60px 20px;
  text-align: center;
  background: #fff;
}

/* Title Styling */
.lookbook-section .title_2 {
  font-size: 28px;
  font-weight: 700;
  color: #1b1b1b;
  margin-bottom: 10px;
}

.lookbook-section p {
  max-width: 750px;
  margin: 0 auto 35px;
  line-height: 1.7;
  color: #464646;
  font-size: 16px;
}

/* Slider container */
.image-carousel-personaz {
  width: 100%;
  /* max-width: 1200px; */
  margin: 0 auto;
  overflow-x: hidden;
}

/* Each slide image style */
.testimonial-block-three {
  padding: 15px;
}

.testimonial-block-three img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 12px;
  transition: all 0.4s ease-in-out;
  box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.12);
}

/* Slick Carousel Default Fix */
.slick-slide {
  opacity: 0.3;
  transform: scale(0.85);
  transition: all 0.4s ease;
}

/* Active Slide (Center Image Highlighted) */
.slick-center {
  opacity: 1;
  transform: scale(1);
}

/* Navigation Buttons */
.slick-prev,
.slick-next {
  z-index: 5;
  width: 45px;
  height: 45px;
  background: #ffffff;
  border-radius: 50%;
  border: 2px solid #ccc;
  transition: 0.3s ease;
}

.slick-prev:hover,
.slick-next:hover {
  background: #9b5c74;
  border-color: #9b5c74;
}

.slick-prev:before,
.slick-next:before {
  font-size: 24px;
  color: #333;
}

/* Hide arrows on small screens */
@media (max-width: 768px) {

  .slick-prev,
  .slick-next {
    width: 35px;
    height: 35px;
  }

  .testimonial-block-three img {
    height: 350px;
  }
}

@media (max-width: 480px) {
  .testimonial-block-three img {
    height: 300px;
  }
}

/* ----------------------------------- */

/* Section Wrapper */
#insta-feed {
  width: 100%;
  text-align: center;
  padding: 40px 0;
}

#insta-feed h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 20px;
}

/* Slider Container */
.instafeed-slider {
  margin: 0 auto;
  width: 96%;
  overflow: hidden;
  position: relative;
}

.instafeed-track {
  display: flex;
  gap: 14px;
  transition: transform 0.4s ease-in-out;
}

/* Image Items */
.instafeed-item {
  min-width: 240px;
  height: 300px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.instafeed-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s ease;
}

.instafeed-item:hover img {
  filter: brightness(0.7);
}

/* Hover Icon Overlay */
.instafeed-item .icon-layer {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: 0.3s ease;
}

.instafeed-item:hover .icon-layer {
  opacity: 1;
}

/* Navigation Buttons */
.slider-btn {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  background: #0000007c;
  color: #fff;
  border: none;
  padding: 12px 15px;
  cursor: pointer;
  font-size: 18px;
  border-radius: 50%;
  z-index: 10;
  transition: 0.3s;
}

.slider-btn:hover {
  background: #000;
}

#prevBtn {
  left: 10px;
}

#nextBtn {
  right: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .instafeed-item {
    min-width: 180px;
    height: 220px;
  }
}

@media (max-width: 480px) {
  .instafeed-track {
    padding-left: 22px;
  }

  .instafeed-item {
    min-width: 150px;
    height: 200px;
  }
}

/* ---------------------------------------------- */
.salon-footer-parent {
  width: 100%;
  background: #1c1c1c;
  color: #fff;
  padding: 50px 20px;
  font-family: "Poppins", sans-serif;
}

.salon-footer {
  width: 90%;
  margin: 0 auto;
}

.footer-social-top {
  display: flex;
  justify-content: center;
  gap: 22px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  margin-bottom: 20px;
}

.footer-box h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--theme-color);
}

.footer-box ul li {
  list-style: none;
  margin: 8px 0;
  cursor: pointer;
  transition: 0.3s;
}

.footer-box ul li:hover {
  color: var(--theme-color-dark);
  transform: translateX(4px);
}

.footer-btn {
  background: var(--theme-color);
  padding: 10px 20px;
  margin-top: 10px;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}

.footer-btn:hover {
  background: var(--theme-color-dark);
  color: black;
}

.footer-icons i {
  font-size: 22px;
  margin-right: 15px;
  cursor: pointer;
  transition: 0.3s;
}

.footer-icons i:hover {
  color: var(--theme-color-dark);
  transform: scale(1.2);
}

.footer-bottom {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  font-size: 14px;
  margin-top: 30px;
}

.scroll-top {
  position: fixed;
  bottom: 40px;
  right: 20px;
  background: var(--theme-color);
  width: 45px;
  height: 45px;
  border: none;
  font-size: 22px;
  cursor: pointer;
  border-radius: 50%;
  display: none;
  transition: 0.3s;
}

.scroll-top:hover {
  background: var(--theme-color-dark);
  color: black;
}

/* Responsive */

@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-icons {
    justify-content: center;
    display: flex;
  }
}

/* ------------------------------------bridal makeup services--------------------- */

/* section1 */
/* ====== GALLERY WRAPPER ====== */
/* .category_page.detailgallery {
  padding: 40px 0;
} */

.wps_right .row {
  margin: 0 -10px;
}

.wps_right .col-xxl-3,
.wps_right .col-xl-3,
.wps_right .col-lg-3,
.wps_right .col-md-3,
.wps_right .col-sm-4,
.wps_right .col-6 {
  padding: 10px;
}

/* ====== CARD / THUMBNAIL ====== */
.thumbnail {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
  transition: all 0.3s ease-in-out;
  border: 1px solid #eaeaea;
}

/* Card hover effects */
.thumbnail:hover {
  /* transform: translateY(-5px); */
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}

/* ====== IMAGE WRAPPER ====== */
.thumbnail .image {
  position: relative;
  overflow: hidden;
}

.thumbnail .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.35s ease-in-out;
  border-radius: 4px;
}

/* Fancybox Hover Overlay (optional but premium look) */
.hover_effect.h_yellow::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(245, 238, 217, 0.25);
  opacity: 0;
  transition: all 0.3s ease;
}

.thumbnail:hover .hover_effect.h_yellow::after {
  opacity: 1;
}

/* ===== GALLERY GRID WRAPPER ===== */
.gallery-grid {
  margin: 0 90px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  /* 4 columns */
  gap: 20px;
  padding: 40px 0;
}

/* Responsive */
@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    /* tablet */
  }
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    /* mobile */
  }

  .gallery-grid {
    margin: 0 20px;
  }
}

/* ===== IMAGE CARD ===== */
.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e9e9e9;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

/* Hover lift */
.gallery-item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

/* ===== IMAGE STYLE ===== */
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.35s ease;
  display: block;
}

/* Zoom on hover */
.gallery-item:hover img {
  transform: scale(1.07);
}

/* ===== Background Section ===== */
.bridal-bg {
  position: relative;
  background: url("../images/bridal_service_image.jpg") center/cover no-repeat;
  padding: 60px 0;
  margin-bottom: 40px;
}

/* White overlay for readability */
.bridal-bg .bridal-overlay {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.75);
  z-index: 1;
}

/* Bring cards above overlay */
.bridal-packages {
  position: relative;
  z-index: 2;
  text-align: center;
}

/* ===== Title ===== */
.bp-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 35px;
  color: #222;
}

/* ===== Grid ===== */
.bp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  max-width: 1200px;
  margin: auto;
  padding: 0 15px;
}

@media (max-width: 992px) {
  .bp-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .bp-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Card ===== */
.bp-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e6e6e6;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.07);
  padding-bottom: 20px;
  transition: all 0.3s ease;
}

.bp-card:hover {
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

/* ===== Card Image ===== */
.bp-img {
  width: 100%;
  height: 260px;
  overflow: hidden;
}

.bp-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.35s ease;
}

.bp-card:hover img {
  transform: scale(1.08);
}

/* ===== Card Text ===== */
.bp-name {
  font-size: 18px;
  font-weight: 700;
  margin-top: 15px;
  color: #222;
}

.bp-price {
  font-size: 14px;
  font-weight: 500;
  margin: 10px 0 20px;
  color: #444;
}

/* ===== Button ===== */
.bp-btn {
  display: inline-block;
  background: var(--theme-color);
  padding: 10px 0;
  width: 70%;
  border-radius: 30px;
  color: white;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.bp-btn:hover {
  background: var(--theme-color-dark);
}

/* you may like also this services */

.makeup-packages {
  padding: 40px 0;
  text-align: center;
}

.makeup-packages h1 {
  font-size: 28px;
  color: black;
  margin-bottom: 40px;
  font-weight: 600;
}

.makeup-packages h1::after {
  content: "";
  width: 80px;
  height: 4px;
  background: var(--theme-color);
  border-radius: 4px;
  display: block;
  margin: 10px auto 0;
}

/* GRID SYSTEM */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  max-width: 1100px;
  margin: 0 auto;
}

/* CARD */
.package-card {
  background: #fff;
  padding: 12px;
}

.package-card:hover {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

/* IMAGE WRAPPER */
.card-img {
  overflow: hidden;
  /* Zoom cut cleanly */
  border-radius: 14px;
}

/* IMAGE */
.card-img img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 14px;
  transition: transform 0.4s ease;
  /* Smooth animation */
}

/* HOVER ZOOM EFFECT */
.package-card:hover .card-img img {
  transform: scale(1.08);
}

/* TITLE */
.package-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 18px 0 20px;
  color: #2d2d2d;
}

/* BUTTONS */
.buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.btn-primary {
  display: inline-block;
  background: var(--theme-color);
  color: #fff;
  padding: 10px 18px;
  font-size: 14px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn-primary:hover {
  background: var(--theme-color-dark);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .packages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .packages-grid {
    grid-template-columns: 1fr;
  }

  .card-img img {
    height: 250px;
  }
}

/* Custom style to subtly mimic the floral background texture shown in the image */

/* Essential CSS for the Slider Track */
#slides-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  will-change: transform;
  /* Performance hint */
}

/* Each slide should take up the full width of the container */
.slide-item {
  flex: 0 0 100%;
  /* Do not grow, do not shrink, take 100% width */
  padding: 0 1rem;
  /* Add padding to prevent the card from touching the edge */
}

/* faq css */

:root {
  --bg: #f7f8fb;
  --card: #ffffff;
  --accent: #0f62fe;
  --text: #111827;
  --muted: #6b7280;
  --radius: 12px;
  --shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.faq-section {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial;
  background: linear-gradient(180deg, var(--bg), #ffffff);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding: 40px 16px;
  display: flex;
  justify-content: center;
}

.wrap {
  width: 100%;
  max-width: 1100px;
}

.hero {
  text-align: center;
  margin-bottom: 18px;
}

.hero h1 {
  margin: 0 0 8px;
  font-size: 28px;
}

.hero p {
  margin: 0;
  color: var(--muted);
}

.accordion {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.04);
}

.item+.item {
  border-top: 1px solid rgba(15, 23, 42, 0.04);
}

.trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-size: 16px;
  color: var(--text);
  gap: 12px;
}

.trigger:focus {
  outline: 3px solid rgba(15, 98, 254, 0.12);
  outline-offset: -3px;
}

.trigger .title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.trigger .title .q {
  font-weight: 600;
  line-height: 1.1;
}

.trigger .title .muted {
  color: var(--muted);
  font-size: 13px;
  margin-top: 4px;
}

.chev {
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  transition: transform 0.28s cubic-bezier(0.2, 0.9, 0.2, 1);
  flex-shrink: 0;
}

.chev svg {
  width: 16px;
  height: 16px;
  display: block;
}

.content {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s ease, padding 0.28s ease;
}

.content-inner {
  padding: 16px 0 20px 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 15px;
}

/* when expanded */
.item[aria-expanded="true"] .chev {
  transform: rotate(180deg);
}

.item[aria-expanded="true"] .content {
  /* padding keeps consistent when expanded */
  padding: 0 20px 16px 20px;
}

/* Responsive */
@media (max-width: 520px) {
  .hero h1 {
    font-size: 22px;
  }

  .trigger {
    padding: 14px 16px;
  }

  .content {
    padding: 0 16px;
  }
}


/* ----------------------------------------------------------------------------- */


/* cart section buy now */
.service-container {
  max-width: 1200px;
  margin: 40px auto;
}

.service-container .service-cart {
  display: flex;
  justify-content: space-between;
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  margin-bottom: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.service-container .left-section {
  width: 70%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.service-container .right-section {
  width: 27%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: center;
}

.service-container .right-section img {
  width: 70%;
  height: auto;
  border-radius: 12px;
}

.service-container .left-section h3 {
  margin: 0 0 8px;
  font-size: 24px;
  font-weight: 700;
  color: #333;
}

.service-container .duration {
  font-weight: 600;
  color: #777;
  margin-bottom: 12px;
}

.service-container .discount {
  color: #16a34a;
  font-weight: 600;
}

.service-container .service-list {
  text-align: left;
  padding-left: 16px;
  margin-bottom: 12px;
  color: #555;
  list-style: disc;
  font-weight: 600;
}

.service-container .price-wrap {
  display: flex;
  gap: 12px;
  font-weight: 700;
  align-items: center;
}

.service-container .price {
  font-size: 20px;
  font-weight: 700;
  color: #d41164;
}

.service-container .old-price {
  text-decoration: line-through;
  color: #999;
}

.service-container .book-btn {
  margin-top: 12px;
  background: #d41164;
  color: white;
  padding: 12px 20px;
  border: 0;
  width: 70%;
  border-radius: 30px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  transition: 0.3s;
}

.service-container .book-btn:hover {
  background: #b10e53;
}

/* Responsive */
@media (max-width: 600px) {
  .service-container .service-cart {
    flex-direction: column;
  }

  .service-container .left-section,
  .service-container .right-section {
    width: 100%;
  }

  .service-container .right-section {
    margin-top: 15px;
    align-items: center;
  }
}

/* ---------------------------------------------------------------------------------- */

/* special day - weekly offer */
.salon-offers-section {
  width: 90%;
  max-width: 1100px;
  /* Overall max width */
  margin: 40px auto;
  padding: 0;
  font-family: "Poppins", sans-serif;
  /* Recommended modern font */
}

.offers-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #ffffff;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  padding: 30px 20px;
}

.offers-heading-block {
  text-align: center;
  margin-bottom: 25px;
}

.offers-heading-block h1 {
  color: #1a1a1a;
  font-size: 2.4em;
  font-weight: 700;
  margin-bottom: 5px;
}

.offers-heading-block h2 {
  color: #1a1a1a;
  /* Accent color for the limited time offer */
  font-size: 1.3em;
  font-weight: 600;
  margin-top: 0;
}

.service-cards-wrapper {
  display: flex;
  flex-wrap: wrap;
  /* Allows stacking on small screens */
  justify-content: center;
  /* Centers the cards when there's space */
  gap: 25px;
  /* Space between the two service cards */
  width: 100%;
}

.service-cards-wrapper img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}

.service-cards-wrapper img:hover {
  transform: translateY(-5px);
  /* Lift effect on hover */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

@media (min-width: 850px) {
  .service-cards-wrapper img {
    width: calc(50% - 13px);
  }
}

/* offer time section css */
.offer-timer-section {
  padding: 20px;
  margin: 40px auto;
  max-width: 900px;
}

.offer-timer-container {
  background-color: var(--theme-color);
  /* Bright Pink Background */
  color: white;
  padding: 40px 20px;
  text-align: center;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(255, 51, 153, 0.4);
}

.offer-title {
  font-size: 2.5em;
  font-weight: 700;
  margin-bottom: 25px;
}

.countdown-clock {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}

.clock-icon {
  font-size: 2em;
  margin-right: 15px;
}

.timer-box-wrapper {
  display: flex;
  gap: 15px;
}

.timer-box {
  background-color: white;
  color: #ff3399;
  padding: 10px 15px;
  border-radius: 8px;
  min-width: 60px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.timer-value {
  display: block;
  font-size: 2.2em;
  font-weight: 700;
  line-height: 1;
}

.timer-label {
  display: block;
  font-size: 0.8em;
  font-weight: 500;
  text-transform: uppercase;
  margin-top: 5px;
}

.book-now-btn {
  background-color: white;
  color: var(--theme-color);
  border: none;
  padding: 12px 30px;
  font-size: 1.1em;
  font-weight: 600;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}

.book-now-btn:hover {
  background-color: #f7dada;
}

/* NEW CSS for when the offer expires */
.expired-message {
  color: var(--theme-color);
  /* Yellow/Gold for visibility */
  font-size: 1.5em;
  margin-top: 20px;
  font-weight: 600;
}

/* -------------------------------------------
   1. Why Choose Us Section Styling
   ------------------------------------------- */
.why-choose-section {
  padding: 40px 20px;
  margin: 0 auto;
  max-width: 1200px;
  text-align: center;
}

.section-heading {
  font-size: 2.2em;
  font-weight: 700;
  color: var(--theme-color);
  /* Purple Heading Color */
  margin-bottom: 40px;
}

/* -------------------------------------------
   2. Feature Cards Layout
   ------------------------------------------- */
.feature-cards-wrapper {
  display: flex;
  flex-wrap: wrap;
  /* Allows cards to wrap/stack */
  justify-content: center;
  gap: 20px;
  /* Space between cards */
}

/* -------------------------------------------
   3. Individual Card Styling
   ------------------------------------------- */
.feature-card {
  background-color: rgb(211, 209, 209);
  border-radius: 12px;
  padding: 30px 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  flex-basis: 300px;
  /* Base width for each card */
  flex-grow: 1;
  /* Allows cards to fill available space */
  transition: box-shadow 0.3s ease;
  color: var(--theme-color);
}

.feature-card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* -------------------------------------------
   4. Icon and Text Styling
   ------------------------------------------- */
.card-icon-box {
  color: var(--theme-color);
  /* Purple icon color */
  font-size: 3em;
  /* Large icon size */
  margin-bottom: 15px;
}

/* Placeholder styling for emoji icons */
.icon-placeholder {
  display: inline-block;
  padding: 10px;
}

.card-title {
  font-size: 1.2em;
  font-weight: 600;
  color: var(--theme-color);
  margin-top: 0;
  margin-bottom: 10px;
}

.card-description {
  color: #666;
  font-size: 0.95em;
  line-height: 1.5;
}

/* Responsive adjustments for very small screens */
@media (max-width: 450px) {
  .feature-card {
    flex-basis: 100%;
    /* Stack cards fully on narrow screens */
  }
}

/* ---------------------------------womens offers------------------ */
.beauty-book-btn {
  background-color: white;
  padding: 12px 100px;
  color: var(--theme-color);
  font-size: 18px;
  font-weight: 600;
  border: 2px solid rgb(137, 26, 189);
  border-radius: 20px;
  cursor: pointer;
  transition: 0.3s ease;
}

/* Hover Effect */
.beauty-book-btn:hover {
  background-color: var(--theme-color-dark);
  color: white;
  box-shadow: 0px 4px 12px rgba(137, 26, 189, 0.3);
}

/* ----------------------------- shrinable cards on lakme site slider start----------------------------------------- */

.background-innovation {
  background-color: #f3f3f3;
}

.background-innovation .services-heading {
  text-align: center;
  text-transform: uppercase;
  margin: 0;
  padding-bottom: 30px;
  letter-spacing: normal;
}

.background-innovation .services-heading::after {
  content: "";
  width: 80px;
  height: 4px;
  background: var(--theme-color);
  border-radius: 4px;
  display: block;
  margin: 10px auto 0;
}

.background-innovation .services-cards {
  display: flex;
  gap: 20px;
  justify-content: center;
  max-width: 100%;
  /* overflow-x: auto; */
}

.background-innovation .book-now-button-wrapper {
  position: absolute;
  right: 20px;
  transform: translateX(0);
  transition: transform 0.5s ease;
}

.background-innovation .card_new_cstm {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  transition: flex 0.9s ease, width 0.9s ease;
  /* min-width: 201px; */
}

.background-innovation .card_new_cstm img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 9s;
}

.background-innovation .card-content {
  position: absolute;
  bottom: 0px;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 5s ease;
  background: linear-gradient(31.69deg,
      rgb(0 0 0 / 17%) 19.6%,
      rgba(162, 151, 146, 0) 85.11%);
  padding: 15px 20px 30px 15px;
  margin: 0px;
}

.background-innovation .card_new_cstm.largeMedialakme .card-content {
  background: none;
}

.background-innovation .card-content h3 {
  font-weight: bold;
  margin: 0;
  transition: transform 0.5s ease;
  color: #ffffff;
  text-transform: uppercase;
}

.background-innovation .smalllakme-section .card-content h3 {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(0deg);
}

.background-innovation .largeMedialakme .card-content h3 {
  writing-mode: horizontal-tb;
  transform: rotate(0deg);
}

.background-innovation .largeMedialakme {
  flex: 1 1 471px;
  min-height: 400px;
}

.background-innovation .largeMedialakme img {
  height: 100%;
}

.background-innovation .smalllakme-section {
  width: 100px;
  min-height: 400px;
  flex: 1 1 100px;
}

.book-now-button-wrapper .book-now {
  background: #f34f81;
  color: white;
  border-radius: 50px;
}

.background-innovation a.book-now {
  text-decoration: none;
  text-transform: uppercase;
  padding: 7px 14px;
  font-weight: bold;
  cursor: pointer;
}

.background-innovation .card_new_cstm.smalllakme-section .book-now {
  display: none;
}

.background-innovation .services-cards .card_new_cstm:not(.ratio) {
  height: 0 !important;
}

.background-innovation .card_new_cstm.largeMedialakme .book-now {
  display: inline-flex;
}

.background-innovation .services-button-cstm {
  text-align: center;
  margin: 0;
  padding-top: 30px;
}

.background-innovation .services-button-cstm a {
  text-decoration: none;
}

.background-innovation .gold-button {
  background: #f34f81;
  color: white;
  border-radius: 50px;
  padding: 14px 31px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

@media (min-width: 750px) {
  .background-innovation .services-heading {
    font-size: 32px;
  }

  .background-innovation .card-content h3 {
    font-size: 22px;
  }
}

@media (max-width: 749px) {
  .background-innovation .gold-button {
    padding: 6px 16px;
  }

  .background-innovation .services-heading {
    font-size: 18px;
  }

  .background-innovation .card-content h3 {
    font-size: 18px;
  }

  .background-innovation .services-cards {
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 0 15px;
    scrollbar-width: none;
  }

  .background-innovation .card_new_cstm {
    min-width: 100%;
    scroll-snap-align: start;
    transition: none !important;
  }

  .background-innovation .card_new_cstm img {
    transition: none !important;
  }

  .background-innovation .card_new_cstm:hover img {
    transform: none;
  }

  .background-innovation .card-content {
    bottom: 40px;
    padding: 10px 5px;
    background: none;
    display: block;
  }

  .background-innovation .book-now-button-wrapper {
    left: 10px;
  }

  .background-innovation .card_new_cstm .book-now {
    font-size: 12px;
    display: inline-flex !important;
  }

  .background-innovation .card_new_cstm.smalllakme-section .card-content h3,
  .background-innovation .card_new_cstm.largeMedialakme .card-content h3 {
    writing-mode: horizontal-tb;
  }

  .background-innovation .card_new_cstm.smalllakme-section,
  .background-innovation .card_new_cstm.largeMedialakme {
    flex: 0 0 100%;
    width: 100% !important;
  }

  .background-innovation .services-cards {
    justify-content: center;
  }
}

@media (min-width: 1025px) {
  .section-template--18579304972427__innovation_service_section_exYJjA-padding {
    margin: 30px 0;
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

@media (max-width: 1024px) and (min-width: 750px) {
  .section-template--18579304972427__innovation_service_section_exYJjA-padding {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

@media only screen and (max-width: 749px) {
  .section-template--18579304972427__innovation_service_section_exYJjA-padding {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

@media screen and (width >=990px) {
  .def-page-width {
    padding-left: 6rem;
    padding-right: 6rem;
  }
}

/* ----------------------------- shrinable cards on lakme site slider end ----------------------------------------- */

/* ----------------------------- brand section css start ----------------------------------------- */

.brand-section-static-data {
  width: 90%;
  margin: 0 auto;
  margin-bottom: 50px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.brand-section-static-data h1 {
  font-size: 28px;
  font-weight: 700;
}

.brand-section-static-data h1::after {
  content: "";
  width: 80px;
  height: 4px;
  background: var(--theme-color);
  border-radius: 4px;
  display: block;
  margin: 10px auto 0;
}

.brand-section-static-data .brand-section-dark-para {
  font-weight: 600;
}

/* ----------------------------- brand section css end ----------------------------------------- */