:root {
    --primary-blue: #87CEEB;
    --primary-pink: #FFC0CB;
    --dark-blue: #005f73;
    --dark-pink: #d63384;
    --white: #ffffff;
    --gray: #f4f4f4;
    --text-color: #333;
    --font-main: 'Poppins', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 10px 30px;
    background: var(--primary-pink);
    color: var(--white);
    border-radius: 25px;
    font-weight: 600;
    transition: 0.3s;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: var(--dark-pink);
    transform: translateY(-2px);
}

/* Top Bar */
.top-bar {
    background: var(--primary-blue);
    color: var(--white);
    padding: 10px 0;
    font-size: 0.9rem;
}

.top-bar .contact-info {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.top-bar span {
    margin-right: 20px;
}

.top-bar i {
    margin-right: 5px;
}

/* Navbar */
.navbar {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-blue);
}

.logo img {
    height: 120px;
    width: 200px; /* Increased width as requested */
    margin-right: 0;
}

.nav-links {
    display: flex;
    align-items: center; /* Center align items vertically */
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    font-weight: 700; /* Made text thick/bold */
    font-size: 1.1rem; /* Increased font size slightly */
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 8px; /* Space between icon and text */
    color: var(--dark-blue); /* Text color Blue */
}

.nav-links a i {
    color: var(--dark-pink); /* Icon color Pink */
}

.nav-links a:hover {
    color: var(--primary-pink);
}

.burger {
    display: none;
    cursor: pointer;
}

/* Professional Burger Animation */
.burger div {
    width: 30px;
    height: 3px;
    background-color: var(--dark-blue);
    margin: 6px 0;
    transition: all 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
    border-radius: 2px;
}

.toggle .line1 {
    transform: rotate(45deg) translate(5px, 6px);
    background-color: var(--dark-pink);
}

.toggle .line2 {
    opacity: 0;
    transform: translateX(-20px);
}

.toggle .line3 {
    transform: rotate(-45deg) translate(5px, -6px);
    background-color: var(--dark-pink);
}
.hero {
    position: relative;
    height: 80vh;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Removed inline background styles */
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -1;
    transform: scale(1);
    transition: transform 10s ease-out; /* Slow zoom */
}

.slide.active .slide-bg {
    transform: scale(1.1); /* Zoom in when active */
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 0;
}

.slide.active {
    opacity: 1;
}

.slide .content {
    position: relative;
    color: var(--white);
    z-index: 1;
    /* Removed slideUp animation to control via JS for typewriter */
}

.slide h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    min-height: 1.2em; /* Reserve space for typing */
}

.slide p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    min-height: 1.2em; /* Reserve space for typing */
}

/* Cursor Effect */
.typing::after {
    content: '|';
    animation: blink 0.7s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.3);
    color: var(--white);
    border: none;
    padding: 15px;
    cursor: pointer;
    font-size: 1.5rem;
    border-radius: 50%;
    transition: 0.3s;
    z-index: 2;
}

.slider-btn:hover {
    background: var(--primary-pink);
}

#prev { left: 20px; }
#next { right: 20px; }

/* Animated Background */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.bubble {
    position: absolute;
    bottom: -100px;
    background: rgba(135, 206, 235, 0.2);
    border-radius: 50%;
    animation: float 15s infinite ease-in;
}

.b1 { width: 80px; height: 80px; left: 10%; animation-duration: 12s; }
.b2 { width: 60px; height: 60px; left: 30%; animation-duration: 15s; animation-delay: 2s; }
.b3 { width: 100px; height: 100px; left: 70%; animation-duration: 10s; animation-delay: 1s; }
.b4 { width: 40px; height: 40px; left: 50%; animation-duration: 18s; }
.b5 { width: 120px; height: 120px; left: 90%; animation-duration: 20s; animation-delay: 3s; }

@keyframes float {
    0% { transform: translateY(0); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateY(-100vh); opacity: 0; }
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--dark-blue);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--primary-pink);
    margin: 10px auto 0;
}

/* About Section */
.about-section {
    background: var(--white);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Services Section - Updated */
.services-section {
    background: var(--gray);
    position: relative;
    overflow: hidden;
}

/* Soap Bubbles Animation */
.soap-bubbles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.soap-bubble {
    position: absolute;
    bottom: -100px;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.4) 20%, rgba(255, 255, 255, 0.1) 60%, rgba(255, 255, 255, 0.6) 100%);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5), inset 0 0 10px rgba(255, 255, 255, 0.5);
    animation: soapRise 15s infinite ease-in;
}

/* Add iridescent sparkle effect */
.soap-bubble::after {
    content: '';
    position: absolute;
    top: 15%;
    left: 15%;
    width: 20%;
    height: 20%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.9), transparent 70%);
    filter: blur(1px);
}

.sb1 { width: 60px; height: 60px; left: 5%; animation-duration: 12s; animation-delay: 0s; background: radial-gradient(circle at 30% 30%, rgba(255, 200, 200, 0.4), rgba(200, 255, 255, 0.2)); }
.sb2 { width: 30px; height: 30px; left: 15%; animation-duration: 8s; animation-delay: 2s; background: radial-gradient(circle at 30% 30%, rgba(200, 255, 200, 0.4), rgba(255, 200, 255, 0.2)); }
.sb3 { width: 80px; height: 80px; left: 25%; animation-duration: 15s; animation-delay: 4s; background: radial-gradient(circle at 30% 30%, rgba(200, 200, 255, 0.4), rgba(255, 255, 200, 0.2)); }
.sb4 { width: 40px; height: 40px; left: 35%; animation-duration: 10s; animation-delay: 1s; }
.sb5 { width: 70px; height: 70px; left: 45%; animation-duration: 14s; animation-delay: 3s; background: radial-gradient(circle at 30% 30%, rgba(255, 255, 200, 0.4), rgba(200, 255, 255, 0.2)); }
.sb6 { width: 25px; height: 25px; left: 55%; animation-duration: 7s; animation-delay: 5s; }
.sb7 { width: 90px; height: 90px; left: 65%; animation-duration: 18s; animation-delay: 2s; background: radial-gradient(circle at 30% 30%, rgba(255, 200, 255, 0.4), rgba(200, 255, 200, 0.2)); }
.sb8 { width: 35px; height: 35px; left: 75%; animation-duration: 9s; animation-delay: 0s; }
.sb9 { width: 50px; height: 50px; left: 85%; animation-duration: 11s; animation-delay: 4s; background: radial-gradient(circle at 30% 30%, rgba(200, 255, 255, 0.4), rgba(255, 200, 200, 0.2)); }
.sb10 { width: 45px; height: 45px; left: 95%; animation-duration: 13s; animation-delay: 1s; }

.sb11 { width: 55px; height: 55px; left: 8%; animation-duration: 16s; animation-delay: 1s; background: radial-gradient(circle at 30% 30%, rgba(200, 240, 255, 0.4), rgba(255, 200, 255, 0.2)); }
.sb12 { width: 25px; height: 25px; left: 18%; animation-duration: 9s; animation-delay: 3s; }
.sb13 { width: 90px; height: 90px; left: 28%; animation-duration: 19s; animation-delay: 5s; background: radial-gradient(circle at 30% 30%, rgba(255, 255, 200, 0.4), rgba(200, 255, 200, 0.2)); }
.sb14 { width: 35px; height: 35px; left: 38%; animation-duration: 11s; animation-delay: 0.5s; }
.sb15 { width: 65px; height: 65px; left: 48%; animation-duration: 14s; animation-delay: 2.5s; background: radial-gradient(circle at 30% 30%, rgba(255, 200, 200, 0.4), rgba(200, 200, 255, 0.2)); }
.sb16 { width: 45px; height: 45px; left: 58%; animation-duration: 13s; animation-delay: 4s; }
.sb17 { width: 75px; height: 75px; left: 68%; animation-duration: 17s; animation-delay: 1.5s; background: radial-gradient(circle at 30% 30%, rgba(200, 255, 255, 0.4), rgba(255, 255, 200, 0.2)); }
.sb18 { width: 30px; height: 30px; left: 78%; animation-duration: 10s; animation-delay: 3.5s; }
.sb19 { width: 85px; height: 85px; left: 88%; animation-duration: 20s; animation-delay: 0s; background: radial-gradient(circle at 30% 30%, rgba(255, 200, 255, 0.4), rgba(200, 240, 255, 0.2)); }
.sb20 { width: 40px; height: 40px; left: 92%; animation-duration: 12s; animation-delay: 2s; }

.sb21 { width: 50px; height: 50px; left: 3%; animation-duration: 15s; animation-delay: 4s; background: radial-gradient(circle at 30% 30%, rgba(220, 255, 220, 0.4), rgba(255, 220, 255, 0.2)); }
.sb22 { width: 28px; height: 28px; left: 12%; animation-duration: 8s; animation-delay: 1s; }
.sb23 { width: 95px; height: 95px; left: 22%; animation-duration: 21s; animation-delay: 3s; background: radial-gradient(circle at 30% 30%, rgba(255, 240, 200, 0.4), rgba(200, 255, 255, 0.2)); }
.sb24 { width: 38px; height: 38px; left: 32%; animation-duration: 10.5s; animation-delay: 0s; }
.sb25 { width: 60px; height: 60px; left: 42%; animation-duration: 14.5s; animation-delay: 2s; background: radial-gradient(circle at 30% 30%, rgba(200, 200, 255, 0.4), rgba(255, 200, 200, 0.2)); }
.sb26 { width: 42px; height: 42px; left: 52%; animation-duration: 12.5s; animation-delay: 5s; }
.sb27 { width: 70px; height: 70px; left: 62%; animation-duration: 16.5s; animation-delay: 1s; background: radial-gradient(circle at 30% 30%, rgba(200, 255, 255, 0.4), rgba(255, 255, 200, 0.2)); }
.sb28 { width: 32px; height: 32px; left: 72%; animation-duration: 9.5s; animation-delay: 3s; }
.sb29 { width: 80px; height: 80px; left: 82%; animation-duration: 18.5s; animation-delay: 0.5s; background: radial-gradient(circle at 30% 30%, rgba(255, 200, 255, 0.4), rgba(200, 240, 255, 0.2)); }
.sb30 { width: 36px; height: 36px; left: 98%; animation-duration: 11.5s; animation-delay: 2.5s; }

@keyframes soapRise {
    0% {
        bottom: -100px;
        transform: translateX(0) scale(1);
        opacity: 0;
    }
    20% {
        opacity: 0.8;
        transform: translateX(10px) scale(1.1);
    }
    50% {
        opacity: 0.6;
        transform: translateX(-10px) scale(1);
    }
    80% {
        opacity: 0.4;
        transform: translateX(10px) scale(0.9);
    }
    100% {
        bottom: 100%;
        transform: translateX(0) scale(0.8);
        opacity: 0;
    }
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Two columns layout */
    gap: 40px;
    position: relative;
    z-index: 1; /* Ensure content is above bubbles */
}

.service-card {
    background: var(--white);
    padding: 0;
    border-radius: 15px;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 2px solid transparent; /* Prepare for glow */
    animation: glow 3s infinite alternate; /* Glow animation */
}

@keyframes glow {
    from {
        box-shadow: 0 0 10px -10px var(--primary-blue);
        border-color: transparent;
    }
    to {
        box-shadow: 0 0 20px 5px rgba(135, 206, 235, 0.4);
        border-color: rgba(135, 206, 235, 0.3);
    }
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.service-image {
    height: 350px; /* Increased height to show more image */
    overflow: hidden;
    background-color: var(--white); /* Ensure clean background if image doesn't fill */
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Changed to cover to fill the box */
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-subtitle {
    display: block;
    font-size: 0.9rem;
    color: var(--primary-pink);
    font-weight: 700; /* Bolder */
    margin-bottom: 2px; /* Reduced margin */
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-card h3 {
    margin-bottom: 5px; /* Reduced margin */
    color: var(--dark-blue);
    font-size: 1.5rem;
    font-weight: 700; /* Ensure bold */
}

.service-tagline {
    font-weight: 700; /* Bolder */
    color: #444; /* Slightly darker for better contrast */
    margin-bottom: 5px; /* Reduced margin */
    font-style: italic;
    min-height: 1.5em; /* Ensure height stability for typing effect */
}

/* Typing Effect Class */
.typing-effect {
    border-right: 2px solid var(--primary-pink);
    white-space: nowrap;
    overflow: hidden;
    animation: blink-caret 0.75s step-end infinite;
    display: inline-block;
    max-width: 0; /* Start hidden */
}

@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: var(--primary-pink); }
}

.service-card p {
    color: #555; /* Darker text */
    margin-bottom: 15px; /* Reduced margin */
    font-size: 0.95rem;
    flex: 1;
    font-weight: 600; /* Made text bold */
}

.service-card .btn {
    align-self: center;
    margin-top: auto;
}

/* Responsive adjustment for services */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr; /* Stack on mobile */
    }
}

/* Trust Section (Infinite Logo Scroll) */
.trust-section {
    background: var(--white);
    text-align: center;
    overflow: hidden;
    position: relative;
}

.trust-section .container,
.testimonials-video-section .container {
    position: relative;
    z-index: 1;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--primary-pink);
    margin-top: -30px;
    margin-bottom: 40px;
    font-style: italic;
}

.logos-slider {
    height: 150px;
    margin: auto;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.logos-slider::before,
.logos-slider::after {
    background: linear-gradient(to right, white 0%, rgba(255,255,255,0) 100%);
    content: "";
    height: 150px;
    position: absolute;
    width: 200px;
    z-index: 2;
}

.logos-slider::after {
    right: 0;
    top: 0;
    transform: rotateZ(180deg);
}

.logos-slider::before {
    left: 0;
    top: 0;
}

.logos-slide-track {
    animation: scroll 30s linear infinite;
    display: flex;
    width: calc(250px * 12); /* 250px * number of slides */
}

.client-logo {
    height: 100px;
    width: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 30px;
}

.client-logo img {
    max-width: 100%;
    max-height: 100%;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: 0.3s;
}

.client-logo img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-250px * 6)); } /* Move half of the track */
}

/* VIP Link in Navbar */
.vip-link {
    color: #ff3333 !important; /* Red color */
    font-weight: bold;
    text-shadow: 0 0 5px rgba(255, 51, 51, 0.7), 0 0 10px rgba(255, 51, 51, 0.5); /* Glow effect */
    animation: vip-glow 2s infinite alternate;
}

@keyframes vip-glow {
    from {
        text-shadow: 0 0 5px rgba(255, 51, 51, 0.7), 0 0 10px rgba(255, 51, 51, 0.5);
    }
    to {
        text-shadow: 0 0 10px rgba(255, 51, 51, 1), 0 0 20px rgba(255, 51, 51, 0.8), 0 0 30px rgba(255, 51, 51, 0.6);
    }
}

/* About Page - Luxury Redesign */
.about-hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../img/hero-bg.jpg'); /* Assuming hero-bg exists or fallback color */
    background-color: var(--dark-blue);
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    background-size: cover;
    background-position: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 2px;
    animation: fadeInUp 1.2s ease;
}

/* Story Section */
.about-story {
    padding: 100px 0;
    background: #f9f9f9;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.lead-text {
    font-size: 1.3rem;
    color: var(--primary-pink);
    font-weight: 600;
    margin-bottom: 20px;
}

.stats-row {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-blue);
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.story-image-wrapper {
    position: relative;
}

.image-frame {
    border: 10px solid white;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-radius: 5px;
    overflow: hidden;
    transform: rotate(2deg);
    transition: transform 0.5s ease;
}

.image-frame:hover {
    transform: rotate(0deg) scale(1.02);
}

.image-frame img {
    width: 100%;
    display: block;
}

.floating-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--primary-pink);
    color: white;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(255, 105, 180, 0.4);
    animation: float 4s ease-in-out infinite;
    text-align: center;
    font-size: 0.9rem;
    font-weight: bold;
}

.floating-badge i {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

/* Luxury Values */
.values-section-luxury {
    background: var(--white);
    padding: 100px 0;
}

.values-grid-luxury {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.luxury-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.luxury-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary-pink), var(--primary-blue));
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.luxury-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.luxury-card:hover::before {
    transform: scaleX(1);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: #f0f4f8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: var(--dark-blue);
    transition: all 0.4s ease;
}

.luxury-card:hover .card-icon {
    background: var(--dark-blue);
    color: white;
    transform: rotateY(360deg);
}

/* Team Section - Star Style */
.team-section {
    background: #1a1a2e; /* Dark luxurious background */
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.team-section::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: radial-gradient(white 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.05;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.team-card {
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.4s ease;
    position: relative;
    backdrop-filter: blur(10px);
}

.team-card:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(255,255,255,0.1);
    border-color: var(--primary-pink);
    box-shadow: 0 0 30px rgba(255, 105, 180, 0.3);
}

.team-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-pink);
    padding: 3px;
    background: transparent;
    transition: all 0.4s ease;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.team-card:hover .team-image {
    border-color: white;
    box-shadow: 0 0 20px rgba(255, 105, 180, 0.5);
}

.team-info h3 {
    font-size: 1.4rem;
    margin-bottom: 5px;
    color: white;
}

.team-info .role {
    display: block;
    font-size: 0.9rem;
    color: #ccc;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stars {
    color: #FFD700;
    font-size: 0.9rem;
}

.stars i {
    animation: star-twinkle 1.5s infinite alternate;
}

.stars i:nth-child(2) { animation-delay: 0.2s; }
.stars i:nth-child(3) { animation-delay: 0.4s; }
.stars i:nth-child(4) { animation-delay: 0.6s; }
.stars i:nth-child(5) { animation-delay: 0.8s; }

@keyframes star-twinkle {
    from { opacity: 0.5; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1.2); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .story-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-row {
        justify-content: center;
    }
    
    .floating-badge {
        right: 0;
        left: 0;
        margin: auto;
        bottom: -60px;
    }
}
.vip-section {
    background-color: var(--white);
    padding: 80px 0;
}

.vip-header {
    text-align: center;
    margin-bottom: 60px;
}

.vip-badge {
    background-color: var(--primary-pink);
    color: white;
    font-size: 0.5em;
    padding: 5px 15px;
    border-radius: 20px;
    vertical-align: middle;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.vip-desc {
    font-size: 1.1rem;
    color: var(--text-color);
    max-width: 800px;
    margin: 20px auto;
}

.vip-content-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 50px;
    flex-wrap: wrap;
}

.vip-cards-container {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.vip-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 5px solid;
    position: relative;
    overflow: hidden;
}

.vip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.vip-card.silver { border-left-color: #C0C0C0; }
.vip-card.gold { border-left-color: #FFD700; }
.vip-card.platinum { border-left-color: #E5E4E2; }

.vip-card .card-header {
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.vip-card h3 {
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.vip-card.silver h3 { color: #7a7a7a; }
.vip-card.gold h3 { color: #d4af37; }
.vip-card.platinum h3 { color: #5a5a5a; }

.plan-frequency {
    display: block;
    font-weight: 700;
    color: var(--dark-blue);
    font-size: 1.1rem;
}

.plan-condition {
    display: block;
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

.vip-benefits {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.vip-benefits li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 30px;
}

.vip-benefits li i {
    position: absolute;
    left: 0;
    top: 4px;
    color: var(--primary-green);
}

.btn-vip {
    background-color: transparent;
    color: var(--primary-pink);
    border: 2px solid var(--primary-pink);
    width: 100%;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-vip:hover {
    background-color: var(--primary-pink);
    color: white;
}

.vip-image {
    flex: 1;
    min-width: 300px;
    position: sticky;
    top: 100px;
}

.vip-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

/* Floating VIP Button */
.floating-vip-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    text-decoration: none;
    animation: float 3s ease-in-out infinite;
}

.vip-icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FFD700, #FDB931);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    color: var(--dark-blue);
    font-size: 24px;
    position: relative;
    transition: transform 0.3s ease;
}

.floating-vip-btn:hover .vip-icon-wrapper {
    transform: scale(1.1);
}

.vip-tooltip {
    position: absolute;
    right: 70px;
    background: var(--dark-blue);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

.floating-vip-btn:hover .vip-tooltip {
    opacity: 1;
    visibility: visible;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

@media (max-width: 992px) {
    .vip-content-wrapper {
        flex-direction: column-reverse;
    }
    
    .vip-image {
        width: 100%;
        position: static;
        margin-bottom: 30px;
    }
}


.social-ticker-container {
    background: var(--dark-blue);
    color: var(--white);
    padding: 15px 0;
    overflow: hidden;
    white-space: nowrap;
}

.social-ticker {
    display: inline-block;
    animation: ticker 20s linear infinite;
}

.social-item {
    display: inline-block;
    margin: 0 30px;
    color: var(--white);
    font-size: 1.2rem;
    transition: 0.3s;
}

.social-item:hover {
    color: var(--primary-pink);
}

@keyframes ticker {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* Contact Section */
.contact-section {
    background: url('../img/contact-bg.jpg') no-repeat center center/cover;
    position: relative;
}

.contact-wrapper {
    display: flex;
    gap: 50px;
    background: rgba(255,255,255,0.9);
    padding: 50px;
    border-radius: 10px;
}

.contact-form {
    flex: 1;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
}

.contact-details {
    flex: 1;
}

.contact-details h3 {
    margin-bottom: 20px;
    color: var(--dark-blue);
}

.info-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.info-list i {
    color: var(--primary-pink);
    width: 30px;
    font-size: 1.2rem;
}

/* Footer */
.footer {
    background: #222;
    color: #fff;
    padding: 50px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section h3 {
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.footer-section.links ul li {
    margin-bottom: 10px;
}

.footer-section.links a:hover {
    color: var(--primary-pink);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #444;
    padding-top: 20px;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    body, html {
        overflow-x: hidden;
    }

    .nav-links {
        position: absolute; /* Changed from fixed to absolute */
        right: 0px;
        top: 100%; /* Below navbar */
        left: 0;
        height: auto;
        background-color: var(--white);
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%; /* Full width */
        transform: translateY(-150%); /* Slide up to hide */
        transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
        z-index: 998; /* Below navbar */
        opacity: 0;
        pointer-events: none;
        padding: 20px 0;
    }

    .nav-links li {
        opacity: 1; /* Always visible when container is visible */
        margin: 15px 0;
    }

    .burger {
        display: block;
    }

    .nav-active {
        transform: translateY(0%);
        opacity: 1;
        pointer-events: all;
    }

    .about-content,
    .contact-wrapper {
        flex-direction: column;
    }

    .slide h1 {
        font-size: 2.5rem;
    }
    
    .top-bar .contact-info {
        flex-direction: column;
        text-align: center;
    }
    
    .top-bar span {
        margin: 5px 0;
    }
}

@keyframes navLinkFade {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Video Section */
.video-section {
    padding: 80px 0;
    text-align: center;
    background-color: transparent;
    position: relative;
    overflow: hidden; /* Ensure bubbles stay within section */
}

/* Video Bubble Background */
.video-bubbles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.video-bubble {
    position: absolute;
    bottom: -100px;
    background: rgba(255, 192, 203, 0.3); /* Pinkish transparent */
    border-radius: 50%;
    animation: rise 15s infinite ease-in;
}

.vb1 { width: 40px; height: 40px; left: 10%; animation-duration: 8s; animation-delay: 0s; }
.vb2 { width: 20px; height: 20px; left: 20%; animation-duration: 5s; animation-delay: 1s; }
.vb3 { width: 50px; height: 50px; left: 35%; animation-duration: 10s; animation-delay: 2s; }
.vb4 { width: 80px; height: 80px; left: 50%; animation-duration: 12s; animation-delay: 0s; }
.vb5 { width: 35px; height: 35px; left: 65%; animation-duration: 6s; animation-delay: 3s; }
.vb6 { width: 60px; height: 60px; left: 80%; animation-duration: 9s; animation-delay: 1s; }
.vb7 { width: 25px; height: 25px; left: 90%; animation-duration: 7s; animation-delay: 4s; }

@keyframes rise {
    0% {
        bottom: -100px;
        transform: translateX(0);
        opacity: 0;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        bottom: 100%;
        transform: translateX(-20px);
        opacity: 0;
    }
}

.video-section .section-title {
    color: var(--dark-blue);
    position: relative;
    z-index: 1;
}

.video-section .section-title::after {
    background: var(--primary-pink);
}

.video-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.video-frame {
    position: relative;
    width: 100%;
    max-width: 800px;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    border: 10px solid var(--primary-pink);
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(255, 105, 180, 0.6);
    background: black;
    overflow: hidden;
    transition: transform 0.3s ease;
    animation: glow-pulse 2s infinite alternate;
}

@keyframes glow-pulse {
    from { box-shadow: 0 0 20px rgba(255, 105, 180, 0.4); }
    to { box-shadow: 0 0 40px rgba(255, 105, 180, 0.8); }
}

.video-frame:hover {
    transform: scale(1.02);
}

.video-frame iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-flag {
    position: absolute;
    top: -25px;
    right: -25px;
    width: 80px;
    height: 50px;
    z-index: 10;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.3));
    transform: rotate(15deg);
    transition: transform 0.3s ease;
}

.video-flag img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
    border: 3px solid var(--white);
}

.video-frame:hover .video-flag {
    transform: rotate(0deg) scale(1.1);
}


/* Testimonials Video Section */
.testimonials-video-section {
    padding: 60px 0;
    text-align: center;
    background-color: transparent;
    position: relative;
    overflow: hidden;
}

.testimonial-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1000px;
    margin: 40px auto 0;
    gap: 0;
    padding: 0 60px; /* Space for buttons */
}

.testimonial-video-slider {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 40px;
    padding: 30px 10px; /* Padding for shadows */
    width: 100%;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-snap-type: x mandatory;
}

.testimonial-video-slider::-webkit-scrollbar {
    display: none;
}

.testimonial-video-item {
    flex: 0 0 100%;
    scroll-snap-align: center;
    display: flex;
    justify-content: center;
}

.testimonial-video-item .video-frame {
    max-width: 700px;
    border: 5px solid var(--dark-blue);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    animation: none; /* Remove glow pulse */
    border-radius: 15px;
}

.slider-btn {
    background: var(--primary-pink);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.4);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.slider-btn.prev-btn {
    left: 0;
}

.slider-btn.next-btn {
    right: 0;
}

.slider-btn:hover {
    background: var(--dark-pink);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 0 20px var(--primary-pink);
}

@media (max-width: 768px) {
    .testimonial-slider-wrapper {
        padding: 0 40px;
    }
    
    .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}


/* Alert Styles */
.alert {
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
    text-align: center;
}
.alert.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}
.alert.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

