/* Color variables for pricing*/
.luxe-pricing {
    --primary: hsl(43, 74%, 49%);
    --secondary: hsla(46, 100%, 69%, 0.82);
    --accent: #8ce3ff;
    --light: #fcf7ff;
    --dark: #2a1b3d;
    --text: #4a4453;
    --shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    --gradient: linear-gradient(135deg, var(--primary), var(--secondary));
    --gradient-text: linear-gradient(135deg, hsl(43, 100%, 30%), hsla(46, 100%, 69%, 0.82));
    --card-gradient: linear-gradient(to bottom, #faf5ff, #ffffff);
    --disabled-color: #bbb;
}

/* whatsapp floating icon */
 .whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float img {
  width: 35px;
  height: 35px;
}

/* Mobile optimization */
@media (max-width: 480px) {
  .whatsapp-float {
    width: 55px;
    height: 55px;
    bottom: 15px;
    right: 15px;
  }

  .whatsapp-float img {
    width: 30px;
    height: 30px;
  }
}

/* whatsapp floating icon end */

html {
    scroll-behavior: smooth;
}

html,
body {
    overflow-x: hidden;
    width: 100%;
}

body {
    background-color: #FFFFF0;
    font-family: 'Outfit', sans-serif;
}

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

.back-to-top {
    position: fixed !important;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

/*** Fonts ***/
.font-work-sans {
    /* font-family: "Work Sans", sans-serif; */
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.font-playfair-display {

    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.font-dancing-script {
    font-family: "Dancing Script", cursive;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}


/*** Button ***/
.btn {
    position: relative;
    transition: .5s;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn-dark,
.btn-primary {
    margin: 10px;
}

.btn-primary::before,
.btn-primary::after {
    position: absolute;
    content: "";
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    top: -5px;
    left: -5px;
}

/* .btn-primary::before {
    top: -10px;
    height: calc(100% + 20px);
    border-left: 2px solid var(--bs-primary);
    border-right: 2px solid var(--bs-primary);
}

.btn-primary::after {
    left: -10px;
    width: calc(100% + 20px);
    border-top: 2px solid var(--bs-primary);
    border-bottom: 2px solid var(--bs-primary);
} */

.btn-dark::before,
.btn-dark::after {
    position: absolute;
    content: "";
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    top: -5px;
    left: -5px;
}

.btn-dark::before {
    top: -10px;
    height: calc(100% + 20px);
    border-left: 2px solid var(--bs-dark);
    border-right: 2px solid var(--bs-dark);
}

.btn-dark::after {
    left: -10px;
    width: calc(100% + 20px);
    border-top: 2px solid var(--bs-dark);
    border-bottom: 2px solid var(--bs-dark);
}

/* ***********Index Page**************** */

/* Topbar start */
.topbar {
    background: #4A1F2C;
    color: white;
    padding: 0px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 1000;
}

.contact-info {
    display: flex;
    gap: 30px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    padding: 8px 15px;
    border-radius: 6px;
    position: relative;
    overflow: hidden;
}

.info-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.5s ease;
}

.info-item:hover::before {
    left: 100%;
}

.info-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.icon {
    font-size: 10px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    
}

.info-item:hover .icon {
    transform: scale(1.2) rotate(10deg);
    color: #E6C77B;
}

.call .icon {
    background: rgba(243, 220, 162, 0.18);
    color: #E6C77B;
}

.mail .icon {
    background: rgba(243, 220, 162, 0.18);
    color: #E6C77B;
}

.location .icon {
    background: rgba(243, 220, 162, 0.18);
    color: #E6C77B;
}

.text {
    display: flex;
    flex-direction: column;
}

.label {
    font-size: 11px;
    text-transform: uppercase;
    
    letter-spacing: 0.5px;
}

.value {
    font-size: 12.5px;
    font-weight: 600;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-icon:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.2);
}

.social-icon i {
    position: relative;
    z-index: 2;
}

.social-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: -100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: all 0.6s ease;
}

.social-icon:hover::after {
    left: 100%;
}

@media (max-width: 900px) {
    .topbar {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
    }

    .contact-info {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .info-item {
        padding: 6px 12px;
    }
}

@media (max-width: 480px) {
    .contact-info {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .info-item {
        width: 100%;
        justify-content: center;
    }

    .social-icons {
        width: 100%;
        justify-content: center;
    }
}

/* Topbar end */



/*** Navbar ***/
/* Modern Navbar Styles */
.navbar-container {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    /* remove backdrop-filter */
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0px 30px;
}

.logo-container img {
    width: 100%;
    height: 30px;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
}

.logo-icon {
    font-size: 1.8rem;
    color: #ff4d67;
    transition: transform 0.3s ease;
}

.logo-text {
    font-size: 1.5rem;
    background: linear-gradient(45deg, #ff4d67, #ff8a9d);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    transition: all 0.3s ease;
}

.navbar-brand:hover .logo-icon {
    transform: rotate(-15deg);
}

.navbar-brand:hover .logo-text {
    letter-spacing: 1.5px;
}

.navbar-content {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-nav {
    display: flex;
    gap: 1.5rem;
}

.nav-link {
    position: relative;
    padding: 0.5rem 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    color: #333;
    overflow: hidden;
    transition: color 0.3s ease;
}

.link-text {
    position: relative;
    display: inline-block;
    transition: transform 0.3s ease;
}

.link-hover {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(45deg, #ff4d67, #ff8a9d);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.nav-link:hover .link-text,
.nav-link.active .link-text {
    color: #ff4d67;
}

.nav-link:hover .link-hover,
.nav-link.active .link-hover {
    transform: translateX(0);
}

/* Dropdown Menu */
.dropdown-menu {
    border: none;
    border-radius: 12px;
    padding: 0.5rem 0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    margin-top: 10px;
}

.dropdown-item {
    padding: 0.5rem 1.5rem;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.dropdown-item:hover {
    background: linear-gradient(45deg, #ff4d67, #ff8a9d);
    color: white !important;
}

/* Social Links & CTA */
.navbar-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: #666;
    transition: all 0.3s ease;
}
.social-link.instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    color: white;
}

.social-link.youtube {
    background: radial-gradient(
        circle at 30% 30%,
        #ff4d4d 0%,
        #ff0000 40%,
        #cc0000 75%,
        #990000 100%
    );
    color: white;
}




.social-link:hover {
    transform: translateY(-3px);
}
.btn-book {
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    background: linear-gradient(45deg, #b6862c, #d4af37, #ffd700, #f9e79f, #d4af37);


    color: rgb(105, 105, 105);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(210, 175, 1, 0.635);
    transition: all 0.3s ease;
}

.btn-book:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(210, 175, 1, 0.635);
}

.btn-call {
    display: inline-block;
    margin-left: 10px;
    padding: 8px 15px;
    background: #ff4d6d;
    color: #fff;
    font-weight: bold;
    border-radius: 5px;
    text-decoration: none;
    animation: pulse 1.5s infinite;
    transition: transform 0.2s;
}

.btn-call:hover {
    transform: scale(1.1);
}
a:hover{
    color:white;
} 
.btn:hover{
    color: rgb(245, 220, 220);
}
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 77, 109, 0.7);
    }

    70% {
        box-shadow: 0 0 10px 10px rgba(255, 77, 109, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 77, 109, 0);
    }
}


/* Desktop hover dropdown */
@media (min-width: 992px) {
  .navbar .dropdown:hover > .dropdown-menu {
    display: block;
    margin-top: 10px;
  }

  .navbar .dropdown-toggle::after {
    transition: transform 0.3s ease;
  }

  .navbar .dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
  }
}

/* Desktop hover dropdown */
@media (min-width: 992px) {
  .navbar .dropdown:hover > .dropdown-menu {
    display: block;
    margin-top: 10px;
  }

  .navbar .dropdown-toggle::after {
    transition: transform 0.3s ease;
  }

  .navbar .dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
  }
}



/* Mobile Menu Toggle */
.hamburger {
    width: 24px;
    height: 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: #333;
    transition: all 0.3s ease;
    transform-origin: left center;
}

.navbar-toggler[aria-expanded="true"] .hamburger span:first-child {
    transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .hamburger span:nth-child(2) {
    opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .hamburger span:last-child {
    transform: rotate(-45deg);
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .navbar-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        padding: 1.5rem 0;
    }

    .navbar-nav {
        flex-direction: column;
        width: 100%;
        gap: 0rem;
    }

    .nav-link {
        padding: 0.75rem 0;
    }

    .navbar-actions {
        width: 100%;
        flex-direction: column;
        gap: 1.5rem;
        margin-top: 1rem;
    }

    .social-links {
        justify-content: center;
        width: 100%;
    }

    .btn-book {
        width: 100%;
        text-align: center;
    }
}

/* MOBILE ONLY MENU FIX */
@media (max-width: 991.98px) {

    /* Hide dropdown on mobile */
    .nav-item.dropdown {
        display: none;
    }

    /* Show mobile-only links */
    .mobile-only {
        display: block;
    }
}

/* DESKTOP ONLY */
@media (min-width: 992px) {

    /* Hide mobile-only links on desktop */
    .mobile-only {
        display: none;
    }
}
/*** Hero Header ***/
.hero-header {
    position: relative;
    overflow: hidden;
    z-index: 1;
}


.hero-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url(../img/hero-bg-2.jpg) no-repeat center;
    background-size: cover;
    transform: scaleX(-1);
    filter: blur(1.5px);
    z-index: -1;
}



/* Firefly Sparkles in Entire Hero Section */

.hero-header .firefly {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgb(255, 128, 0);
    border-radius: 50%;
    opacity: 0.8;
    will-change: transform, opacity;
    animation: fly 12s linear infinite, twinkle 6s ease-in-out infinite;
}

.hero-header .firefly::after {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: radial-gradient(circle, rgb(255, 132, 0), transparent 70%);
    top: -3px;
    left: -3px;
    filter: blur(3px);
}

/* Twinkle effect: random bright/dim glow */
/* @keyframes twinkle {

    0%,
    100% {
        opacity: 0.2;
        box-shadow: 0 0 5px rgba(255, 255, 150, 0.3);
    }

    50% {
        opacity: 1;
        box-shadow: 0 0 15px rgba(255, 255, 150, 1);
    }
} */

/* Flight path remains smooth */
@keyframes fly {
    0% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(120px, -80px) scale(1.2);
    }

    50% {
        transform: translate(-100px, 100px) scale(0.9);
    }

    75% {
        transform: translate(140px, 80px) scale(1.1);
    }

    100% {
        transform: translate(0, 0) scale(1);
    }
}

.hero-text {
    font-family: "Lora", serif;
    font-weight: 600;
}
.hero-text-mb {
    font-family: "Lora", serif;
    font-weight: 600;
}

.hero-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    backdrop-filter: blur(8px);
    background-color: rgba(255, 255, 255, 0.2);
    z-index: 0;
}

.hero-header>* {
    position: relative;
    z-index: 1;
}

@media (min-width: 992px) {
    .hero-header .container {
        max-width: 90% !important;
    }


}



.header-carousel .owl-nav {

    position: absolute;
    right: 0;
    bottom: 0;
    text-align: center;
    display: flex;
    justify-content: center;
        display: none;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    position: relative;
    margin-left: 2px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-dark);
    background: var(--bs-primary);
    font-size: 22px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    color: var(--bs-white);
}

.header-carousel img {
    height: 600px;
    object-fit: contain;
    border-radius: 10px;
}

.page-header {
    background: url(../img/page-header.jpg) center center no-repeat;
    background-size: contain;
}

.hero-text {
    position: relative;
    background: linear-gradient(90deg, #4e2b00, #a55b00, #ff008c, #350069);
    background-blend-mode: screen;
    background-size: 200% 140%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textColorShift 4s ease infinite, textGlow 6s ease-in-out infinite, fadeInText 3s ease forwards;
    overflow: hidden;
}
.hero-text-mb {
    position: relative;
    background: linear-gradient(90deg, #fff5d1, #ffd700, #ffefb0, #fff9e6);
    background-blend-mode: screen;
    background-size: 200% 140%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textColorShift 4s ease infinite, textGlow 6s ease-in-out infinite, fadeInText 3s ease forwards;
    overflow: hidden;
}

@keyframes textColorShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Text fade-in on load */
@keyframes fadeInText {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Sparkling particles around text */
/* .hero-text::before, .hero-text::after {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle, rgb(255, 198, 27) 2px, transparent 3px);
    background-size: 120px 120px;
    animation: sparkle 4s linear infinite;
    pointer-events: none;
    opacity: 0.5;
} */

/* Second layer of sparkles for more density */
.hero-text::after {
    background-size: 80px 80px;
    animation-duration: 6s;
    animation-direction: reverse;
}
.hero-text-mb::after {
    background-size: 80px 80px;
    animation-duration: 6s;
    animation-direction: reverse;
}

/* Sparkle movement */
/* @keyframes sparkle {
    from { background-position: 0 0; }
    to { background-position: 550% 550%; }
} */

.btn-glow {
    position: relative;
    display: inline-block;
    padding: 12px 20px;
    font-size: 18px;
    color: #fff;
    border: none;
    border-radius: 50px;
    text-align: center;
    text-decoration: none;
    overflow: hidden;
    transition: 0.4s;
    z-index: 1;
    cursor: pointer;
    width: 12em;
    box-shadow: 0px 0px 10px rgba(255, 158, 14, 0.603);
}

/* Blurred animated gradient background */
.btn-glow::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, #ff6a00, #ee0979, #ab0009, #d57323);
    background-size: 400% 400%;
    z-index: -1;
    animation: colorShift 6s ease infinite;
    transform: translate(-25%, -25%);
    box-shadow: 0px 0px 10px orangered;
}

/* Text and shape styling */
.btn-glow {
    background: rgba(255, 255, 255, 0.1);
}

.btng-2 {
    margin-left: -28%;
}

/* hero section end  */

/******* Mobile hero start ****** */
.luxury-hero {
    position: relative;
    height: 100vh;
    min-height: 800px;
    overflow: hidden;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
}

/* Enhanced Video Background */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    transition: transform 0.5s ease-out;
}

.luxury-hero:hover .hero-video {
    transform: scale(1.15);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.glass-morphism-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(5px);
    z-index: 2;
    pointer-events: none;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.hero-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: calc(100% - 120px);
    position: relative;
}

.hero-text-col {
    width: 45%;
    padding-right: 60px;
    position: relative;
}

.hero-slider-col {
    width: 55%;
    padding-left: 60px;
    position: relative;
}

/* Enhanced Text Styling */
.hero-text {
    max-width: 100%;
    text-align: left;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.title-line {
    font-size: 5rem;
    margin-bottom: -0.5rem;
    background: linear-gradient(135deg, #ffd79e 0%, #ff9500 50%, #ffd79e 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 4px 15px rgba(255, 180, 60, 0.3);
    position: relative;
    transform: translateY(30px);
    opacity: 0;
    animation: titleReveal 1s forwards cubic-bezier(0.165, 0.84, 0.44, 1);
}

.title-line:nth-child(1) {
    animation-delay: 0.3s;
}

.title-line:nth-child(2) {
    animation-delay: 0.6s;
}

.title-line:nth-child(3) {
    animation-delay: 0.9s;
}

@keyframes titleReveal {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transform: translateY(20px);
    opacity: 0;
    animation: fadeUp 0.8s forwards cubic-bezier(0.165, 0.84, 0.44, 1);
    animation-delay: 1.2s;
}

@keyframes fadeUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Enhanced CTA Buttons */
.hero-cta {
    display: flex;
    gap: 25px;
    margin-top: 50px;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeUp 0.8s forwards cubic-bezier(0.165, 0.84, 0.44, 1);
    animation-delay: 1.5s;
}

.btn-luxury {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 15px;
    font-weight: 600;
    letter-spacing: 1.5px;
    /* text-transform: uppercase; */
    text-decoration: none;
    border: none;
    outline: none;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1;
    border-radius: 50px;
    font-size: 0.9rem;
}

.btn-book {
    background: linear-gradient(135deg, #ffd79e 0%, #ff9500 100%);
    color: #350c00;
    box-shadow: 0 15px 40px rgba(255, 180, 60, 0.4);
}

.btn-book .btn-text {
    position: relative;
    z-index: 3;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn-book .btn-icon {
    position: relative;
    z-index: 3;
    margin-left: 12px;
    margin-top: -2px;
    transform: translateX(-8px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn-book .btn-spotlight {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1;
}

.btn-book .btn-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 220, 150, 0.6) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 0;
    border-radius: 50px;
}

.btn-book:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(255, 180, 60, 0.6);
}

.btn-book:hover .btn-text {
    transform: translateX(-10px);
    color: black;
}

.btn-book:hover .btn-icon {
    transform: translateX(0);
    opacity: 1;
}

.btn-book:hover .btn-spotlight {
    transform: scale(1);
}

.btn-book:hover .btn-glow {
    opacity: 1;
    animation: pulseGlow 2s infinite alternate;
}

@keyframes pulseGlow {
    0% {
        opacity: 0.6;
    }

    100% {
        opacity: 0.9;
    }
}

.btn-outline {
    background: transparent;
    background: linear-gradient(135deg, #ff9500 0%, #ffd79e 100%);
    color: #3f0101;
    border: 1px solid rgba(78, 46, 0, 0.5);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn-outline .btn-text {
    position: relative;
    z-index: 2;
}

.btn-outline .btn-hover-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(200, 169, 126, 0.1) 0%, rgba(200, 169, 126, 0.3) 100%);
    border-radius: 50px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: -1;
}

.btn-outline .btn-diamond {
    position: absolute;
    width: 10px;
    height: 10px;
    background: #ffd79e;
    transform: rotate(45deg);
    opacity: 0;
    transition: all 0.4s ease;
}

.btn-outline .btn-diamond:nth-child(1) {
    top: -5px;
    left: -5px;
}

.btn-outline .btn-diamond:nth-child(2) {
    bottom: -5px;
    right: -5px;
}

.btn-outline:hover {
    border-color: rgba(255, 215, 158, 0.8);
    color: #340202;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.btn-outline:hover .btn-hover-effect {
    transform: scaleX(1);
}

.btn-outline:hover .btn-diamond {
    opacity: 1;
}

/* Custom Slider with Reflection */
.slider-container {
    position: relative;
    width: 100%;
    height: 600px;
}

.hero-slider {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
    /* box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); */
    position: relative;
}

.slide-content {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slider img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 1.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, transparent 100%);
}

.slide-overlay h3 {
    /* font-family: 'Playfair Display', serif; */
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #ffd79e;
}

.slide-overlay p {
    font-size: 1rem;
    letter-spacing: 2px;
    opacity: 0.8;
    margin-bottom: -0.7rem;
}

.slider-reflection {
    position: absolute;
    bottom: -50px;
    left: 10%;
    width: 80%;
    height: 60px;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    transform: scaleY(-1);
    filter: blur(5px);
    opacity: 0.5;
    z-index: -1;
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 5;
}

.slider-dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: #ffd79e;
    transform: scale(1.4);
    box-shadow: 0 0 15px rgba(255, 215, 158, 0.8);
}

/* Floating Beauty Elements */
.floating-beauty-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.beauty-sparkle {
    position: absolute;
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
    filter: blur(1px);
    animation: sparkle 3s infinite ease-in-out;
}

.sparkle-1 {
    top: 30%;
    left: 20%;
    animation-delay: 1s;
}

.sparkle-2 {
    top: 70%;
    right: 25%;
    animation-delay: 2s;
}

@keyframes sparkle {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.3;
    }

    50% {
        transform: scale(1.5);
        opacity: 1;
    }
}

/* Floating Product Showcase */
.floating-products {
    position: absolute;
    top: 50%;
    right: -100px;
    transform: translateY(-50%);
    z-index: 0;
}

.product-bottle {
    width: 180px;
    height: 300px;
    position: relative;
}

.product-bottle img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

.product-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 215, 158, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: productGlow 4s infinite alternate;
}

@keyframes productGlow {
    0% {
        opacity: 0.3;
        transform: scale(0.9);
    }

    100% {
        opacity: 0.6;
        transform: scale(1.1);
    }
}

/* Awards Badges */
.awards-badges {
    position: absolute;
    bottom: 50px;
    right: 0;
    display: flex;
    gap: 15px;
    z-index: 2;
}

.badge {
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 158, 0.3);
    border-radius: 10px;
    padding: 15px 20px;
    text-align: center;
    transition: all 0.4s ease;
}

.badge span {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #ffd79e;
    display: block;
    line-height: 1;
}

.badge small {
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.8;
}

/* Enhanced Contact Strip */
.hero-contact-strip {
    position: absolute;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 3;
}

.contact-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0) 100%);
    clip-path: polygon(0% 80%, 100% 50%, 100% 100%, 0% 100%);
}

.contact-items-container {
    display: flex;
    justify-content: center;
    gap: 50px;
    position: relative;
}

.contact-item {
    display: flex;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    position: relative;
    padding: 10px 20px;
    border-radius: 30px;
    background: #36000085;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 215, 158, 0.1);
}

.contact-item:hover {
    transform: translateY(-5px);
    background: rgba(0, 0, 0, 0.3);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.contact-item i {
    margin-right: 12px;
    color: #ffd79e;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.contact-item:hover i {
    transform: scale(1.3);
    color: #ff9500;
}

.contact-ripple {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    background: radial-gradient(circle at center, rgba(255, 215, 158, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-item:hover .contact-ripple {
    opacity: 1;
    animation: ripple 2s infinite;
}

.social-links {
    position: relative;
    display: flex;
    gap: 20px;
}

.social-links a {
    color: #fff;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.social-links a:hover {
    color: #ffd79e;
    transform: translateY(-3px);
}

.social-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 215, 158, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.social-links:hover .social-pulse {
    animation: socialPulse 2s infinite;
}

@keyframes socialPulse {
    0% {
        width: 0;
        height: 0;
        opacity: 0.5;
    }

    100% {
        width: 150px;
        height: 150px;
        opacity: 0;
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 3;
    opacity: 0;
    animation: fadeIn 1s forwards;
    animation-delay: 2s;
}

.mouse {
    width: 25px;
    height: 40px;
    border: 2px solid rgba(255, 215, 158, 0.5);
    border-radius: 15px;
    position: relative;
    margin-bottom: 10px;
}

.scroller {
    position: absolute;
    top: 5px;
    left: 50%;
    width: 4px;
    height: 8px;
    background: #ffd79e;
    border-radius: 2px;
    transform: translateX(-50%);
    animation: scrollAnimation 2s infinite;
}

.scroll-indicator span {
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: rgba(255, 215, 158, 0.8);
}

@keyframes scrollAnimation {
    0% {
        top: 5px;
        opacity: 1;
    }

    100% {
        top: 20px;
        opacity: 0;
    }
}

/* Responsive Adjustments */
@media (max-width: 1440px) {
    .hero-title .title-line {
        font-size: 4.5rem;
    }

    .slider-container {
        height: 550px;
    }
}

@media (max-width: 1200px) {
    .hero-content-wrapper {
        flex-direction: column;
        justify-content: center;
        height: auto;
    }

    .hero-text-col,
    .hero-slider-col {
        width: 100%;
        padding: 0;
    }

    .hero-text {
        text-align: center;
        margin-bottom: 60px;
    }
    .hero-text-mb {
        text-align: center;
        margin-bottom: 60px;
    }

    .hero-cta {
        justify-content: center;
    }

    .slider-container {
        height: 500px;
        margin: 0 auto;
    }

    .hero-title .title-line {
        font-size: 4rem;
    }

    .floating-products {
        right: 0;
        top: auto;
        bottom: -100px;
        transform: none;
    }

    .awards-badges {
        bottom: 20px;
        right: 50%;
        transform: translateX(50%);
        bottom: -80px;
    }
}

@media (max-width: 992px) {
    .hero-title .title-line {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .slider-container {
        height: 450px;
    }

    .contact-items-container {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .contact-item {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-content-wrapper {
        margin-top: -180px;
    }

    .luxury-hero {
        min-height: 900px;
    }

    .hero-title .title-line {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        letter-spacing: 2px;
    }

    .slider-container {
        height: 400px;
    }

    .btn-luxury {
        padding: 14px 30px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        line-height: 1.4;
        display: block;
    }

    .hero-title .title-line {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .slider-container {
        height: 350px;
    }

    .hero-cta {
        flex-direction: row;
        align-items: center;
        gap: 15px;
        margin-top: 0px;
    }

    .btn-luxury {
        width: 40%;
        max-width: 280px;
        padding: 10px 0px;
        font-size: 14px;
        margin-bottom: 10px;
    }

    .container {
        padding: 0 20px;
    }
}

.hero-text,
.btn-glow,
.slider-container {
    will-change: transform, opacity;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(2);
        opacity: 0;
    }
}

/******* Mobile hero end****** */

/* ***About Section and Page*** */
.glamour-margin-reset {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.glamour-body-style {
    font-family: 'Manrope', sans-serif;
    color: #2E2E3A;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0rem 6rem;
    overflow-x: hidden;
}

.glamour-about-wrapper {
    width: 100%;
    padding: 1rem;
    position: relative;
    overflow: hidden;
    border-radius: 30px;
}

.glamour-orb-bg {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.2;
    z-index: -1;
    animation: glamourFloat 15s infinite alternate ease-in-out;
}

.glamour-orb-pink {
    /* background: linear-gradient(45deg, #FF9A8B 0%, #FF6B95 50%, #FF8E53 100%); */
    background: linear-gradient(45deg, #FFD700 0%, #FFC107 0%, #ffb30085 50%);
    top: -200px;
    left: -200px;
}

.glamour-orb-purple {
    /* background: linear-gradient(45deg, #6A11CB 0%, #2575FC 100%); */
    background: linear-gradient(45deg, #FFD700 0%, #FFC107 0%, #ffb30097 50%);
    bottom: -200px;
    right: -200px;
    animation-delay: 2s;
}

@keyframes glamourFloat {
    0% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(50px, 50px) scale(1.1);
    }

    100% {
        transform: translate(-30px, -30px) scale(0.9);
    }
}

.glamour-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.glamour-text-content {
    position: relative;
    z-index: 2;
}

.glamour-badge {
    display: inline-block;
    background: linear-gradient(45deg, #FF9A8B 0%, #FF6B95 50%, #FF8E53 100%);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(255, 106, 149, 0.3);
}

.glamour-main-heading {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, #6A11CB, #FF8E53);
    /* background: var(--title-gradient); */
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-top: -10px;
    font-weight: 600;
}

.glamour-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #6D6D7A;
    margin-bottom: 2rem;
    text-align: justify;
}

.glamour-signature {
    font-family: 'Prata', serif;
    font-size: 2rem;
    color: #2E2E3A;
    margin-top: 2rem;
    position: relative;
    display: inline-block;
}

.glamour-signature::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100px;
    height: 3px;
    background: #FFD700;
}

.glamour-stats-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.glamour-stat-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    border-radius: 12px;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

.glamour-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.glamour-stat-number {
    /* font-family: 'Prata', serif; */
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(45deg, #6A11CB, #FF8E53);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 0.3rem;
}

.glamour-stat-label {
    font-size: 0.85rem;
    color: #6D6D7A;
    font-weight: 600;
}

.glamour-image-container {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.glamour-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    transform: perspective(1000px) rotateY(-10deg);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 10px solid white;
}

.glamour-image-container:hover .glamour-main-img {
    transform: perspective(1000px) rotateY(0deg);
}

.glamour-floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 15px;
    padding: 1.2rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    z-index: 3;
    transition: all 0.5s ease;
}

.glamour-floating-top {
    width: 180px;
    top: -20px;
    left: -20px;
    animation: glamourFloatElement 8s infinite ease-in-out;
}

.glamour-floating-bottom {
    width: 180px;
    bottom: -20px;
    right: -20px;
    animation: glamourFloatElement 10s infinite ease-in-out reverse;
}

@keyframes glamourFloatElement {
    0% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(10px, 10px);
    }

    100% {
        transform: translate(0, 0);
    }
}

.glamour-floating-icon {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    color: #FFD700;
}

.glamour-floating-title {
    font-family: 'Prata', serif;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: black;
}

.glamour-floating-text {
    font-size: 0.85rem;
    color: #6D6D7A;
    line-height: 1.6;
}

.glamour-stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.glamour-stat-card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.glamour-stat-content {
    display: flex;
    justify-content: space-between;
    /* text left, icon right */
    align-items: center;
}

.glamour-stat-number {
    font-size: 24px;
    font-weight: bold;
}

.glamour-stat-label {
    font-size: 14px;
    color: #666;
}

.glamour-stat-icon {
    font-size: 32px;
    color: #d4a017;
    /* goldish, adjust as needed */
}

/* Founder Section Styles */
.glamour-founder-section {
    padding: 4rem 5rem;
    /* background: linear-gradient(135deg, rgba(255, 245, 245, 0.9) 0%, rgba(255, 255, 255, 0.9) 100%); */
    position: relative;
    overflow: hidden;
}

.glamour-founder-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.glamour-founder-image-wrapper {
    position: relative;
}

.glamour-founder-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    transform: perspective(1000px) rotateY(5deg);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.glamour-founder-image:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.glamour-founder-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.glamour-founder-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(106, 17, 203, 0.7) 0%, rgba(255, 142, 83, 0.7) 100%);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.glamour-founder-image:hover .glamour-founder-overlay {
    opacity: 1;
}

.glamour-founder-social {
    display: flex;
    gap: 1.5rem;
}

.glamour-social-link {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6A11CB;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    transform: translateY(20px);
    opacity: 0;
}

.glamour-founder-image:hover .glamour-social-link {
    transform: translateY(0);
    opacity: 1;
}

.glamour-social-link:nth-child(1) {
    transition-delay: 0.1s;
}

.glamour-social-link:nth-child(2) {
    transition-delay: 0.2s;
}

.glamour-social-link:nth-child(3) {
    transition-delay: 0.3s;
}

.glamour-social-link:hover {
    background: #FF6B95;
    color: white;
    transform: translateY(-5px);
}

.glamour-founder-signature {
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.glamour-signature-img {
    height: 40px;
    margin-bottom: 0.5rem;
}

.glamour-founder-name {
    font-family: 'Prata', serif;
    font-size: 1.5rem;
    color: #2E2E3A;
    margin-bottom: 0.25rem;
}

.glamour-founder-role {
    color: #FF6B95;
    font-weight: 600;
    font-size: 0.9rem;
}

.glamour-founder-content {
    position: relative;
}

.glamour-founder-title {
    font-size: 2.2rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, #6A11CB, #FF8E53);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
}

.glamour-founder-quote {
    position: relative;
    padding: 2rem;
    margin: 2rem 0;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.glamour-quote-icon {
    position: absolute;
    top: -15px;
    left: 20px;
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #FF9A8B, #FF6B95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.glamour-quote-text {
    font-style: italic;
    font-size: 1.2rem;
    line-height: 1.6;
    color: #2E2E3A;
    margin: 0;
    padding-left: 1.5rem;
}

.glamour-founder-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #6D6D7A;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.glamour-founder-achievements {
    margin-top: 2rem;
}

.glamour-achievement-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.glamour-achievement-item:hover {
    transform: translateX(10px);
    background: white;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.glamour-achievement-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #FF9A8B, #FF6B95);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.glamour-achievement-content h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: #2E2E3A;
}

.glamour-achievement-content p {
    font-size: 0.85rem;
    color: #6D6D7A;
    margin: 0;
}

/* Responsive Design for Founder Section */
@media (max-width: 1200px) {
    .glamour-founder-container {
        gap: 4rem;
    }
}

@media (max-width: 992px) {
    .glamour-founder-section {
        padding: 4rem 2rem;
    }

    .glamour-founder-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .glamour-founder-image {
        max-width: 500px;
        margin: 0 auto;
    }

    .glamour-founder-content {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .glamour-founder-img {
        height: 400px;
    }

    .glamour-founder-title {
        font-size: 2rem;
    }

    .glamour-quote-text {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .glamour-founder-section {
        padding: 3rem 1.5rem;
    }

    .glamour-founder-img {
        height: 350px;
    }

    .glamour-founder-title {
        font-size: 1.8rem;
    }

    .glamour-founder-quote {
        padding: 1.5rem;
    }

    .glamour-quote-text {
        font-size: 1rem;
        padding-left: 1rem;
    }

    .glamour-achievement-item {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .glamour-achievement-item:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 400px) {
    .glamour-founder-img {
        height: 300px;
    }

    .glamour-founder-title {
        font-size: 1.6rem;
    }

    .glamour-social-link {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .glamour-content-grid {
        gap: 0rem;
    }

    .glamour-image-container {
        height: 500px;
    }

    .glamour-main-heading {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .glamour-content-grid {
        grid-template-columns: 1fr;
    }

    .glamour-text-content {
        order: 2;
        text-align: left;
    }

    .glamour-image-container {
        order: 1;
        height: 400px;
        margin-bottom: 2rem;
    }

    .glamour-signature {
        margin-left: auto;
        margin-right: auto;
    }

    .glamour-stats-container {
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .glamour-floating-top,
    .glamour-floating-bottom {
        display: none;
    }
}

@media (max-width: 768px) {
    .glamour-main-heading {
        font-size: 2.5rem;
    }

    .glamour-about-wrapper {
        padding: 3rem 1.5rem;
    }

    .glamour-description {
        font-size: 1rem;
    }

    .glamour-image-container {
        height: 350px;
    }
}

@media (max-width: 576px) {
    .glamour-main-heading {
        font-size: 2rem;
        line-height: 1.3;
    }

    .glamour-stats-container {
        grid-template-columns: 1fr;
        max-width: 300px;
    }

    .glamour-badge {
        font-size: 0.8rem;
    }

    .glamour-body-style {
        padding: 1rem;
    }

    .glamour-image-container {
        height: 280px;
    }

    .glamour-stat-number {
        font-size: 1.5rem;
    }
}

@media (max-width: 400px) {
    .glamour-main-heading {
        font-size: 1.8rem;
    }

    .glamour-image-container {
        height: 250px;
    }
}

/* ***About Section End*** */


/*** Service Section***/
.beauty-services-section {

    padding: 22px 0;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    margin-top: -5px;
}

.floating-decoration {
    position: absolute;
    border-radius: 50%;
    filter: blur(75px);
    animation: float 6s ease-in-out infinite;
}

.floating-decoration:nth-child(1) {
    top: 0;
    left: 0;
    width: 24rem;
    height: 24rem;
    background: hsla(60, 65%, 52%, 0.1);
}

.floating-decoration:nth-child(2) {
    bottom: 0;
    right: 0;
    width: 20rem;
    height: 20rem;
    background: hsla(69, 100%, 84%, 0.1);
    animation-delay: 1s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

.glow-pulse {
    animation: glow-pulse 2s ease-in-out infinite;
}

@keyframes glow-pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

.slide-up {
    opacity: 0;
    transform: translateY(30px);
    animation: slide-up 0.8s ease forwards;
}

@keyframes slide-up {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gradient-text {
    /* background: linear-gradient(135deg, hsl(43, 74%, 49%) 0%, hsla(46, 100%, 73%, 0.82) 100%); */
    background: linear-gradient(135deg, hsl(43, 89%, 26%) 0%, hsla(46, 100%, 73%, 0.82) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-card {
    background: linear-gradient(145deg, hsl(45, 80%, 95%) 0%, hsl(45, 45%, 98%) 100%);
    backdrop-filter: blur(8px);
    border: none;
    border-radius: 1rem;
    box-shadow: 0 0px 15px hsla(0, 0%, 0%, 0.228);
    transition: all 0.1s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, hsl(43, 74%, 49%), hsla(46, 100%, 73%, 0.82));
    opacity: 0;
    transition: opacity 0.7s ease;
    border-radius: 1rem;
}

.service-card:hover {
    transform: scale(1.05) translateY(-8px);
    /* box-shadow: 0 0px 15px hsla(56, 65%, 52%, 0.514); */
}

.service-card:hover::before {
    opacity: 0.1;
}

/* Service icon container */
.service-icon-container {
    width: 5rem;
    height: 5rem;
    margin: 0 auto 0.5rem;
    position: relative;
}

.service-icon-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, hsl(43, 74%, 49%), hsla(46, 100%, 73%, 0.82));
    border-radius: 1rem;
    filter: blur(15px);
    opacity: 0.3;
    transition: opacity 0.5s ease;
}

.service-icon {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, hsl(45, 80%, 95%), hsl(45, 45%, 98%));
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.5s ease;
}

.service-card:hover .service-icon-bg {
    opacity: 0.6;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-icon img {
    width: 2.5rem;
    height: 2.5rem;
    object-fit: contain;
    filter: brightness(1.1);
    transition: filter 0.5s ease;
}

/* Service card content */
.service-title {
    color: hsl(220, 25%, 15%);

    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    transition: color 0.5s ease;
}

.service-card:hover .service-title {
    color: hsl(43, 74%, 49%);
}

.service-description {
    color: hsl(40, 15%, 35%);
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Service button */
.btn-service {
    background: linear-gradient(135deg, hsl(43, 74%, 49%), hsla(46, 100%, 73%, 0.82));
    border: none;
    color: rgb(41, 40, 40);
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-service::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.btn-service:hover::before {
    left: 100%;
}

.btn-service:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px hsla(56, 65%, 52%, 0.514);
}

.btn-service i {
    transition: transform 0.3s ease;
}

.btn-service:hover i {
    transform: translateX(4px);
}

/* Main CTA button */
.btn-beauty {
    background: linear-gradient(135deg, hsl(43, 74%, 49%), hsla(46, 100%, 73%, 0.82));
    border: none;
    color: white;
    padding: 1rem 1rem;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
}

.btn-beauty:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px hsla(56, 65%, 52%, 0.514);
}

/* Corner decoration */
.corner-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 5rem;
    height: 5rem;
    background: linear-gradient(135deg, hsl(43, 74%, 49%), hsla(46, 100%, 73%, 0.82));
    opacity: 0.1;
    border-bottom-left-radius: 100%;
    transition: opacity 0.5s ease;
}

.service-card:hover .corner-decoration {
    opacity: 0.2;
}

/* Animation delays */
.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
}

.delay-4 {
    animation-delay: 0.4s;
}

.delay-5 {
    animation-delay: 0.5s;
}

.delay-6 {
    animation-delay: 0.6s;
}

.delay-8 {
    animation-delay: 0.8s;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .beauty-services-section {
        padding: 4rem 0;
    }

    .floating-decoration:nth-child(1) {
        width: 16rem;
        height: 16rem;
    }

    .floating-decoration:nth-child(2) {
        width: 14rem;
        height: 14rem;
    }
}

/* services section  end  */

/*** Pricing Section***/
.luxe-pricing * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.luxe-pricing {
font-family: 'Outfit', sans-serif;
    color: var(--text);
    background: ivory;
    /* min-height: 100vh; */
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.6;
    /* padding: 27px; */
    margin-bottom: 44px;
}

.pricing-section {
    width: 100%;
    max-width: 1400px;
    padding: 0px 30px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.section-subtitle {
    font-family: 'Marcellus', serif;
    color: var(--primary);
    font-size: 1.3rem;
    margin-bottom: 15px;
    display: block;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-title {
    font-size: 3.2rem;
    color: var(--dark);
    margin-bottom: 25px;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient);
    border-radius: 2px;
}

.pricing-cards-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    perspective: 1000px;
}

.pricing-card {
    background: var(--card-gradient);
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
    max-width: 280px;
    box-shadow: var(--shadow);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 1;
    transform-style: preserve-3d;
    flex: 1 1 280px;
}

.pricing-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient);
    z-index: 2;
}

.pricing-card:hover {
    transform: translateY(-15px) rotateX(5deg);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.card-popular {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--gradient);
    color: white;
    padding: 8px 35px;
    font-size: 0.85rem;
    font-weight: 600;
    transform: rotate(45deg);
    box-shadow: 0 5px 20px rgba(124, 92, 252, 0.3);
    z-index: 3;
    letter-spacing: 1px;
}

.card-header {
    padding: 5px 25px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.card-header:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(210, 158, 255, 0.5), transparent);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    color: var(--primary);
    font-size: 24px;
    margin-top: 10px;
}

.card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.card-price {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 5px;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.card-price span {
    font-size: 1.2rem;
    font-weight: 400;
    margin-top: 8px;
    margin-right: 2px;
}

.card-desc {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 5px;
}

.card-body {
    padding: 15px 25px;
}

.features-list {
    list-style: none;
}

.features-list li {
    padding: 5px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.features-list li:hover {
    transform: translateX(5px);
}

.features-list li:last-child {
    border-bottom: none;
}

.features-list i {
    color: var(--primary);
    margin-right: 10px;
    font-size: 1rem;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

.features-list .fa-times-circle {
    color: var(--disabled-color);
}

.features-list .disabled-feature {
    color: var(--disabled-color);
}

.btn-book-pricing {
    display: block;
    width: 100%;
    padding: 15px;
    background: var(--gradient);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    text-align: center;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    letter-spacing: 1px;
}

.btn-book-pricing:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: all 0.6s ease;
}

.btn-book-pricing:hover:before {
    left: 100%;
}

.btn-book-pricing:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(124, 92, 252, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: white;
}

.decoration {
    position: absolute;
    z-index: 0;
    opacity: 0.15;
}

.decoration-1 {
    top: 2%;
    left: 5%;
    font-size: 120px;
    color: var(--primary);
    transform: rotate(-15deg);
}

.decoration-2 {
    bottom: 10%;
    right: 5%;
    font-size: 100px;
    color: var(--secondary);
    transform: rotate(10deg);
}

/* Media Queries - UPDATED FOR BETTER MOBILE DISPLAY */
@media (max-width: 1200px) {
    .pricing-card {
        max-width: 260px;
        flex: 1 1 260px;
    }
    
    .card-price {
        font-size: 2.5rem;
    }
}

@media (max-width: 1100px) {
    .pricing-cards-container {
        gap: 20px;
    }
    
    .pricing-card {
        max-width: 240px;
        flex: 1 1 240px;
    }
    
    .card-header {
        padding: 15px 20px;
    }
    
    .card-body {
        padding: 15px 20px;
    }
}

@media (max-width: 992px) {
    .pricing-cards-container {
        gap: 25px;
    }
    
    .pricing-card {
        max-width: calc(50% - 25px);
        flex: 1 1 calc(50% - 25px);
    }
    
    .section-title {
        font-size: 2.8rem;
    }
    
    .card-price {
        font-size: 2.8rem;
    }
}

/* UPDATED MOBILE STYLES - CARDS NOW TAKE 85% OF SCREEN WIDTH */
@media (max-width: 768px) {
    .pricing-cards-container {
        flex-direction: column;
        align-items: center;
        gap: 35px; /* Increased gap for better spacing */
    }
    
    .pricing-card {
        max-width: 85%; /* Changed to 85% of screen width */
        width: 85%;
        flex: 0 0 auto; /* Remove flex growth/shrink for fixed width */
        margin: 0 auto; /* Center the cards */
    }
    
    .section-title {
        font-size: 2.4rem;
    }
    
    .card-popular {
        right: -25px;
        padding: 6px 30px;
        font-size: 0.8rem;
    }
    
    /* Increase card sizes for better mobile display */
    .card-header {
        padding: 25px 30px;
    }
    
    .card-body {
        padding: 20px 30px;
    }
    
    .card-title {
        font-size: 1.8rem;
    }
    
    .card-price {
        font-size: 3rem;
    }
    
    .card-price span {
        font-size: 1.3rem;
        margin-top: 10px;
    }
    
    .card-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
        margin-bottom: 10px;
    }
    
    .features-list li {
        padding: 7px 0;
        font-size: 1rem;
    }
    
    .features-list i {
        font-size: 1.1rem;
        margin-right: 12px;
    }
    
    .btn-book-pricing {
        padding: 18px;
        font-size: 1.2rem;
    }
}

/* Extra adjustments for very small screens */
@media (max-width: 480px) {
    .pricing-section {
        padding: 0px 0px;
    }
    
    .pricing-card {
        max-width: 90%; /* Slightly larger on very small screens */
        width: 90%;
    }
    
    .card-header {
        padding: 5px 25px;
    }
    
    .card-body {
        padding: 20px 25px;
    }
    
    .card-title {
        font-size: 1.7rem;
    }
    
    .card-price {
        font-size: 2.8rem;
    }
    
    .features-list li {
        font-size: 0.95rem;
    }
    
    .card-popular {
        right: -20px;
        padding: 5px 25px;
        font-size: 0.75rem;
        top: 15px;
    }
    .card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1px;
}
}

/* Landscape mode adjustments */
@media (max-width: 768px) and (orientation: landscape) {
    .pricing-cards-container {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .pricing-card {
        max-width: 45%;
        width: 45%;
        flex: 0 0 auto;
    }
}

/* Promo Side Styles */
.promo-side {
    background: linear-gradient(135deg, #8e6e9f 0%, #5a3d7a 100%);
    color: white;
    padding: 60px 40px;
    position: relative;
    min-height: 100vh;
}

.promo-content {
    max-width: 500px;
    margin: 0 auto;
}

.section-header {
    margin-bottom: 40px;
    text-align: center;
}

.section-header .subtitle {
    display: block;
    font-size: 18px;
    letter-spacing: 3px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.section-header .title {
    font-size: 36px;
    font-weight: 300;
    margin-bottom: 20px;
    line-height: 1.3;
}

.section-header .decorative-line {
    width: 80px;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
    margin: 0 auto;
}

.special-offer-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    color: #333;
    position: relative;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.3s ease;
}

.special-offer-card:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.offer-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: #ff6b6b;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 14px;
}

.special-offer-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #5a3d7a;
}

.price-display {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.original-price {
    text-decoration: line-through;
    color: #999;
    margin-right: 15px;
    font-size: 20px;
}

.discounted-price {
    font-size: 32px;
    font-weight: bold;
    color: #5a3d7a;
}

.offer-description {
    margin-bottom: 20px;
    line-height: 1.6;
}

.offer-features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.offer-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.offer-features li i {
    color: #8e6e9f;
    margin-right: 10px;
}

.book-now-btn {
    background: #5a3d7a;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}

.book-now-btn:hover {
    background: #3a2652;
    transform: translateY(-2px);
}

/* Extra small devices (max-width: 576px) */
@media (max-width: 576px) {
    .section-title {
        font-size: 2rem;
        line-height: 1.3;
    }

    .pricing-cards-container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .pricing-card {
        width: 22rem !important;
        margin: 0px -17px auto;
        max-width: none;
    }

    .card-title {
        font-size: 1.5rem;
    }

    .card-price {
        font-size: 2.5rem;
    }

    .features-list li {
        font-size: 0.95rem;
    }

    .btn-book-pricing {
        font-size: 1rem;
        padding: 14px;
    }

    .card-popular {
        font-size: 0.75rem;
        right: -25px;
        padding: 6px 25px;
    }

    .decoration-1,
    .decoration-2 {
        display: none; /* Hide large decorative icons on small screens */
    }
}

/* Ultra small devices (max-width: 400px) */
@media (max-width: 400px) {
    .section-title {
        font-size: 1.7rem;
    }

    .card-title {
        font-size: 1.3rem;
    }

    .card-price {
        font-size: 2rem;
    }

    .features-list li {
        font-size: 0.85rem;
    }
}

/* --------------testimonial -------*/
/* .testimonials-container {
    max-width: 1039px;
    margin: 0 auto;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.testimonial-section-wrapper {
    margin-top: -20px;
}

.column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.testimonial-card {
    border-radius: 12px;
    padding: 20px;
    color: rgb(20, 19, 19);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0px 4px 10px rgb(99 97 95 / 69%);
}

.testimonial-card:hover {
    transform: translateY(-2px);
    box-shadow: 0px 0px 10px rgba(241, 180, 122, 0.849);
}

.testimonial-card.short,
.testimonial-card.medium,
.testimonial-card.tall {
    height: auto;
    max-height: none;
}

.profile {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.profile-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: rgb(16 64 135);
    margin-bottom: 2px;
}

.profile-info span {
    font-size: 14px;
    color: #4f3429;
}

.testimonial-card p {
    font-size: 15px;
    line-height: 1.5;
    color: #050505;
    margin-bottom: 8px;
}

.testimonial-card p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .testimonials-container {
        flex-direction: column;
        gap: 16px;
    }

    .testimonial-card.tall,
    .testimonial-card.medium,
    .testimonial-card.short {
        min-height: auto;
    }
}

.testimonial-card {
    position: relative;
    overflow: hidden;
}

.testimonial-content {
    max-height: 80px;
    overflow: hidden;
    transition: max-height 0.5s ease;
    position: relative;
}

.testimonial-content.expanded {
    max-height: 1000px;
}

.testimonial-card.tall .testimonial-content {
    max-height: 180px;
}

.testimonial-card.medium .testimonial-content {
    max-height: 100px;
}

.testimonial-card.short .testimonial-content {
    max-height: 60px;
}

.read-more {
    color: #6d6d6d;
    cursor: pointer;
    font-weight: 600;
    display: inline-block;
    margin-top: 8px;
    font-style: initial;
    margin-left: auto;
}


.read-more:hover {
    text-decoration: none;
}

.testimonial-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.testimonial-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.testimonial-popup {
    background: ivory;
    border-radius: 12px;
    padding: 30px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    position: relative;
}

.testimonial-popup-overlay.active .testimonial-popup {
    transform: scale(1);
}

.popup-profile {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.popup-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.popup-profile-info h4 {
    font-size: 18px;
    font-weight: 600;
    color: rgb(16 64 135);
    margin-bottom: 4px;
}

.popup-profile-info span {
    font-size: 16px;
    color: #4f3429;
}

.popup-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #050505;
    margin-bottom: 20px;
}

.read-less {
    background-color: #4a6baf;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.2s ease;
}

.read-less:hover {
    background-color: #3a5a9f;
}

body.popup-active {
    overflow: hidden;
}

.popup-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    color: #666;
    transition: color 0.2s ease;
}

.popup-close-btn:hover {
    color: #333;
}

.popup-close-btn svg {
    display: block;
}

.testimonial-popup {
    padding: 40px 30px 30px;
}

.testimonialmodal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

.testimonialmodal-content {
    background: #1e1e2f;
    color: #fff;
    padding: 2rem;
    max-width: 650px;
    width: 90%;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    position: relative;
    animation: slideUp 0.35s ease;
    font-size: 1rem;
    line-height: 1.6;
}

.testimonialmodal-close {
    position: absolute;
    top: 8px;
    right: 20px;
    font-size: 2rem;
    color: #bbb;
    cursor: pointer;
    transition: color 0.2s ease;
}

.testimonialmodal-close:hover {
    color: #fff;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
} */
/*** Testimonial ***/
.tst-container {
    height: 400px;
    display: grid;
    grid-template-rows: 500px 100px;
    grid-template-columns: 1fr 40px 40px 40px 40px 40px 1fr;
    align-items: center;
    justify-items: center;
    font-family: 'Poppins', sans-serif;
    margin-top: -5%;

}

.tst-card-header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.tst-item img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin-right: 15px;
    border: 3px solid #eee;
}

.tst-name {
    margin: 0;
    font-weight: 600;
    font-size: 18px;
    color: #222;
}

.tst-location {
    font-size: 13px;
    color: #777;
    margin-top: 2px;
}

.tst-occupation {
    font-style: italic;
    margin: 5px 0;
    font-size: 14px;
    color: #666;
}

main#tst-carousel {
    grid-row: 1 / 2;
    grid-column: 1 / 8;
    width: 100%;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transform-style: preserve-3d;
    perspective: 900px;
    --items: 5;
    --position: 1;
    margin-top: -40px;
}

.tst-item {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    padding: 20px;
    position: absolute;
    width: 350px;
    height: 230px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    --r: calc(var(--position) - var(--offset));
    --abs: max(calc(var(--r) * -1), var(--r));
    transform: rotateY(calc(-10deg * var(--r))) translateX(calc(-330px * var(--r)));
    z-index: calc((var(--items) - var(--abs)));
}

.tst-item:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);

}

.tst-item:nth-of-type(1) {
    --offset: 1;
}

.tst-item:nth-of-type(2) {
    --offset: 2;
}

.tst-item:nth-of-type(3) {
    --offset: 3;
}

.tst-item:nth-of-type(4) {
    --offset: 4;
}

.tst-item:nth-of-type(5) {
    --offset: 5;
}

.tst-item:nth-of-type(6) {
    --offset: 6;
}

.tst-item:nth-of-type(7) {
    --offset: 7;
}

.tst-testimonial {
    font-size: 14px;
    line-height: 1.6;
    color: #444;
    margin-top: 8px;
}

.tst-stars {
    margin-top: 10px;
    color: #FFD700;
}

.tst-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 22px;
    background: #fff;
    border-radius: 50%;
    padding: 10px;
    cursor: pointer;
    pointer-events: auto;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    transition: all 0.2s ease;
    width: 50px;
    height: 50px;
}

.tst-nav i {
    text-align: center;
}

.tst-nav:hover {
    background: #f0f0f0;
}

.tst-nav-left {
    left: 80px;
}

.tst-nav-left i {
    margin-left: 5px;
}

.tst-nav-right i {
    margin-left: 10px;
}

.tst-nav-right {
    right: 80px;
}

@media (max-width: 768px) {
    .tst-item {
        width: 317px;
        height: 225px;
    }

    .tst-nav {
        padding: 8px;
        z-index: 100;
        width: 40px;
        height: 40px;
    }

    .tst-nav-left {
        left: 10px;
    }

    .tst-nav-right {
        right: 10px;
    }

    .tst-nav-left i,
    .tst-nav-right i {
        font-size: 15px;
        margin-top: -50px;
    }

    main#tst-carousel {

        margin-top: -10rem;
    }

    .tst-container {

        margin-top: -8%;

    }

}

/* testimonial end  */
/* Services Side Styles */
.services-side {
    padding: 60px 40px;
    background: white;
}

.service-category-tabs {
    display: flex;
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
}

.tab-btn {
    background: none;
    border: none;
    padding: 10px 20px;
    margin-right: 10px;
    cursor: pointer;
    font-weight: 600;
    color: #999;
    position: relative;
    transition: all 0.3s;
}

.tab-btn.active {
    color: #5a3d7a;
}

.tab-btn.active:after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #8e6e9f;
}

.tab-btn:hover {
    color: #5a3d7a;
}

.service-category {
    display: none;
}

.service-category.active {
    display: block;
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s;
}

.service-item:hover {
    background: rgba(142, 110, 159, 0.05);
}

.service-item.featured {
    background: rgba(142, 110, 159, 0.05);
    border-left: 3px solid #8e6e9f;
    padding-left: 15px;
}

.service-info {
    flex: 1;
    padding-right: 20px;
}

.service-info h3 {
    margin: 0 0 5px 0;
    font-size: 18px;
}

.service-info p {
    margin: 0;
    color: #777;
    font-size: 14px;
}

.popular-tag {
    display: inline-block;
    background: #ff6b6b;
    color: white;
    font-size: 10px;
    padding: 3px 8px;
    border-radius: 10px;
    margin-top: 5px;
    text-transform: uppercase;
}

.service-price {
    font-weight: bold;
    font-size: 18px;
    min-width: 80px;
    text-align: center;
    color: #5a3d7a;
}

.service-duration {
    color: #999;
    font-size: 14px;
    min-width: 80px;
    text-align: center;
}

/* Membership Card */
.membership-card {
    background: #f5f0fa;
    padding: 25px;
    border-radius: 10px;
    margin-top: 40px;
}

.membership-card h3 {
    color: #5a3d7a;
    margin-top: 0;
}

.membership-card ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.membership-card ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.membership-card ul li:before {
    content: '✓';
    color: #8e6e9f;
    position: absolute;
    left: 0;
}

.membership-btn {
    background: #8e6e9f;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s;
}

.membership-btn:hover {
    background: #5a3d7a;
}

/* Responsive Adjustments */
@media (max-width: 992px) {

    .promo-side,
    .services-side {
        min-height: auto;
    }

    .special-offer-card {
        transform: none;
    }
}

@media (max-width: 768px) {
    .service-item {
        flex-wrap: wrap;
    }

    .service-price,
    .service-duration {
        text-align: left;
        min-width: auto;
        margin-top: 10px;
        width: 50%;
    }
}

/*** Blog ***/
.blog .btn-dark {
    border-width: 2px;
    background: var(--bs-primary);
    color: var(--bs-dark);
}

.blog .btn-dark:hover {
    background: var(--bs-dark);
    color: var(--bs-white);
}


/*** Gallery section ***/
.gallery-container {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;

    overflow: hidden;
}

.swiper {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
}

.swiper-slide {
    width: 300px;
    height: 400px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    filter: blur(1px);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: self-start;
    position: relative;
    overflow: hidden;
}

.swiper-slide-active {
    filter: blur(0px);
}

.swiper-pagination-bullet,
.swiper-pagination-bullet-active {
    background: #fff;
}

.slide-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
}

.slide-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #0f2027, #203a4300, #2c536400);
    border-radius: inherit;
    z-index: 0;
}

.swiper-pagination {
    bottom: 10px !important;
}

.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right {
    background-image: none;
}

/*** Team ***/
.salone-team-section {
    position: relative;
    padding: 5rem 0;
    overflow: hidden;
}

.salone-team-heading {
    text-align: center;
    margin-bottom: 4rem;
}

.salone-team-subtitle {
    font-family: 'Dancing Script', cursive;
    font-size: 2.2rem;
    font-weight: 600;
    color: rgb(255 233 87);
    margin-bottom: 1rem;
    display: block;
}

.salone-team-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #2a1b3d;
    margin-bottom: 0;
}

.salone-team-container {
    position: relative;
    z-index: 2;
}

.salone-team-row {
    position: relative;
}

.salone-team-row::before {
    position: absolute;
    content: "";
    width: 200%;
    height: 200px;
    top: 50%;
    left: -50%;
    transform: translateY(-50%);
    margin-top: 1rem;
    background: linear-gradient(135deg, rgb(106, 17, 203), rgb(255, 142, 83));
    border-radius: 10px;
    opacity: 0.1;
    z-index: -1;
}

.salone-team-member {
    margin-bottom: 2rem;
    transition: all 0.5s ease;
}

.salone-team-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
}

.salone-team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(106, 17, 203, 0.2);
}

.salone-team-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: all 0.5s ease;
}

.salone-team-card:hover .salone-team-img {
    transform: scale(1.1);
}

.salone-team-overlay {
    position: absolute;
    padding: 10px;
    right: 25px;
    bottom: 25px;
    left: 25px;
    text-align: center;
    background: rgb(0 0 0 / 39%);
    backdrop-filter: blur(5px);
    transition: all 0.5s ease;
    z-index: 3;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.salone-team-card:hover .salone-team-overlay {
    background: rgba(77, 77, 77, 0.39);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(106, 17, 203, 0.25);
}

.salone-team-role {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgb(161, 250, 255);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.salone-team-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #f1e7ff;
}

.salone-team-social {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.salone-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    /* border: 1px solid rgba(255, 255, 255, 0.5); */
    color: #e4d0ff;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    text-decoration: none;
}


.salone-social-link.facebook {
    background: linear-gradient(45deg, #3b5998, #0078ff);

}

.salone-social-link.facebook:hover {
    background: linear-gradient(45deg, #0078ff, #3b5998);

}

.salone-social-link.linked-in {
    background: linear-gradient(45deg, #0077b5, #00a0dc);
}

.salone-social-link.linked-in:hover {
    background: linear-gradient(45deg, #0077b5, #00a0dc);
}

.salone-social-link.instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.salone-social-link.instagram:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.salone-social-link:hover {
    background: linear-gradient(135deg, rgb(106, 17, 203), rgb(255, 142, 83));
    color: white;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(106, 17, 203, 0.3);
}

/* Animation classes */
.salone-fade-in {
    animation: saloneFadeIn 1s ease forwards;
    opacity: 0;
}

.salone-delay-1 {
    animation-delay: 0.1s;
}

.salone-delay-2 {
    animation-delay: 0.3s;
}

.salone-delay-3 {
    animation-delay: 0.5s;
}

.salone-delay-4 {
    animation-delay: 0.7s;
}

@keyframes saloneFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Decorative elements */
.salone-team-decoration {
    position: absolute;
    z-index: 1;
    opacity: 0.1;
}

.salone-decoration-1 {
    top: 10%;
    left: 5%;
    font-size: 120px;
    color: rgb(106, 17, 203);
    transform: rotate(-15deg);
}

.salone-decoration-2 {
    bottom: 10%;
    right: 5%;
    font-size: 100px;
    color: rgb(255, 142, 83);
    transform: rotate(10deg);
}

/* Responsive styles */
@media (max-width: 1200px) {
    .salone-team-row::before {
        height: 180px;
    }
}

@media (max-width: 992px) {
    .salone-team-row::before {
        display: none;
    }

    .salone-team-title {
        font-size: 2.4rem;
    }

    .salone-team-subtitle {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .salone-team-section {
        padding: 3rem 0;
    }

    .salone-team-heading {
        margin-bottom: 3rem;
    }

    .salone-team-title {
        font-size: 2rem;
    }

    .salone-team-subtitle {
        font-size: 1.8rem;
    }

    .salone-team-img {
        height: 300px;
    }

    .salone-team-overlay {
        padding: 20px;
        right: 20px;
        bottom: 20px;
        left: 20px;
    }

    .salone-team-name {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .salone-team-member {
        max-width: 350px;
        margin-left: auto;
        margin-right: auto;
    }

    .salone-team-title {
        font-size: 1.8rem;
    }

    .salone-team-subtitle {
        font-size: 1.6rem;
    }

    .salone-team-overlay {
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
    }
}

/* Contact section  */
/* Contact Section */
.csec-contact-area {
    padding: 60px 20px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    border-radius: 20px;
    margin: 50px auto;
    max-width: 1100px;
}

/* Header */
.csec-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    background: var(--gradient);
    -webkit-background-clip: text;
    color: transparent;
}

.csec-subtitle {
    font-size: 1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Layout */
.csec-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.csec-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Cards */
.csec-card {
    background: #fff;
    color: #333;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.csec-card:hover {
    transform: translateY(-5px);
}

.csec-card i {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* Form */
.csec-form {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.csec-field {
    margin-bottom: 15px;
}

.csec-field input,
.csec-field textarea {
    width: 100%;
    padding: 10px 15px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 1rem;
    outline: none;
}

.csec-field input:focus,
.csec-field textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

/* Button */
.csec-btn {
    display: block;
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    background: var(--gradient);
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s ease;
}

.csec-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media(max-width: 768px) {
    .csec-content {
        grid-template-columns: 1fr;
    }
}

/* Contact section End */

/*** Footer ***/
/* Custom classes for styling */
.luxe-footer {
    font-family: 'Poppins', sans-serif;
    color: white;
    background: #212529;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.luxe-footer-container {
    position: relative;
    background: #4A1F2C;
    color: white;
    padding: 4rem 0 2rem;
    overflow: hidden;
    box-shadow: 0 -5px 40px rgba(0, 0, 0, 0.06);
}

/* Enhanced Gradient blur effects */
.luxe-blur-spot {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
    animation-duration: 20s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

.luxe-blur-1 {
    width: 500px;
    height: 500px;
    background: rgba(89, 0, 184, 0.683);
    filter: blur(90px);
    top: -250px;
    left: -150px;
    animation-name: luxe-float-1;
}

.luxe-blur-2 {
    width: 600px;
    height: 600px;
    background: rgba(255, 142, 83, 0.4);
    filter: blur(100px);
    bottom: -300px;
    right: -200px;
    animation-name: luxe-float-2;
}

.luxe-blur-3 {
    width: 450px;
    height: 450px;
    background: linear-gradient(135deg, rgba(138, 28, 255, 0.539), rgba(255, 142, 83, 0.4));
    filter: blur(85px);
    bottom: 150px;
    left: 25%;
    animation-name: luxe-float-3;
}

.luxe-blur-4 {
    width: 350px;
    height: 350px;
    background: rgba(106, 17, 203, 0.3);
    filter: blur(70px);
    top: 40%;
    right: 15%;
    animation-name: luxe-float-4;
}

.luxe-blur-5 {
    width: 300px;
    height: 300px;
    background: rgba(255, 200, 100, 0.3);
    filter: blur(65px);
    top: 20%;
    left: 40%;
    animation-name: luxe-float-5;
}

@keyframes luxe-float-1 {

    0%,
    100% {
        transform: translateY(0) translateX(0) scale(1);
    }

    50% {
        transform: translateY(-40px) translateX(30px) scale(1.08);
    }
}

@keyframes luxe-float-2 {

    0%,
    100% {
        transform: translateY(0) translateX(0) scale(1);
    }

    50% {
        transform: translateY(30px) translateX(-40px) scale(1.06);
    }
}

@keyframes luxe-float-3 {

    0%,
    100% {
        transform: translateY(0) translateX(0) scale(1);
    }

    50% {
        transform: translateY(-30px) translateX(-20px) scale(1.05);
    }
}

@keyframes luxe-float-4 {

    0%,
    100% {
        transform: translateY(0) translateX(0) scale(1);
    }

    50% {
        transform: translateY(25px) translateX(25px) scale(1.04);
    }
}

@keyframes luxe-float-5 {

    0%,
    100% {
        transform: translateY(0) translateX(0) scale(1);
    }

    50% {
        transform: translateY(-25px) translateX(-15px) scale(1.03);
    }
}

/* Content styling */
.luxe-footer-content {
    position: relative;
    z-index: 2;
}

.luxe-footer-brand {
    margin-bottom: 1rem;
}

.luxe-footer-brand img {
    width: 50%;
    height: 50px;
}

.luxe-footer-brand-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, rgb(106, 17, 203), rgb(255, 142, 83));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    position: relative;
    padding-bottom: 10px;
}

.luxe-footer-brand-heading:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, rgb(106, 17, 203), rgb(255, 142, 83));
    border-radius: 2px;
}

.luxe-footer-brand-icon {
    background: linear-gradient(135deg, rgb(106, 17, 203), rgb(255, 142, 83));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-right: 10px;
}

.luxe-footer-text {
    color: #ffffff;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.luxe-contact-info {
    display: flex;
    align-items: center;
    /* margin-bottom: 1rem; */
    transition: all 0.3s ease;
    padding: 8px 15px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    /* border: 1px solid rgba(255, 255, 255, 0.2); */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    width: 64%;
}

.luxe-contact-info:hover {
    transform: translateX(5px);
    /* box-shadow: 0 6px 20px rgba(106, 17, 203, 0.1); */
}

.luxe-contact-icon {
    width: 20px;
    margin-right: 12px;
     color: #E6C77B;
    font-size: 1.1rem;
}

/* Common styles (keep as is) */
.luxe-social-icons {
    display: flex;
    gap: 15px;
    margin-top: 2rem;
}

.luxe-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    /* color: rgb(106, 17, 203); */
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    color: white;
}

.luxe-social-link:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: -1;
}

.luxe-social-link:hover {
    color: white;
    transform: translateY(-5px) rotate(5deg);
    box-shadow: 0 10px 25px rgba(106, 17, 203, 0.2);
}

.luxe-social-link:hover:before {
    opacity: 1;
}

/* 🎨 Brand-specific gradients */
.luxe-social-link.twitter {
    background: linear-gradient(45deg, #1DA1F2, #0d8ddb);
}

.luxe-social-link.facebook {
    background: linear-gradient(45deg, #3b5998, #0078ff);
}

.luxe-social-link.linkedin {
    background: linear-gradient(45deg, #0077b5, #00a0dc);
}

.luxe-social-link.instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.luxe-social-link.pinterest {
    background: linear-gradient(45deg, #bd081c, #e60023);
}

.luxe-footer-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.8rem;
    color: #ffffff;
    position: relative;
    padding-bottom: 12px;
    display: inline-block;
}

.luxe-footer-heading:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 4px;
    background: linear-gradient(135deg, #F3DCA2, #B38B2E);

    border-radius: 2px;
}

.luxe-footer-link {
    display: block;
    margin-bottom: 15px;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
    font-weight: 500;
}

.luxe-footer-link:hover {
    color: #D4AF37;

    padding-left: 12px;
}

.luxe-footer-link:before {
    content: '\f30b';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    opacity: 0;
    transition: all 0.3s ease;
    color: #D4AF37;

}

.luxe-footer-link:hover:before {
    opacity: 1;
    left: -10px;
}

.luxe-newsletter {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    margin-top: 20px;
}

.luxe-newsletter-input {
    position: relative;
    margin-bottom: 1.2rem;
}

.luxe-newsletter-field {
    width: 100%;
    padding: 18px 25px;
    border: 1px solid #e9ecef;
    border-radius: 15px;
    background: white;
    transition: all 0.3s ease;
    font-size: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.luxe-newsletter-field:focus {
    outline: none;
    border-color: rgb(106, 17, 203);
    box-shadow: 0 0 0 3px rgba(106, 17, 203, 0.15);
}

.luxe-newsletter-btn {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, rgb(106, 17, 203), rgb(255, 142, 83));
    border: none;
    width: 55px;
    height: 55px;
    border-radius: 12px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(106, 17, 203, 0.2);
}

.luxe-newsletter-btn:hover {
    background: linear-gradient(135deg, rgb(255, 142, 83), rgb(255, 200, 100));
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 8px 20px rgba(106, 17, 203, 0.3);
}

.luxe-copyright {
    text-align: center;
    margin-top: 5rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    color: #6c757d;
    font-size: 0.95rem;
    position: relative;
}

.luxe-copyright:before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, rgb(106, 17, 203), rgb(255, 142, 83));
    border-radius: 2px;
}

/* Floating elements */
.luxe-floating-icon {
    position: absolute;
    z-index: 1;
    font-size: 1.5rem;
    color: rgb(106, 17, 203);
    opacity: 0.7;
    animation: luxe-float-icon 15s infinite ease-in-out;
}

@keyframes luxe-float-icon {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    25% {
        transform: translateY(-30px) rotate(10deg);
    }

    50% {
        transform: translateY(20px) rotate(-10deg);
    }

    75% {
        transform: translateY(-20px) rotate(5deg);
    }
}

/* Responsive styles */
@media (max-width: 992px) {
    .luxe-footer-container::after {
        display: none;
    }

    .luxe-footer-links-section {
        margin-top: 2.5rem;
    }

    .luxe-newsletter {
        margin-top: 2.5rem;
    }

    .luxe-blur-3 {
        left: 10%;
    }

    .luxe-blur-4 {
        display: none;
    }
}

@media (max-width: 768px) {
    .luxe-footer-container {
        padding: 4rem 0 2rem;
    }

    .luxe-footer-brand-heading {
        font-size: 2.2rem;
    }

    .luxe-social-icons {
        justify-content: center;
    }

    .luxe-footer-heading {
        text-align: center;
    }

    .luxe-footer-heading:after {
        left: 50%;
        transform: translateX(-50%);
    }

    .luxe-footer-link {
        text-align: center;
    }

    .luxe-footer-link:hover:before {
        display: none;
    }

    .luxe-contact-info {
        width: 100%;
    }
}

/* Copyright section changes */
.copyright-section {
	background:#4A1F2C !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    padding: 1.5rem 0 !important;
}

.copyright-section a {

    text-decoration: none;
    transition: all 0.3s ease;
}

.copyright-section a:hover {
    color: rgb(255, 142, 83) !important;
}

/* Mobile responsive for links */
@media (max-width: 768px) {
    .luxe-footer-links-section {
        width: 50% !important;
        float: left !important;
        margin-top: 0 !important;
    }
    
    .col-sm-6.luxe-footer-links-section {
        flex: 0 0 auto !important;
        width: 50% !important;
    }
    
    .luxe-footer-content .row.g-4 {
        display: flex !important;
        flex-wrap: wrap !important;
    }
    
    /* Ensure proper spacing */
    .luxe-footer-links-section:first-child {
        padding-right: 15px !important;
    }
    
    .luxe-footer-links-section:last-child {
        padding-left: 15px !important;
    }
}

/* For very small screens */
@media (max-width: 576px) {
    .luxe-footer-links-section {
        width: 100% !important;
        float: none !important;
        margin-bottom: 2rem !important;
    }
    
    .col-sm-6.luxe-footer-links-section {
        width: 100% !important;
    }
}
/* Mobile responsive for links - Fixed */
@media (max-width: 768px) {
    .col-lg-6.ps-lg-5 .row.g-4 {
        display: flex !important;
        flex-wrap: wrap !important;
    }
    
    .col-lg-6.ps-lg-5 .col-sm-6.luxe-footer-links-section {
        flex: 0 0 50% !important;
        max-width: 50% !important;
        width: 50% !important;
        padding-right: 15px !important;
        padding-left: 15px !important;
        margin-top: 0 !important;
    }
    
    /* Reset some styles for mobile */
    .luxe-footer-links-section .luxe-footer-heading {
        text-align: left !important;
    }
    
    .luxe-footer-links-section .luxe-footer-heading:after {
        left: 0 !important;
        transform: none !important;
    }
    
    .luxe-footer-links-section .luxe-footer-link {
        text-align: left !important;
    }
    
    .luxe-footer-links-section .luxe-footer-link:hover:before {
        display: block !important;
    }
}

/* For very small screens */
@media (max-width: 576px) {
    .col-lg-6.ps-lg-5 .col-sm-6.luxe-footer-links-section {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        width: 100% !important;
        margin-bottom: 2rem !important;
    }
}
/* FORCE Quick Links & Our Services in ONE ROW on mobile */
@media (max-width: 768px) {

    /* Target only footer link columns */
    .luxe-footer-content .row.g-4 {
        display: flex !important;
        flex-wrap: nowrap !important;
    }

    .luxe-footer-links-section {
        flex: 0 0 50% !important;
        max-width: 50% !important;
        width: 50% !important;
        margin-bottom: 0 !important;
    }
}


/* -------------------------------------------Pages CSS------------------------------------------------ */
/* Makover Page Start */

/* Video Gallery Section */
.glamour-video-section {
    padding: 1.5rem 2rem;
    position: relative;
    overflow: hidden;
}

.glamour-video-orb-bg {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
    z-index: 0;
    animation: glamourFloat 15s infinite alternate ease-in-out;
}

.glamour-video-orb-1 {
    background: linear-gradient(45deg, #FFD700, #FFC107, #ffb30085);
    top: -200px;
    left: -200px;
}

.glamour-video-orb-2 {
    background: linear-gradient(45deg, #FFD700, #FFC107, #ffb30097);
    bottom: -200px;
    right: -200px;
    animation-delay: 2s;
}

@keyframes glamourFloat {
    0% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(50px, 50px) scale(1.1);
    }

    100% {
        transform: translate(-30px, -30px) scale(0.9);
    }
}

.glamour-video-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.glamour-video-header {
    text-align: center;
    margin-bottom: 1rem;
}

.glamour-video-badge {
    display: inline-block;
    background: linear-gradient(45deg, #FF9A8B 0%, #FF6B95 50%, #FF8E53 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(255, 106, 149, 0.3);
    letter-spacing: 1px;
}

.glamour-video-title {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, #6A11CB, #FF8E53);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.glamour-video-subtitle {
    font-size: 1.2rem;
    color: #6D6D7A;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.glamour-video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.glamour-video-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: #000;
    height: 100%;
    /* Portrait aspect ratio */
    cursor: pointer;
}

.glamour-video-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.25);
}

.glamour-video-element {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: all 0.5s ease;
}

.glamour-video-card:hover .glamour-video-element {
    transform: scale(1.05);
}

.glamour-video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2.5rem 2rem 2rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    color: white;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(20px);
}

.glamour-video-card:hover .glamour-video-overlay {
    opacity: 1;
    transform: translateY(0);
}

.glamour-video-name {
    font-family: 'Prata', serif;
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    letter-spacing: 0.5px;
    color: white;
}

.glamour-video-desc {
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.6;
}

.glamour-video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.glamour-video-card:hover .glamour-video-play-btn {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    background: rgba(255, 107, 149, 0.85);
}

.glamour-video-play-btn i {
    margin-left: 5px;
}

/* Video progress indicator */
.glamour-video-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

.glamour-video-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #FF9A8B, #FF6B95);
    transition: width 0.3s linear;
}

.glamour-video-controls {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 4rem;
}

.glamour-control-btn {
    padding: 1rem 2.5rem;
    background: linear-gradient(45deg, #FF9A8B, #FF6B95);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 8px 20px rgba(255, 106, 149, 0.3);
    letter-spacing: 0.5px;
    font-size: 1.1rem;
}

.glamour-control-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(255, 106, 149, 0.4);
    background: linear-gradient(45deg, #FF8A7A, #FF5B85);
}

/* Video counter */
.glamour-video-counter {
    text-align: center;
    margin-top: 2rem;
    color: #6D6D7A;
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .glamour-video-grid {
        gap: 2rem;
    }

    .glamour-video-card {
        height: 600px;
    }
}

@media (max-width: 992px) {
    .glamour-video-title {
        font-size: 2.5rem;
    }

    .glamour-video-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .glamour-video-card {
        height: 550px;
    }
}

@media (max-width: 768px) {
    .glamour-video-section {
        padding: 4rem 1.5rem;
    }

    .glamour-video-title {
        font-size: 2.2rem;
    }

    .glamour-video-subtitle {
        font-size: 1.1rem;
    }

    .glamour-video-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
    }

    .glamour-video-card {
        height: 600px;
    }

    .glamour-video-play-btn {
        width: 70px;
        height: 70px;
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .glamour-video-title {
        font-size: 2rem;
    }

    .glamour-video-card {
        height: 520px;
    }

    .glamour-video-play-btn {
        width: 60px;
        height: 60px;
        font-size: 1.3rem;
    }

    .glamour-control-btn {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 400px) {
    .glamour-video-card {
        height: 480px;
    }

    .glamour-video-title {
        font-size: 1.8rem;
    }

    .glamour-video-overlay {
        padding: 1.5rem 1.25rem 1.5rem;
    }

    .glamour-video-name {
        font-size: 1.3rem;
    }
}

/* Pagination Styles */
.glamour-pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.glamour-page-btn {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: white;
    border: 2px solid #f1f1f1;
    color: #6D6D7A;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.glamour-page-btn:hover {
    border-color: #FF6B95;
    color: #FF6B95;
    transform: translateY(-3px);
}

.glamour-page-btn.active {
    background: linear-gradient(45deg, #FF9A8B, #FF6B95);
    color: white;
    border-color: transparent;
}

.glamour-page-btn.dots {
    border: none;
    background: transparent;
    cursor: default;
}

.glamour-page-btn.dots:hover {
    transform: none;
    color: #6D6D7A;
}

.glamour-pagination-nav {
    display: flex;
    gap: 0.5rem;
}

.glamour-nav-btn {
    padding: 0.5rem 1rem;
    background: white;
    border: 2px solid #f1f1f1;
    border-radius: 12px;
    color: #6D6D7A;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.glamour-nav-btn:hover:not(:disabled) {
    border-color: #FF6B95;
    color: #FF6B95;
    transform: translateY(-3px);
}

.glamour-nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Load More Button Alternative */
.glamour-load-more {
    text-align: center;
    margin-top: 3rem;
}

.glamour-load-btn {
    padding: 1rem 2.5rem;
    background: linear-gradient(45deg, #FF9A8B, #FF6B95);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 8px 20px rgba(255, 106, 149, 0.3);
    letter-spacing: 0.5px;
    font-size: 1.1rem;
}

.glamour-load-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(255, 106, 149, 0.4);
    background: linear-gradient(45deg, #FF8A7A, #FF5B85);
}

/* Video counter adjustment */
.glamour-video-counter {
    text-align: center;
    margin-top: 2rem;
    color: #6D6D7A;
    font-size: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

/* For carousel alternative */
.glamour-video-carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 2rem;
    padding: 1rem 0;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE/Edge */
}

.glamour-video-carousel::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari */
}

.glamour-video-carousel .glamour-video-card {
    flex: 0 0 calc(33.333% - 1.34rem);
    scroll-snap-align: start;
}

@media (max-width: 992px) {
    .glamour-video-carousel .glamour-video-card {
        flex: 0 0 calc(50% - 1rem);
    }
}

@media (max-width: 768px) {
    .glamour-video-carousel .glamour-video-card {
        flex: 0 0 100%;
    }
}

/* Makover Page End */


/* Service Page  */
/* Service Page End */


/* Gallery Page Start */
.luxe-gallery-section {
    position: relative;
    padding: 5rem 2rem;
    /* background: linear-gradient(135deg, #fcf7ff 0%, #ffffff 100%); */
    overflow: hidden;
}

.luxe-gallery-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

/* Decorative elements */
.luxe-gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 200px;
    height: 200px;
    background: hsl(43, 74%, 49%);
    opacity: 0.05;
    border-radius: 50%;
    filter: blur(40px);
}

.luxe-gallery-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: hsla(46, 100%, 69%, 0.82);
    opacity: 0.05;
    border-radius: 50%;
    filter: blur(40px);
}

/* Header styles */
.luxe-gallery-header {
    margin-bottom: 3rem;
}

.luxe-gallery-subtitle {
    font-size: 2.5rem;
    color: hsl(43, 74%, 49%);
    margin-bottom: 0.5rem;
    display: block;
}

.luxe-gallery-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2a1b3d;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, hsl(43, 100%, 30%), hsla(46, 100%, 69%, 0.82));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.luxe-gallery-description {
    font-size: 1.1rem;
    color: #4a4453;
    max-width: 600px;
    margin: 0 auto;
}

/* Gallery grid */
.luxe-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.luxe-gallery-item {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.luxe-gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.luxe-gallery-img-container {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.luxe-gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.luxe-gallery-item:hover .luxe-gallery-img {
    transform: scale(1.1);
}

.luxe-gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.luxe-gallery-item:hover .luxe-gallery-overlay {
    opacity: 1;
}

.luxe-gallery-content h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.luxe-gallery-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.luxe-gallery-actions {
    display: flex;
    gap: 0.75rem;
    justify-content: flex-end;
}

.luxe-gallery-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.luxe-view-btn {
    background: linear-gradient(45deg, #FF8A7A, #FF5B85);
}

.luxe-share-btn {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.luxe-gallery-btn:hover {
    transform: translateY(-5px) rotate(5deg);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

/* Lightbox modal */
.luxe-lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.luxe-lightbox-modal.active {
    opacity: 1;
    visibility: visible;
}

.luxe-lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.luxe-lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 1001;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
}

.luxe-lightbox-close:hover {
    color: hsl(43, 74%, 49%);
    background: rgba(0, 0, 0, 0.7);
}

.luxe-lightbox-img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 10px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.luxe-lightbox-caption {
    color: white;
    text-align: center;
    margin-top: 1rem;
    font-size: 1.2rem;
}

.luxe-lightbox-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 2rem;
}

.luxe-lightbox-prev,
.luxe-lightbox-next {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.luxe-lightbox-prev:hover,
.luxe-lightbox-next:hover {
    background: linear-gradient(135deg, hsl(43, 74%, 49%), hsla(46, 100%, 69%, 0.82));
    transform: scale(1.1);
}

/* Responsive design */
@media (max-width: 992px) {
    .luxe-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .luxe-gallery-section {
        padding: 1.5rem 1.5rem;
    }
    
    .luxe-gallery-title {
        font-size: 2rem;
    }
    
    .luxe-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .luxe-gallery-filter {
        gap: 0.5rem;
    }
    
    .luxe-filter-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .luxe-gallery-img-container {
        height: 250px;
    }
    
    .luxe-gallery-overlay {
        padding: 1.5rem;
    }
    
    .luxe-gallery-content h3 {
        font-size: 1.3rem;
    }
}

/* Enhanced CTA Section Styles */
.luxe-gallery-cta {
    position: relative;
    background: linear-gradient(to bottom, #faf5ff, #ffffff);
    padding: 3.5rem 2.5rem;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    overflow: hidden;
    margin-top: 4rem;
}

.luxe-cta-container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
}

.luxe-cta-content {
    flex: 1;
}

.luxe-cta-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, hsl(43, 100%, 30%), hsla(46, 100%, 69%, 0.82));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.luxe-cta-text {
    font-size: 1.1rem;
    color: #4a4453;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 500px;
}

.luxe-cta-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.luxe-cta-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.luxe-feature-icon {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, hsl(43, 74%, 49%), hsla(46, 100%, 69%, 0.82));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
}

.luxe-cta-feature span {
    font-weight: 600;
    color: #2a1b3d;
    font-size: 0.95rem;
}

.luxe-cta-action {
    text-align: center;
    flex-shrink: 0;
}

.luxe-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.2rem 2.5rem;
    background: linear-gradient(135deg, hsl(43, 74%, 49%), hsla(46, 100%, 69%, 0.82));
    color: white;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 25px rgba(124, 92, 252, 0.3);
    position: relative;
    overflow: hidden;
}

.luxe-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: all 0.6s ease;
}

.luxe-cta-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(124, 92, 252, 0.4);
}

.luxe-cta-btn:hover::before {
    left: 100%;
}

.luxe-cta-btn i {
    transition: transform 0.3s ease;
}

.luxe-cta-btn:hover i {
    transform: translateX(5px);
}

.luxe-cta-note {
    margin-top: 1rem;
    color: #4a4453;
    font-size: 0.95rem;
}

.luxe-cta-note strong {
    color: hsl(43, 74%, 49%);
}

/* Decorative Elements */
.luxe-cta-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.luxe-cta-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.15;
}

.luxe-orb-1 {
    width: 200px;
    height: 200px;
    background: hsl(43, 74%, 49%);
    top: -50px;
    right: -50px;
    animation: luxe-float 8s infinite ease-in-out;
}

.luxe-orb-2 {
    width: 150px;
    height: 150px;
    background: hsla(46, 100%, 69%, 0.82);
    bottom: -30px;
    left: -30px;
    animation: luxe-float 10s infinite ease-in-out reverse;
}

.luxe-cta-sparkle {
    position: absolute;
    width: 15px;
    height: 15px;
    background: white;
    border-radius: 50%;
    opacity: 0.6;
    animation: luxe-sparkle 4s infinite ease-in-out;
}

.luxe-sparkle-1 {
    top: 30%;
    left: 20%;
    animation-delay: 0.5s;
}

.luxe-sparkle-2 {
    top: 60%;
    right: 25%;
    animation-delay: 1.5s;
}

.luxe-sparkle-3 {
    bottom: 20%;
    left: 40%;
    animation-delay: 2.5s;
}

@keyframes luxe-float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(10px, 10px) scale(1.05);
    }
}

@keyframes luxe-sparkle {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.3);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .luxe-cta-container {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .luxe-cta-features {
        justify-content: center;
    }
    
    .luxe-cta-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .luxe-gallery-cta {
        padding: 2.5rem 1.5rem;
    }
    
    .luxe-cta-features {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .luxe-cta-title {
        font-size: 1.6rem;
    }
    
    .luxe-cta-text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .luxe-cta-btn {
        padding: 1rem 2rem;
        font-size: 0.95rem;
    }
    
    .luxe-cta-title {
        font-size: 1.5rem;
    }
    
    .luxe-cta-note {
        font-size: 0.9rem;
    }
}

/* Gallery Page End */



/* Makeup Training Courses Section */
.courses-section {
    padding: 60px 20px;
    background: #FDF9F2;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.courses-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(210, 158, 255, 0.3), transparent);
}

/* Floating decorations like service section */
.courses-section .floating-decoration {
    position: absolute;
    border-radius: 50%;
    filter: blur(75px);
    animation: float 6s ease-in-out infinite;
    z-index: 1;
}

.courses-section .floating-decoration:nth-child(1) {
    top: 10%;
    left: 5%;
    width: 20rem;
    height: 20rem;
    background: hsla(210, 158, 255, 0.1);
}

.courses-section .floating-decoration:nth-child(2) {
    bottom: 10%;
    right: 5%;
    width: 18rem;
    height: 18rem;
    background: hsla(166, 124, 255, 0.1);
    animation-delay: 1s;
}

.courses-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.courses-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Updated course card to match service section styling */
.course-card {
    background: linear-gradient(145deg, hsl(45, 80%, 95%) 0%, hsl(45, 45%, 98%) 100%);
    backdrop-filter: blur(8px);
    border: none;
    border-radius: 1rem;
    box-shadow: 0 0px 15px hsla(0, 0%, 0%, 0.228);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.course-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #667eea, #764ba2);
    opacity: 0;
    transition: opacity 0.7s ease;
    border-radius: 1rem;
    z-index: 1;
}

.course-card:hover {
    transform: scale(1.05) translateY(-8px);
    box-shadow: 0 10px 25px hsla(210, 158, 255, 0.2);
}

.course-card:hover::before {
    opacity: 0.1;
}

.course-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(45deg, #FF9A8B 0%, #FF6B95 50%, #FF8E53 100%);
    color: white;
    padding: 6px 9px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    z-index: 2;
    letter-spacing: 0.5px;
}

.course-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

.course-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: hsl(220, 25%, 15%);
    margin-bottom: 12px;
    line-height: 1.3;
    transition: color 0.5s ease;
}

.course-card:hover .course-title {
    color: #764ba2;
}

.course-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.course-duration,
.course-level {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: hsl(40, 15%, 35%);
    padding: 5px 10px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
}

.course-duration i,
.course-level i {
    font-size: 0.8rem;
    color: #764ba2;
}

.course-description {
    color: hsl(40, 15%, 35%);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
    min-height: 40px;
}

.course-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.6);
    padding: 15px;
    border-radius: 12px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: hsl(220, 25%, 15%);
}

.feature i {
    color: #28a745;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.feature span {
    flex: 1;
}

.course-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    margin-top: auto;
    gap: 0px; /* Reduced from 15px */
}

.course-price {
    display: flex;
    align-items: baseline;
    gap: 8px; /* Reduced from 10px */
    flex-wrap: nowrap;
    white-space: nowrap;
}

.current-price {
    font-size: 1rem;
    font-weight: 700;
    color: hsl(220, 25%, 15%);
    white-space: nowrap;
}

.original-price {
    font-size: 0.95rem;
    color: #999;
    text-decoration: line-through;
    white-space: nowrap;
}

.course-students {
    display: flex;
    align-items: center;
    gap: 6px;
    color: hsl(40, 15%, 35%);
    font-size: 0.85rem;
    padding: 5px 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    white-space: nowrap;
    flex-shrink: 0;
}

.course-students i {
    color: #764ba2;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.course-students span {
    white-space: nowrap;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .courses-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        max-width: 900px;
    }
    
    .course-footer {
        gap: 8px; /* Reduced for tablet */
    }
}

@media (max-width: 768px) {
    .courses-section {
        padding: 50px 15px;
    }
    
    .courses-container {
        grid-template-columns: 1fr;
        max-width: 450px;
        gap: 25px;
    }
    
    .course-content {
        padding: 22px;
    }
    
    .course-title {
        font-size: 1.4rem;
    }
    
    .course-description {
        font-size: 0.95rem;
    }
    
    .course-meta {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .course-footer {
        flex-direction: row;
        align-items: center;
        gap: 8px; /* Reduced for mobile */
        flex-wrap: nowrap;
    }
    
    .course-price {
        flex: 1;
        justify-content: flex-start;
        min-width: 0;
        overflow: hidden;
        gap: 6px; /* Reduced for mobile */
    }
    
    .course-students {
        flex-shrink: 0;
        padding: 5px 10px; /* Slightly reduced padding */
    }
}

@media (max-width: 480px) {
    .courses-subtitle {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    .course-meta {
        flex-direction: row;
        gap: 8px;
    }
    
    .course-footer {
        flex-direction: row;
        align-items: center;
        gap: 6px; /* Further reduced for small mobile */
        padding-top: 12px;
        flex-wrap: nowrap;
    }
    
    .course-price {
        width: auto;
        flex: 1;
        min-width: 0;
        overflow: hidden;
        gap: 5px; /* Minimal gap for small screens */
    }
    
    .current-price {
        font-size: 1.2rem;
    }
    
    .original-price {
        font-size: 0.85rem;
    }
    
    .course-students {
        padding: 4px 8px; /* Reduced padding */
        font-size: 0.8rem;
        flex-shrink: 0;
        gap: 4px; /* Reduced icon-text gap */
    }
    
    .feature span {
        font-size: 0.8rem;
    }
}

/* Animation for course cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.course-card {
    animation: fadeInUp 0.4s ease forwards;
}

/* Add slide-up animation like service section */
.slide-up {
    opacity: 0;
    transform: translateY(30px);
    animation: slide-up 0.8s ease forwards;
}

/* Import the float animation from service section */
@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

@keyframes slide-up {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}





.founder-img{
    position: relative;
    left: 65px;
}
@media(max-width:1024px){
    .founder-img{
    position: relative;
    left:0px;
}
}
@media(max-width:767px){
    .founder-img{
    position: relative;
    left:0px;
}
}


/* ===============================
   Upcoming Team Card Styling
================================ */

/* Slight blur + muted look */
.upcoming-card {
  position: relative;
  opacity: 0.85;
}

/* Image blur */
.upcoming-img {
  filter: grayscale(100%) blur(1px);
}

/* Badge */
.upcoming-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: linear-gradient(135deg, #f3dca2, #b38b2e);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 20px;
  z-index: 3;
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
}

/* Text */
.upcoming-text {
  font-size: 0.8rem;
  color: #fdf9f2;
  opacity: 0.9;
  margin-top: 4px;
}

/* Prevent hover lift for upcoming */
.upcoming-card:hover {
  transform: none !important;
}
