* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
}

@font-face {
  font-family: 'Quentin';
  src: url('Quentin.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

/* --- Navbar Styles --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px 80px;
    background-color: #fff;
    height: 90px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    position: relative; /* Important for relative positioning later */
    z-index: 1000; /* Taaki hero ke upar rahe */
}

.logo img {
    height: 120px;
    margin-top: 5px; /* Logo size adjust karein */
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: #000;
    transition: 0.3s;
}



.mobile-menu{
    display: none;
}


.nav-links{
    font-family: "Roboto";
}

/* Nav Links Base Style */
.nav-links ul {
    list-style: none;
    display: flex;
    gap: 25px;
    padding: 0;
    margin: 0;
}
.nav-links i{
    color: #c49a6c;
}


.nav-links ul li {
    position: relative; /* Dropdown positioning ke liye zaroori hai */
}

/* --- Dropdown Specific CSS --- */
/* 1. Menu ko shuru mein hide karo aur visibility zero rakho */
.dropdown-menu {
    display: none !important; /* Forcefully hide */
    position: absolute;
    top: 40px;
    left: 0;
    background-color: #fff;
    min-width: 200px;
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
    list-style: none !important; /* Dots hatane ke liye */
    padding: 10px 0 !important;
    z-index: 9999;
    margin:0px;
}

/* 2. Jab mouse 'li' par jaye, tabhi dikhao */
.dropdown:hover .dropdown-menu {
    display: block !important; /* Show only on hover */
}

/* 3. Dropdown ke andar ke links ki styling */
.dropdown-menu li {
    display: block !important;
    width: 100%;
    margin: 0 !important;
}

.dropdown-menu li a {
    padding: 10px 20px !important;
    color: #333 !important;
    display: block !important;
    font-size: 14px;
    text-decoration: none;
}

.dropdown-menu li a:hover {
    background-color: #f9f4f0 !important;
    color: #c49a6c !important;
}

.nav-links ul li a {
    text-decoration: none;
    color: #333;
    font-size: 13.5px;
    font-weight: 400;
    padding-bottom: 1px; /* Thodi space line ke liye */
    display: inline-block;
}
.nav-links ul .active{
  border-bottom: 0.1px solid #c49a6c;
  
}


.nav-links ul li a::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0); /* Shuru mein width zero rahegi */
    height: 0.1px;
    bottom: 0;
    left: 0;
    background-color: #c49a6c; /* Wohi gold color jo icons ka hai */
    transform-origin: bottom left; /* Left se right fill effect */
    transition: transform 0.5s ease-out; /* Smooth transition */
}

.nav-links ul li a:hover::after {
    transform: scaleX(1); /* Hover par puri width fill hogi */
    transform-origin: bottom lef; /* Right se left animate back effect */
}

.nav-links i {
    font-size: 10px;
    margin-left: 3px;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 40px;
}

.phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 17px;
    font-weight: 500;
    font-family: 'Cormorant Infant';
    color: #333;
}

.phone img{
    height: 25px;
    margin-right:5px;
}
.phone i {
    color: #c49a6c; /* Gold color icon */
}

.book-now {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 40px;
  text-decoration: none;
  background: #ead1b5;
  overflow: hidden;
  letter-spacing: 1px;
}

/* Curtains (background layer) */
.book-now::before,
.book-now::after {
  content: "";
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  background: #000000;
  transition: transform 0.5s ease;
  z-index: 0; /* 🔥 niche */
}

.book-now::before {
  left: 0;
}

.book-now::after {
  right: 0;
}

/* TEXT always top */
.book-now span {
  position: relative;
  z-index: 2;  /* 🔥 sabse upar */
  color: #fff; /* default white (kyuki background black hai) */
  transition: color 0.4s ease;
  font-size: 12px;

}

/* Hover = curtain open */
.book-now:hover::before {
  transform: translateX(-100%);
}

.book-now:hover::after {
  transform: translateX(100%);
}

/* Hover text color change */
.book-now:hover span {
  color: #000;
}
/* --- Hero Section Styles --- */
/* SLIDES */

.hero{
    position: relative;
    width: 100%;
    height: 100vh; /* Adjust as needed */
    overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;

  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.slide.active {
  opacity: 1;
  z-index: 2;
}

.slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    /* Black Film: 0.5 ko 0.7 karke aur dark kar sakte hain */
    background: rgba(0, 0, 0, 0.371); 
    
    z-index: 2; /* Image ke upar */
    pointer-events: none;
}

/* 🔥 ZOOM CONTINUOUS */
.slide.active {
  animation: zoomAnim 6s linear forwards;
}

@keyframes zoomAnim {
  from { transform: scale(1.05); }
  to { transform: scale(1.15); }
}
/* RESET */
.content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    max-width: 900px;
    z-index: 10;
    color: #fff;
}


/* 1. Initial State: Poora content ek saath upar rahega */
.slide .content h6 {
    font-family: 'Quentin', cursive;
    font-size: 72px; /* Optimized size */
    font-weight: 550;
    color: #ead1b5; /* Brand Gold */
    margin-bottom: -25px;
    text-transform: lowercase;
    
    opacity: 0;
    transform: translateY(-80px); /* Upar se niche slide */
    transition: all 1.5s cubic-bezier(0.19, 1, 0.22, 1);
}

/* "TRENDY NAIL ART" */
.slide .content h1 {
    font-size: 85px; /* Big & Bold as per screenshot */
    font-weight: 500;
    letter-spacing: 10px; /* Luxury spacing */
    line-height: 1.2;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-family: 'Cormorant Infant';
    opacity: 0;
    transform: translateY(-80px); /* Upar se niche slide */
    transition: all 1.5s cubic-bezier(0.19, 1, 0.22, 1);
}

/* Description Text */
.slide .content p {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    
    opacity: 0;
    transform: translateY(-80px); /* Upar se niche slide */
    transition: all 1.5s cubic-bezier(0.19, 1, 0.22, 1);
}



/* 2. Active State: Jab slide change ho, sab ek saath niche aayein */
.slide.active .content h6, 
.slide.active .content h1, 
.slide.active .content p, 
.slide.active .content a {
    opacity: 1;
    transform: translateY(0); /* Sab ek saath zero position par aayenge */
    transition-delay: 0.3s; /* Sirf slide change hone ka thoda sa wait (optional) */
}

/* 3. Reset: Agli slide ke liye turant upar bhejo bina dikhe */
.slide:not(.active) .content h6,
.slide:not(.active) .content h1,
.slide:not(.active) .content p,
.slide:not(.active) .content a {
    transform: translateY(-80px);
    opacity: 0;
    transition: none; 
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 1;
    transition: opacity 1.5s ease-in-out; /* Smooth image fade */
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.book-now-2 {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 20px 50px;
  border: 0.8px solid #ffffff;
  text-decoration: none;
  overflow: hidden;
  background: transparent;
}

/* Curtains (start me hidden) */
.book-now-2::before,
.book-now-2::after {
  content: "";
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  background: #fff;
  z-index: 0;
  transition: transform 0.5s ease;
}

/* Left curtain - start bahar */
.book-now-2::before {
  left: 0;
  transform: translateX(-100%);
}

/* Right curtain - start bahar */
.book-now-2::after {
  right: 0;
  transform: translateX(100%);
}

/* Text */
.book-now-2 span {
  position: relative;
  z-index: 2;
  color: #ffffff;
  font-size: 12px;
}

/* Hover = curtains CLOSE (andar aaye) */
.book-now-2:hover::before {
  transform: translateX(0);
}

.book-now-2:hover::after {
  transform: translateX(0);
}


/* --- Left Social Links (Vertical) --- */
.hero-social {
    position: absolute;
    left: 80px;
    top: 70%;
    transform: translateY(-50%) rotate(-90deg); /* Text ko vertical karne ke liye */
    transform-origin: left bottom;
    display: flex;
    gap: 40px;
    z-index: 20;
}

.hero-social a {
    color: #ffffff;
    text-decoration: none;
    font-size: 12px;
    font-family: 'Cormorant Infant';
    letter-spacing: 2px;
    text-transform: capitalize;
    transition: opacity 0.3s;
}

.hero-social a:hover {
    opacity: 1;
}

/* --- Right Side Dots --- */
.hero-dots {
    position: absolute;
    right: 40px;
    top: 60%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 50px;
    z-index: 20;
}

.dot {
    width: 5px;
    height: 5px;
    background-color: rgb(255, 255, 255);
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

/* Active Dot with Outer Circle Border */
.dot.active {
    background-color: #c49a6c;
    transform: scale(1.2);
}

.dot.active::after {
    content: '';
    position: absolute;
    top: -6px;
    left: -6px;
    right: -6px;
    bottom: -6px;
    
    border: 1px solid #c49a6c; /* Brand Gold Border */
    border-radius: 50%;
}








.exclusive-section {
    padding: 80px 0;
    padding-bottom: 0;
    background-color: #fff;
    position: relative;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
}

.container {
    max-width: 1450px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
}

/* Background Watermark Text "nails" */
.watermark-text {
    position: absolute;
    top: 40%;
    left: 57%;
    transform: translate(-100%, -50%);
    font-family: 'Quentin', cursive;
    font-size: 350px;
    color: #f9f4f0; /* Very light beige/pinkish */
    z-index: 1;
    font-style: italic;
    white-space: nowrap;
    pointer-events: none;
}

.exclusive-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2; /* Text aur images watermark ke upar rahenge */
    gap: 60px;
}

/* Left Text Styling */
.text-side {
    flex: 1;
}

.section-title {
    font-family: 'Cormorant Infant';
    font-size: 35px;
    color: #000;
    margin-bottom: 30px;
    font-weight: 400;
     text-align: left;
}

.content-blocks {
    text-align: left;
}

.content-blocks p {
    font-size: 13px;
    
    line-height: 1.8;
    color: #444;
    margin-bottom: 25px;
    font-weight: 400;
}

/* Right Image Styling */
.image-side {
    flex: 1;
    display: flex;
    gap: 30px;
}

.img-wrapper {
    flex: 1;
}

.img-wrapper img {
    width: 100%;
    height: 450px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 5px; /* Exact rounded corners from screenshot */
    }


.services-icons-section {
    padding: 50px 0;
    background-color: #ffffff;
    text-align: center;
}

.services-grid {
    display: flex;
    justify-content: space-around;
    align-items: flex-end; /* Taaki icons aur text bottom-aligned rahein */
    flex-wrap: wrap;
    gap: 30px;
}

.service-item {
    flex: 1;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Icon Wrapper with Pink Circle Background */
.icon-wrapper {
    position: relative;
    margin-bottom: 25px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Soft Pink Circle behind the icon */
.icon-wrapper::before {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    background-color: #fdf1f1; /* Light pink/peach color */
    border-radius: 50%;
    z-index: 1;
    left: 10px; /* Thoda side mein offset jaisa screenshot mein hai */
    top: 15px;
}

.icon-wrapper img {
    position: relative;
    z-index: 2;
    height: 120px; /* Original size control */
    width: auto;
    object-fit: contain;
}

/* Typography for Service Names */
.service-item h3 {
    font-family: 'Cormorant Infant';
    font-size: 22px;
    color: #000;
    font-weight: 400;
  
}


.social-strip {
    background-color: #000; /* Pure Black Background */
    padding: 60px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.social-container {
    display: flex;
    gap: 80px; /* Icons ke beech ka gap */
    align-items: center;
}

.social-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #fff;
    gap: 15px;
    transition: opacity 0.3s ease;
}

.social-link:hover {
    opacity: 0.8;
}

/* Icon Box (Square with border) */
.social-icon-box {
    width: 45px;
    height: 45px; /* White thin border */
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px; /* Slight round corners */
}

.social-icon-box i {
    font-size: 45px;
}

/* Text Styling */
.social-link span {
    font-family: 'Playfair Display', serif; /* Serif font as per screenshot */
    font-size: 28px;
    font-weight: 400;
    letter-spacing: 1px;
}

.subscription-section {
    background-color: #f7e8dc; /* Light cream background from screenshot */
    padding: 60px 0;
    text-align: center;
    font-family: 'Playfair Display', serif;
}

.form-container {
    max-width: 550px;
    margin: 0 auto;
    padding: 0 20px;
}



.form-title {
    font-size: 32px;
    font-weight: 500;
    letter-spacing: 2px;
    line-height: 1.4;
    color: #000;
    margin-bottom: 60px;
    font-family: 'Cormorant Infant';
    text-transform: uppercase;
}

.subscribe-form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Input Rows and Groups */
.input-row {
    display: flex;
    width: 100%;
    gap: 40px;
    margin-bottom: 40px;
}

.input-group {
    flex: 1;
    position: relative;
}

.input-group.full-width {
    width: 100%;
    margin-bottom: 50px;
}

/* Bottom Border Only Inputs */
.subscribe-form input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #000; /* Minimal black bottom border */
    padding: 10px 0;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #444;
    outline: none;
}

.subscribe-form input::placeholder {
    color: #888;
    font-weight: 300;
}

/* Submit Button Styling */
.submit-btn {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 18px 80px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-transform: capitalize;
}

.submit-btn:hover {
    background-color: #c49a6c; /* Golden hover from brand palette */
}




/* --- Main Section Setup (Original Background is STICKY) --- */
.parallax-section {
    position: relative;
    width: 100%;
    min-height: 110vh; /* Height badhayi hai taaki nesting effect visible ho */
    background-image: url('https://tenbeautybar.in/wp-content/uploads/2021/12/1.png'); /* Video image background */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    
    /* 🔥 Yeh background fixed rahega jab tak video button na aaye */
    background-attachment: fixed; 
    
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Price block upar se start ho */
    align-items: center;
    padding: 0;
    overflow: visible; /* Nesting ke liye overflow safe rakhein */
}

/* Black Film Overlay for the Main Section */
.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

/* --- 🔥 Nested Price Banner (Image SCROLLS with content) --- */
.price-container {
    position: relative;
    z-index: 2; /* Main overlay ke upar */
    width: 100%;
    height: 600px;
    padding: 50px 50px;
    background-image: url('1775394616688.png'); /* Video section se pehle content start karne ke liye space */
}

.price-inner-banner {
    position: relative;
    width: 100%;
    padding: 60px 10px; /* Text ke charo taraf breathing space */
    text-align: center;
    
    background: #ceb39779;
}

/* --- Typography for Price List --- */
.price-inner-banner .script-text {
    font-family: 'Quentin', cursive;
    font-weight: 100;
    font-style: italic;
    font-size: 34px;
    color: #000;
    margin-bottom: 10px;
    padding: 20px 4px;
}

.price-inner-banner .main-title {
    font-family: 'Cormorant Infant';
    font-size: 42px;
    color: #000;
    padding: 25px;
    margin-bottom: 40px;
    background: #ceb39779;
}

.price-inner-banner .service-btn {
    display: inline-block;
    background-color: #d8c3a5;
    color: #000;
    padding: 15px 35px;
    text-decoration: none;font-size: 13px;
    letter-spacing: 1px;
}

/* --- Video Content (Stays Relative to Fixed Background) --- */
.video-container {
    position: relative;
    z-index: 2;
    margin-top: 0px; /* Nested Price Banner ke niche gap */
    width: 100%;
    height: 75vh; /* Video content area height */
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-play-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.play-circle {
    width: 150px;
    height: 150px;
    border: 1px solid #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
}

.play-circle:hover{
    background: rgba(0, 0, 0, 0.585);
    border: none;
}


.play-circle i {
    color: #fff;
    font-size: 20px;
}

.video-label {
    font-family: 'Cormorant Infant';
    font-style: italic;
    color: #fff;
    font-size: 20px;
}






.testimonial-section {
    padding: 100px 0;
    background-color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.testimonial-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.testimonial-watermark {
    font-family: 'Quentin', cursive;
    font-style: italic;
    color: #d7bd98;
    font-size: 30px;
    display: block;
}

.testimonial-title {
    font-family: 'Cormorant Infant';
    font-size: 50px;
    font-weight: 500;
    margin-bottom: 50px;
    color: #000;
}

.quote-icon img {
    width: 50px;
    margin-bottom: 30px;
}

.testimonial-text {
    font-family: 'Cormorant Infant';
    font-style: italic;
    font-size: 28px;
    color: #333;
    margin-bottom: 30px;
}

.divider {
    width: 150px;
    height: 0.5px;
    background: #ccc;
    margin: 0 auto 20px;
}

.client-name {
    font-family: 'Cormorant Infant';
    font-weight: 400;
    letter-spacing: 3px;
    font-size: 14px;
    color: #000;
}

/* Custom Navigation Style */
.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 30px; /* Gap between buttons as requested */
    margin-top: 50px;
}

.nav-btn {
    width: 80px;
    height: 80px;
    border: 1px solid #ddd;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-btn i {
    font-size: 20px;
    color: #999;
}


.prev-btn{
    
    transform: rotate(180);
}

.nav-btn:hover {
    border-color: #000;
}

.nav-btn:hover i {
    color: #000;
}






.gel-revolution-section {
    padding: 100px 0;
    background-color: #f8ebe1; /* Exact light cream/beige background */
    position: relative;
    overflow: hidden;
}

.container-full {
    max-width: 1450px;
    margin: 0 auto;
    padding: 0 40px;
}

.revolution-grid {
    display: flex;
    justify-content: space-between;
    align-items: center; /* V-center the poster and text */
    gap: px; /* Precise gap between sides */
}

/* Left Poster Styling */
.poster-side {
   /* slightly wider allocation for poster */
    display: flex;
    justify-content: left;
}

.poster-frame {
    /* To mimic the white border effect from screenshot */
    border: 1px solid #ddd;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    line-height: 0; /* remove image gap */
    background-color: #fff;
    padding: 0px; /* no padding needed inside frame */
    border-radius: 10px;
}

.poster-frame img {
    width: 100%;
    height: auto;
    max-width: 500px; /* control poster size exactly */
    display: block;
    background: blue;
    border-radius: 10px;
}

/* Right Text Styling */
.text-side {
    flex: 1;
    text-align: center; /* All text centered as per design */
}

.text-wrapper {
    max-width: 660px; /* control text block width */
    margin: 0 auto;
}

/* Script Subtitle Font */
.script-subtitle {
    font-family: 'Quentin', cursive; /* Or use a dedicated script font link */
    font-style: italic;
    font-size: 28px;
    color: #dab083; /* Gold color */

}

/* Main Title Serif Font */
.main-title {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-size: 36px;
    line-height: 1.4;
    color: #000;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 40px;
}

/* Description Text Font */
.description-text {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    line-height: 1.8;
    color: #444;
    font-weight: 300;
}









.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #d8c3a5; 
    border-radius: 50%;
    z-index: 9999; /* Isse button sabse upar rahega */
    display: flex; /* Content center karne ke liye */
    justify-content: center;
    align-items: center;
    border: none;
    cursor: pointer;
    
    /* Initially hidden */
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

/* Jab JS se 'show' class aaye */
.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top i {
    color: #000;
    font-size: 20px;
}

.back-to-top:hover {
    background-color: #c49a6c;
}



/* Footer Container */
.main-footer {
    background-color: #f7e8dc;  /* Light beige/cream */
    padding-top: 80px;
    text-align: center;
    position: relative;
}

/* Logo */
.footer-logo img {
    max-width: 180px;
    margin-bottom: 40px;
}

/* Navigation Links */
.footer-nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    padding: 0;
    margin-bottom: 40px;
}

.footer-nav a {
    text-decoration: none;
    color: #000;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    transition: color 0.3s;
}

.footer-nav .sep {
    color: #000;
    font-size: 14px;
    font-weight: bold;
}

/* Social Icons (Black circles) */
.footer-socials {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 60px;
}

.footer-socials a {
    width: 35px;
    height: 35px;
    background-color: #000;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 14px;
    transition: transform 0.3s;
}

.footer-socials a:hover {
    transform: translateY(-3px);
}

/* Bottom Black Strip */
.footer-bottom {
    background-color: #000;
    padding: 25px 0;
    position: relative;
}

.footer-bottom p {
    color: #fff;
    font-size: 13px;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
}

.footer-bottom strong { color: #c49a6c; } /* Brand Gold Color */
.footer-bottom span { color: #c49a6c; }



.spa-experience-section {
    padding-bottom: 60px;
    
    background-color: #f8ebe1; /* Light beige/cream background */
}

.spa-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.spa-text-side {
    flex: 1.5;
    text-align: center;
}

/* Script Font Header */
.experience-script {
    font-family: 'Quentin', cursive;
    font-style: italic;
    font-size: 30px;
    color: #dab58d; /* Muted gold */
    display: block;
    margin-bottom: 0px;
    text-transform: lowercase;
}

/* Main Title */
.spa-title {
    font-family: 'Cormorant Infant';
    font-size: 45px;
    color: #000;
    line-height: 1.3;
    margin-bottom: 40px;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Checkmark List Styling */
.check-list {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.check-list li {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #444;
    margin-bottom: 4px;
    margin-left: 80px;
    display: flex;
    font-weight: 500;
}

.check-list li i {
    font-size: 18px;
    margin-right:5px;
    color: #000; /* Black checkmarks as per screenshot */
}

/* Must Try Section */

.must-try-box {
    text-align: left;
    margin-left: 80px;
}
.must-try-box h5 {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.must-try-box p {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    color: #555;
    margin-bottom: 2px;
    font-weight: 300;
}

/* Image Side */
.spa-image-side {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.product-collage img {
    max-width: 100%;
    height: 620px;
    /* Box shadow to give depth to the product images */
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.05));
}


























/* Responsive for Mobile */
@media (max-width: 991px) {







    .gel-revolution-section {
        padding: 60px 2px;
        text-align: center;
    }

    .revolution-grid {
        flex-direction: column;
        gap: 30px;
    }

    /* POSTER TOP */
    .poster-side {
        width: 100%;
        justify-content: center;
    }

    .poster-frame img {
        max-width: 100%;
        height: auto;
        border-radius: 12px;
    }

    /* TEXT CENTER */
    .text-side {
        width: 100%;
        text-align: center;
    }

    .script-subtitle {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .main-title {
        font-size: 28px;
        line-height: 1.3;
        letter-spacing: 1px;
        margin-bottom: 20px;
    }

    .description-text {
        font-size: 14px;
        line-height: 1.6;
        padding: 0 10px;
    }


    .navbar {
        padding: 15px 20px;
        justify-content: space-between;
        align-items: center;
        height: auto;
        gap: 15px;
    }

    .logo img {
        height: 85px;
    }

    
    /* HAMBURGER */
    .hamburger {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        z-index: 9999;
    }

    .hamburger span {
        width: 35px;
        height: 3px;
        background: #000;
        transition: 0.4s;
    }

    /* FULL SCREEN MENU */
    .mobile-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: #fff;

        display: flex;
        justify-content: center;
        align-items: center;

        transform: translateY(-100%);
        transition: 0.5s ease;

        z-index: 999;
    }

    .mobile-menu ul {
        list-style: none;
        text-align: center;
    }

    .mobile-menu ul li {
        margin: 20px 0;
    }

    .mobile-menu ul li a {
        text-decoration: none;
        font-size: 24px;
        font-family: 'Cormorant Infant';
        color: #000;
        letter-spacing: 2px;
    }

    /* ACTIVE MENU */
    .mobile-menu.active {
        transform: translateY(0);
    }

    /* HAMBURGER ANIMATION */
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translateY(8px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translateY(-8px);
    }

    /* HIDE DESKTOP NAV */
    .nav-links,
    .contact-info {
        display: none;

}

    .nav-links ul {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .contact-info {
        flex-direction: column;
        gap: 10px;
    }

    .phone {
        font-size: 14px;
    }

    .book-now {
        padding: 10px 20px;
    }

    .hero {
        height: 80vh;
    }
    .slide .content h6{
        margin-bottom: 5px;
    }

    .content h6 {
        font-size: 32px !important;
        margin-bottom: 0;
    }

    .content h1 {
        font-size: 32px !important;
        letter-spacing: 3px;
    }

    .content p {
        font-size: 13px;
    }

    .book-now-2 {
        padding: 12px 25px;
    }

    /* Hide side elements */
    .hero-social {
        display: none;
    }

    .hero-dots {
        top: 70%;
        right: 15px;
        gap: 20px;
    }



    .exclusive-content {
        flex-direction: column;
        gap: 30px;
    }

    .content-blocks p{
        font-size: 15px;
    }

    .watermark-text{
        top: 13%;
        font-size: 95px;
        left: 120%;
        opacity: 0.7;
    }

    .image-side {
        flex-direction: row;
        gap: 15px;
    }

    .img-wrapper img {
        height: 270px;
    }

    .section-title {
        text-align: center;
    }

    h2 {
        font-size: 26px !important;
    }

    .spa-title {
        font-size: 28px;
    }


    .services-icons-section{
        margin-top: 100px;
    }

    .testimonial-title {
        font-size: 28px;
    }

    .testimonial-text {
        font-size: 18px;
    }

     .parallax-section {
        background-attachment: scroll;
    }

    .spa-experience-section {
        padding: 60px 0px;
        text-align: center;
    }

    .spa-grid {
        flex-direction: column-reverse; /* 🔥 image upar, text niche */
        gap: 30px;
    }

    /* IMAGE TOP */
    .spa-image-side {
        width: 100%;
        justify-content: center;
    }

    .product-collage img {
        width: 100%;
        height: auto;
        max-height: 400px;
        object-fit: cover;
        border-radius: 12px;
    }

    /* TEXT CENTER */
    .spa-text-side {
        width: 100%;
        text-align: center;
    }

    .spa-title {
        font-size: 28px;
        line-height: 1.3;
        margin-bottom: 20px;
    }

    .experience-script {
        font-size: 22px;
        margin-bottom: 10px;
    }

    /* CHECK LIST CENTER */
    .check-list {
        padding: 0;
    }

    .check-list li {
        justify-content: center;
        margin-left: 0;
        font-size: 13px;
    }

    /* MUST TRY CENTER */
    .must-try-box {
        margin-left: 0;
        text-align: center;
    }

    .must-try-box h5 {
        font-size: 14px;
    }

    .must-try-box p {
        font-size: 13px;
    }

    .social-strip {
        padding: 40px 20px;
    }

    .social-container {
        flex-direction: column;
        align-items: flex-start; /* 🔥 left aligned */
        gap: 25px;
    }

    .social-link {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    /* ICON BOX SMALL */
    .social-icon-box {
        width: 40px;
        height: 40px;
    }

    .social-icon-box i {
        font-size: 20px;
    }

    /* TEXT */
    .social-link span {
        font-size: 18px;
        font-family: 'Cormorant Infant';
    }

    .price-container {
        height: auto;
        padding: 40px 20px;
    }
     .footer-nav ul {
        flex-wrap: wrap;
        gap: 10px;
    }

    .footer-logo img {
        max-width: 120px;
    }
}



