:root{
   --primary-gold: #D4AF37;
            --secondary-gold: #F5E8C7;
            --beige: #F8F1E9;
            --white: #FFFFFF;
            --text-dark: #2C2C2C;
            --text-light: #666666;
            --shadow-light: 0 20px 60px rgba(0,0,0,0.1);
            --shadow-hover: 0 30px 80px rgba(0,0,0,0.15);}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}



/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h2 {
    color: #e91e63;
    font-size: 1.8rem;
    font-weight: 700;
    margin-top: 5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #e91e63;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: #e91e63;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

.book-btn-2 .btn-primary-2 {
    padding: 12px 24px;
    background: linear-gradient(45deg, #e91e63, #f06292);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
          
}

.book-btn-2 .btn-primary-2:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.4);
}

.icon-btn {
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.179);
  border-radius: 50px;
  color: rgb(255, 0, 149);
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.2);
  transition: 0.3s;
}

.login-btn:hover {
  background: rgba(255,255,255,0.2);
}



        /* Hero Section */
        .hero {
            height: 100vh;
            background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
                        url('1773731274564.jpeg') center/cover no-repeat;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 10%;
            position: relative;
            overflow: hidden;
        }

        .hero-content {
            max-width: 500px;
            margin-top: 90px;
            color: white;
            z-index: 2;
        }

        .hero h1 {
            font-size: 3.9rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .hero p {
            font-size: 1rem;
            margin-bottom: 2.5rem;
            opacity: 0.95;
            font-weight: 300;
        }

        .cta-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .btn {
            padding: 1rem 2.5rem;
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s ease;
            cursor: pointer;
            animation: fadeInUp 1s ease-out 0.4s both;
        }

        .btn-primary {
            background: linear-gradient(45deg, #ff6b9d, #c44569);
            color: white;
            box-shadow: 0 10px 30px rgba(255, 107, 157, 0.4);
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            position: relative;
            overflow: hidden;
        }
        .btn-primary::before{
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition:left 0.5s;
        }            

        .btn-primary:hover::before {
            left: 100%;
            
        }

        .btn-secondary {
            background: transparent;
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.8);
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: white;
            transform: translateY(-3px);
        }






        /* Floating Review Bubble */

.review-bubble{
position:absolute;
right:150px;
bottom:100px;
z-index:5;
}

.review-avatars{
display:flex;
align-items:center;
background:white;
padding:6px 10px;
border-radius:50px;
box-shadow:0 10px 30px rgba(0,0,0,0.2);
}

.review-avatars img{
width:35px;
height:35px;
border-radius:50%;
border:2px solid white;
margin-left:-10px;
object-fit:cover;
}

.review-avatars img:first-child{
margin-left:0;
}

.review-plus{
width:35px;
height:35px;
border-radius:50%;
background:#ff6b9d;
color:white;
display:flex;
align-items:center;
justify-content:center;
font-weight:bold;
margin-left:5px;
cursor:pointer;
}

/* Review Popup */

.review-popup{
position:absolute;
bottom:60px;
right:0;
background:white;
padding:15px;
border-radius:12px;
width:220px;
box-shadow:0 10px 40px rgba(0,0,0,0.2);
display:none;
animation:fadeUp .4s ease;
}

.review-popup p{
font-size:14px;
margin:5px 0;
}

@keyframes fadeUp{
from{
opacity:0;
transform:translateY(10px);
}
to{
opacity:1;
transform:translateY(0);
}
}





.services {
  padding: 20px;
}

.services {
  display: none;
}
h2{
    font-size: 18px;
    margin-bottom: 15px;
}







/* Grid */
.service-grid {
  display: none;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.service-grid.active {
  display: grid;
}

/* Cards */
.card {
  
  border-radius: 15px;
  text-align: center;
}

.card img {
  width: 100%;
  border-radius: 12px;
}

.card p {
  margin-bottom: 8px;
  font-size: 14px;
}


.trending {
  display: none;
  padding: 20px;
}


.achievements-section {
    padding: 30px 20px;
    text-align: center;
    background-color: #fff;
}

.section-title-3 {
    font-size: 35px;
    font-weight: 600;
    margin-bottom: 50px;
    color: #393939;
}


.achievements-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.achievement-item {
    flex: 1;
    min-width: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.icon-circle {
    width: 100px;
    height: 100px;
    background : linear-gradient(rgba(255, 192, 203, 0.762), rgba(255, 192, 203, 0));/* Light pink background */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    font-size: 30px;
    color: #333;
}

.stat-number {
    font-size: 24px;
    font-weight: 800;
    margin: 5px 0;
    color: #000;
}

.stat-label {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
    max-width: 140px;
}






.single-banner {
  padding: 15px;
}

.single-banner img {
  width: 100%;
  border-radius: 15px;
}

.single-banner {
    display: none;
}






.banner-section {
  padding: 15px;
}

/* SLIDER */
.slider {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.slide {
  display: none;
}

.slide.active {
  display: block;
}

.slide img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 20px;
}

/* PROGRESS LINE */
.progress-bar {
  width: 100%;
  height: 4px;
  background: #eee;
  margin-top: 8px;
  border-radius: 10px;
  overflow: hidden;
}

.progress {
  height: 100%;
  width: 0%;
  background: #ff4d88;
  transition: width 0.5s ease;
}


.banner-section{
    display: none;
}


/* Editorial Services Style */
.premium-services {
    padding: 50px 0;
    background: #fff;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.sub-title {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.8rem;
    color: #e91e63;
    font-weight: 600;
}

.main-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-top: 10px;
    color: #1a1a1a;
}

.editorial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.editorial-item {
    transition: all 0.4s ease;
}

.image-box {
    position: relative;
    height: 450px;
    overflow: hidden;
    margin-bottom: 20px;
}

.image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}



#imageModal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
  z-index: 999;
}

#closeModal {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: white;
  cursor: pointer;
  z-index: 1000; /* 🔥 important */
}

.service-label {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: white;
    padding: 12px 25px;
    font-weight: 600;
    font-size: 1.1rem;
    color: #1a1a1a;
    box-shadow: 10px 10px 0px #e91e63;
}

.service-info p {
    color: #666;
    line-height: 1.8;
    font-size: 0.95rem;
    padding-right: 20px;
    border-left: 2px solid #f0f0f0;
    padding-left: 15px;
}

/* Hover Effect */
.editorial-item:hover .image-box img {
    transform: scale(1.1);
}

.editorial-item:hover .service-label {
    box-shadow: 0px 0px 0px #e91e63;
    background: #e91e63;
    color: white;
    transition: 0.3s ease;
}



        /* About Section */
        .about {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
        }
        .section {
            padding: 100px 0;
            max-width: 1270px;
            margin: 0 auto;
            padding-left: 2rem;
            padding-right: 2rem;
        }
        .section-title {
            font-size: clamp(2rem, 5vw, 2.5rem);
            text-align: center;
            font-weight: 600;
            margin-bottom: 4rem;
            background: linear-gradient(135deg, var(--text-dark), var(--text-light));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: linear-gradient(135deg,  #e91e63);
            border-radius: 2px;
        }


        .about-image {
            height: 500px;
            background: linear-gradient(135deg, var(--secondary-gold), var(--beige));
            border-radius: 20px;
            position: relative;
            overflow: hidden;
        }

        .about-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('1773488413129.jpeg');
            background-size: cover;
        }

        .about-content h2 {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

                .offers-section {
            background: linear-gradient(45deg, #ff6b9d, #eb4071);
            padding: 80px 0;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .section-title-2 {
            text-align: center;
            font-size: 3rem;
            color: #ffffff;
            margin-bottom: 20px;
            font-weight: bold;
        }

        .subtitle {
            text-align: center;
            font-size: 1.2rem;
            color: #ffffff;
            margin-bottom: 50px;
        }

        .offers-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }

        .offer-card {
            background: white;
            border-radius: 20px;
            padding: 40px 30px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .offer-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, #ff6b6b, #feca57, #48dbfb);
        }

        .offer-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(0,0,0,0.15);
        }

        .offer-badge {
            background: #ff6b6b;
            color: white;
            padding: 8px 20px;
            border-radius: 25px;
            font-size: 0.9rem;
            font-weight: bold;
            display: inline-block;
            margin-bottom: 20px;
        }

        .offer-title {
            font-size: 1.8rem;
            color: #333;
            margin-bottom: 15px;
            font-weight: bold;
        }

        .offer-price {
            font-size: 2.5rem;
            color: #ff6b6b;
            font-weight: bold;
            margin-bottom: 10px;
        }

        .original-price {
            text-decoration: line-through;
            color: #999;
            font-size: 1.2rem;
            margin-left: 10px;
        }

        .offer-description {
            color: #666;
            line-height: 1.6;
            margin-bottom: 25px;
        }

        .cta-button {
            background: linear-gradient(45deg, #ff6b6b, #feca57);
            color: white;
            padding: 15px 40px;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .cta-button:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 25px rgba(255,107,107,0.4);
        }

        .limited-time {
            text-align: center;
            margin-top: 40px;
        }

        .timer {
            background: rgba(255,255,255,0.9);
            padding: 20px;
            border-radius: 15px;
            display: inline-block;
            font-size: 1.1rem;
            font-weight: bold;
            color: #333;
        }





.offer-section {
  margin: 15px;
  border-radius: 15px;
  position: relative;
height: 350px;
  background: url('1774165589137.jpeg') center/cover no-repeat;
}

/* Overlay */
.overlay {
  padding: 30px 15px 80px;
  text-align: center;
  color: white;
}



/* BOTTOM BOXES */
.offer-boxes {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

/* CARD */
.offer-card-2 {
  background: linear-gradient(180deg, #8b4513, #5a2d0c);
 
  padding: 15px;
  border-radius: 15px;
  text-align: center;
  width: 90px;
  color: white;
}

.offer-section{
    display: none;
}










        
        .testimonials-section {
            max-width: 1350px;
            margin: 50px auto;
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 60px;
            align-items: center;
        }

        /* Left Column - Static Content */
        .static-content {
            display: flex;
            flex-direction: column;
            gap: 12px;
            width: 480px;
        }

        .section-heading {
            font-size: 37px;
            font-weight: 700;
            background: black;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
        }

        .rating-display {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
            padding: 32px 24px;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(20px);
            border-radius: 24px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .big-rating {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 48px;
            font-weight: 800;
            color: #1f2937;
        }

        .big-star {
            font-size: 52px;
            background: linear-gradient(135deg, #fbbf24, #f59e0b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .review-count {
            font-size: 22px;
            color: #6b7280;
            font-weight: 500;
            margin-bottom: 25px;
        }

        .social-section {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .social-title {
            font-size: 12px;
            font-weight: 700;
            color: #374151;
           margin-bottom: -35px;
        }

        .social-icons {
            display: flex;
            gap: 5px;
            
        }

        .social-icon {
            width: 23px;
            height: 23px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 10px;
            margin-top: 15px;
            color: rgb(255, 255, 255);
            background: rgb(0, 0, 0);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            text-decoration: none;
            
        }
.x{
    color: black;
}
        
        .slider-nav {
            display: flex;
            gap: 12px;
            justify-content: flex-end;
        }

        .nav-btn {
            width: 52px;
            height: 52px;
            border-radius: 50%;
            background: linear-gradient(135deg, #fce7f3, #f3e8ff);
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            color: #be185d;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 8px 24px rgba(190, 24, 93, 0.2);
            backdrop-filter: blur(10px);
        }

        .nav-btn:hover {
            transform: translateY(-2px) scale(1.05);
            box-shadow: 0 16px 32px rgba(190, 24, 93, 0.3);
            background: linear-gradient(135deg, #f9a8d4, #f472b6);
            color: white;
        }





/* Gallery Styles */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px 0;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 350px;
    cursor: pointer;
}


.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(233, 30, 99, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.gallery-overlay {
  pointer-events: none;
}

.gallery-overlay span {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    border: 2px solid white;
    padding: 10px 20px;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

    





        /* Right Column - Testimonial Slider */
        .testimonial-slider {
            position: relative;
            height: 420px;
            overflow: hidden;
            padding: 50px;
            border-radius: 24px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
        }

        .slider-container {
            display: flex;
            height: 100%;
            transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            will-change: transform;
        }

        .testimonial-card {
            flex: 0 0 38.333%;
            padding: 32px 24px;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-radius: 24px;
            margin: 0 12px;
            display: flex;
            flex-direction: column;
            gap: 5px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.055);
            border: 1px solid rgba(255, 255, 255, 0.3);
            transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            opacity: 0.85;
            transform: scale(0.92);
        }

        .testimonial-card.active {
            opacity: 1;
            transform: scale(1);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.068);
        }

        .testimonial-card .profile-img {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid #f8fafc;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
        }

        .testimonial-header {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .customer-name {
            font-size: 20px;
            font-weight: 600;
            color: #1f2937;
        }

        .stars {
            display: flex;
            gap: 4px;
        }

        .star {
            font-size: 16px;
            color: #fbbf24;
        }

        .review-text {
            font-size: 16px;
            line-height: 1.6;
            color: #4b5563;
            font-weight: 400;
        }






/* Booking Section */
.booking {
    padding: 100px 0;
    background: white;
}

.booking-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.booking-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.booking-text p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

.features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
}

.feature i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #e91e63, #f06292);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.booking-form {
    background: #f8f9ff;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e1e5e9;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #e91e63;
    box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.btn-full {
    width: 100%;
}

.btn-primary {
    background: linear-gradient(45deg, #e91e63, #f06292);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.4);
}


        /* Floating Book Now Button */
        .floating-cta {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, rgb(255, 0, 98), #e91e63);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.5rem;
            box-shadow: 0 15px 40px #e91e63;
            cursor: pointer;
            z-index: 1000;
            transition: all 0.3s ease;
            animation: pulse 2s infinite;
        }

        .floating-cta:hover {
            transform: scale(1.1) translateY(-5px);
            box-shadow: 0 20px 50px #e91e63;
        }
        .floating-cta a{
            color: white;
        }

        @keyframes pulse {
            0% { box-shadow: 0 15px 40px #e91e6286; }
            50% { box-shadow: 0 15px 40px #e91e62b1; }
            100% { box-shadow: 0 15px 40px #e91e62a3; }
        }

/* Footer */
.footer {
    background: #1a1a2e;
    color: white;
    padding: 4rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1.5rem;
    color: #e91e63;
}

.footer-section h3 {
    font-size: 1.5rem;
}

.footer-section p,
.footer-section li {
    color: #b8b8b8;
    margin-bottom: 0.8rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: #b8b8b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #e91e63;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #e91e63, #f06292);
    border-radius: 50%;
    display: flex;
    color: white;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #f8eeee;
}
/* Popup Styling */
.popup-overlay {
    display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.85); z-index: 9999; justify-content: center; align-items: center;
    padding: 15px; /* Mobile par touch screen se chipke nahi */
}

.popup-content {
    background: #fff; padding: 30px; border-radius: 15px; width: 100%; max-width: 450px;
    position: relative; box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}
.close-btn { position: absolute; right: 20px; top: 15px; cursor: pointer; font-size: 24px; color: #333; }

/* Offer Notification Styling */
.offer-box {
    position: fixed; bottom: 25px; left: -500px; /* Shuru mein screen se bahar */
    background: #ff4757; color: white; padding: 15px 20px; border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2); transition: all 0.6s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    z-index: 9998; min-width: 270px;
}
.offer-box.show { left: 20px; } /* Slide in effect */
.offer-content { display: flex; justify-content: space-between; align-items: center; }
.close-offer { cursor: pointer; font-size: 22px; margin-left: 15px; line-height: 1; }

/* Form field adjustments for popup */
.popup-content .form-group { margin-bottom: 12px; }
.popup-content input, .popup-content select { padding: 10px; border: 1px solid #ddd; border-radius: 5px; }



























































 @media (max-width: 1024px) {
            .testimonials-section {
                grid-template-columns: 1fr;
                gap: 40px;
                text-align: center;
            }

            .static-content {
                align-items: center;
            }

            .slider-nav {
                justify-content: center;
            }

            .testimonial-card {
                flex: 0 0 70%;
            }
            

        }






        /* Responsive Design */
        
@media (max-width: 768px) {
            .hamburger {
        display: flex;
    }
    

    .navbar {
    padding: 0.5rem 0;
}

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 85px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .book-btn-2 {
        display: none;
        
    }


    .logo h2{
        margin-top: 12px;
    }
    
            .hero {
                margin-top: 90px;
            height: 30vh;
             background: linear-gradient(rgba(0, 0, 0, 0.132), rgba(0, 0, 0, 0.159)), 
                        url('1775394616688.png') center/cover no-repeat;
            
               overflow: hidden;
               width: 100%;
        }

         


            .hero-content {
                display: none;
            }

           
            .review-bubble{
                display: none;
            }
            .review-avatars img{
                display: none;
            }

            .reviews-section {
                max-width: 100%;
                margin-top: 1rem;
            }

            .cta-buttons {
                justify-content: center;
                margin-top: 100px;
            }
            .about,
            .contact-content {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

             .floating-cta {
                bottom: 1.5rem;
                right: 1.5rem;
                width: 55px;
                height: 55px;
            }
.premium-services{
    display: none;
}

            .testimonials-section {
               display: none;
            }

            .section{
              display: none;
            }
            .offers-section{
                display: none;
            }
            
            .section-title {
                font-size: 2.2rem;
            }

            .offer-box {
             bottom: 80px;
 }
            
 
.offer-box.show { left: 20px; right: 20px; } /* Slide in effect */

            .offers-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .offer-card {
                padding: 30px 20px;
            }
            .booking-content {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr; /* Form inputs stack ho jayenge */
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    /* Navbar fix */
    .nav-container {
        padding: 0 15px;
    }
    
    /* Hero section font size reduction */
    
    



.booking-text h2 {
    font-size: 1.6rem;
}

.booking-text p {
    font-size: 0.9rem;
}



.feature {
    font-size: 1rem;
}

.feature i {
    width: 40px;
    height: 40px;
    font-size: 1rem;
}








    
.services {
    display: block;
  
}

/* TABS */
.tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.tab {
  padding: 15px 15px 1px;
  border-radius: 10px;
  font-size: 12px;
  text-align: right;
  border: 1px solid #ddd;
  background: #fff;
}

.tab img {
  width: 27px;
  height: 25px;
  float: left;
  margin-right: 12px;
}


.tab.active {
  background: #ffe4ec;
  color: #ff4d88;
  border: 1px solid #ff4d88;
}


/* GRID */
.service-grid {
  display: none;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.service-grid.active {
  display: grid;
}

/* BIG CARD */
.card.big {
  grid-column: span 2;
}

/* CARD */
.card img {
  width: 100%;
  border-radius: 12px;
  bottom: 0px;
}

.card p {
  font-size: 12px;
  text-align: center;
}


.space{
    height: 5px;
    background: rgba(242, 240, 240, 0.656);
}


.trending {
    display: block;
  }


/* Tabs */
.trend-tabs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  margin: 15px 0;
  margin-bottom: 30px;
}

.trend-tab {
  padding: 8px 14px;
  border-radius: 20px;
  border: none;
  background: #eee;
  white-space: nowrap;
}

.trend-tab.active {
  background: #ffe4ec;
  color: #ff4d88;
}

.trend-tabs::-webkit-scrollbar {
  display: none;                /* Chrome/Safari */
}

/* Content */
.trend-content {
  display: none;
}

.trend-content.active {
  display: block;
}

/* Card */
.trend-card {
  display: flex;
  gap: 12px;
  align-items: center;
}

/* Image wrapper */
.trend-card img {
  width: 100px;
  height: 100px;
  border-radius: 15px;
  object-fit: cover;
}

/* IMPORTANT: wrapper banao */
.trend-card {
  position: relative;
}

/* Info */
.trend-info h4 {
  font-size: 14px;
  margin: 5px 0;
}

.trend-info p {
  font-size: 13px;
  color: #555;
}

.off {
  color: green;
  margin-left: 5px;
}

/* Tag */
.tag {
  background: #ddd;
  padding: 3px 8px;
  border-radius: 10px;
  font-size: 11px;
}

/* Button */
.add-btn {
  position: absolute;
  left: 50px;   /* image ke center ke around */
  bottom: -10px; /* half bahar laane ke liye */
  transform: translateX(-50%);
  padding: 7px 20px;
  border-radius: 10px;
  border: 1px solid #ff4d88;
  background: white;
  color: #ff4d88;
}





    /* Achievements Grid Fix */
    .achievements-section{
        display:none;
        
    }

    /* About Section Fix */
    .about {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .about-image {
        height: 300px; /* Reduced height for mobile */
    }

    /* Testimonials Fix */
    .static-content {
        width: 100%;
        padding: 0 15px;
    }


    /* Form Layout Fix */
    .form-row {
        grid-template-columns: 1fr;
    }


    .main-title {
        font-size: 2rem;
    }
    
    .editorial-grid {
        grid-template-columns: 1fr;
    }
    
    .image-box {
        height: 350px;
    }
.single-banner {
    display: flex;
}

.banner-section{
    display: block;
}
.offer-section{
    display: flex;
}

        }














































        @media (max-width: 480px) {
            .hero h1 {
                font-size: 2.9rem;
            }

            .hero span{
                font-size: 2rem;
            }
            .btn {
                padding: 0.9rem 2rem;
                font-size: 0.9rem;
            }
             
    

            .rating-display {
                padding: 24px 20px;
            }

            .social-icons {
                gap: 12px;
            }

            .social-icon {
                width: 44px;
                height: 44px;
                font-size: 18px;
            }
           .achievement-item {
        flex: 0 0 45%; /* Ek line mein 2 items */
    }

    .icon-circle {
        width: 80px;
        height: 80px;
    }

    .offers-grid {
        grid-template-columns: 1fr; /* Cards ek ke niche ek aayenge */
    }
    
    .section-title-2 {
        font-size: 2.2rem;
    }
        }

        
            
            
        
