    
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            overflow-x: hidden;
        }

        .playfair {
            font-family: 'Playfair Display', serif;
        }

        /* Scroll animations */
        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(60px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInDown {
            from {
                opacity: 0;
                transform: translateY(-60px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-60px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(60px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        @keyframes scaleUp {
            from {
                opacity: 0;
                transform: scale(0.9);
            }

            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0px) rotate(0deg);
            }

            50% {
                transform: translateY(-20px) rotate(2deg);
            }
        }

        @keyframes bounce {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-15px);
            }
        }

        @keyframes shimmer {
            0% {
                background-position: -1000px 0;
            }

            100% {
                background-position: 1000px 0;
            }
        }

        @keyframes rotate {
            from {
                transform: rotate(0deg);
            }

            to {
                transform: rotate(360deg);
            }
        }

        /* Animation classes */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(60px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .animate-on-scroll.active {
            opacity: 1;
            transform: translateY(0);
        }

        .slide-up {
            animation: slideInUp 0.8s ease-out forwards;
        }

        .slide-down {
            animation: slideInDown 0.8s ease-out forwards;
        }

        .slide-left {
            animation: slideInLeft 0.8s ease-out forwards;
        }

        .slide-right {
            animation: slideInRight 0.8s ease-out forwards;
        }

        .fade-in {
            animation: fadeIn 0.8s ease-out forwards;
        }

        .scale-up {
            animation: scaleUp 0.6s ease-out forwards;
        }

        .float-animation {
            animation: float 3s ease-in-out infinite;
        }

        .bounce-animation {
            animation: bounce 2s ease-in-out infinite;
        }

        .shimmer-animation {
            background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0) 100%);
            background-size: 200% 100%;
            animation: shimmer 3s infinite;
        }

        .rotate-animation {
            animation: rotate 20s linear infinite;
        }

        /* Stagger delays */
        .delay-100 {
            animation-delay: 0.1s;
        }

        .delay-200 {
            animation-delay: 0.2s;
        }

        .delay-300 {
            animation-delay: 0.3s;
        }

        .delay-400 {
            animation-delay: 0.4s;
        }

        .delay-500 {
            animation-delay: 0.5s;
        }

        /* Hover effects */
        .hover-lift {
            transition: all 0.3s ease;
        }

        .hover-lift:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .hover-scale {
            transition: all 0.3s ease;
        }

        .hover-scale:hover {
            transform: scale(1.08);
        }

        /* Gradient backgrounds */
        .grad-pink {
            background: linear-gradient(135deg, #FDE8F0 0%, #FFE4F0 100%);
        }

        .grad-purple {
            background: linear-gradient(135deg, #E8E0F5 0%, #F0E8FF 100%);
        }

        .grad-yellow {
            background: linear-gradient(135deg, #FFF4E6 0%, #FFF9F0 100%);
        }

        .grad-blue {
            background: linear-gradient(135deg, #E0F4FF 0%, #E8FAFF 100%);
        }

        .grad-purple-dark {
            background: linear-gradient(135deg, #D4A4FF 0%, #B89FFF 100%);
        }

        /* Button styles */
        .btn-primary {
            background: linear-gradient(135deg, #7B68BE 0%, #8B77C9 100%);
            color: white;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.2);
            transition: left 0.5s ease;
        }

        .btn-primary:hover::before {
            left: 100%;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(123, 104, 190, 0.4);
        }

        .btn-secondary {
            background: white;
            color: #7B68BE;
            border: 2px solid #7B68BE;
            transition: all 0.3s ease;
        }

        .btn-secondary:hover {
            background: #7B68BE;
            color: white;
            transform: translateY(-3px);
        }

        .btn-pink {
            background: linear-gradient(135deg, #E85B9A 0%, #F071B2 100%);
            color: white;
            transition: all 0.3s ease;
        }

        .btn-pink:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(232, 91, 154, 0.4);
        }

        /* Gradient text */
        .gradient-text {
            background: linear-gradient(135deg, #E85B9A 0%, #7B68BE 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Navbar */
        .navbar {
            display: none;
        }

        .nav-link {
            position: relative;
            transition: color 0.3s ease;
            color: #333;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #E85B9A, #7B68BE);
            transition: width 0.3s ease;
        }

        .nav-link:hover {
            color: #7B68BE;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        /* Smooth scroll */
        html {
            scroll-behavior: smooth;
        }

        /* Section spacing */
        section {
            scroll-margin-top: 100px;
        }

        .circle-shadow {
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
        }

        .premium-shadow {
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
        }

        @keyframes marquee {
            0% {
                transform: translateX(0%);
            }

            100% {
                transform: translateX(-50%);
            }
        }

        .animate-marquee {
            display: inline-block;
            animation: marquee 30s linear infinite;
        }

        @keyframes scroll {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-50%);
            }
        }

        .animate-scroll {
            display: flex;
            width: max-content;
            animation: scroll 20s linear infinite;
        }

        /* Hover par pause karne ke liye (Optional) */
        .animate-scroll:hover {
            animation-play-state: paused;
        }

        @keyframes slowSlide {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-50%);
            }
        }

        .animate-slow-slide {
            display: flex;
            width: max-content;
            animation: slowSlide 30s linear infinite;
            /* 30s is very slow and smooth */
        }

        .animate-slow-slide:hover {
            animation-play-state: paused;
            /* User jab mouse rakhega toh ruk jayega */
        }

        /* Initial states */
        .reveal-left {
            opacity: 0;
            transform: translateX(-50px);
            transition: all 0.8s ease-out;
        }

        .reveal-right {
            opacity: 0;
            transform: translateX(50px);
            transition: all 0.8s ease-out;
        }

        .reveal-fade {
            opacity: 0;
            transform: scale(0.9);
            transition: all 1s ease-out;
        }

        /* Active states (Jab screen par aayega) */
        .reveal-active {
            opacity: 1;
            transform: translateX(0) scale(1);
        }

        /* Choti bouncing animation arrows ke liye */
        @keyframes bounce-subtle {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-5px);
            }
        }

        .animate-bounce-subtle {
            animation: bounce-subtle 2s infinite ease-in-out;
        }

        /* Slow Smooth Slide Animation */
        @keyframes slowSlide {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-50%);
            }
        }

        .animate-slow-slide {
            display: flex;
            width: max-content;
            animation: slowSlide 35s linear infinite;
        }

        .animate-slow-slide:hover {
            animation-play-state: paused;
        }

        /* Mobile view smoothness */
        @media (max-width: 768px) {
            .animate-slow-slide {
                animation-duration: 25s;
                /* Mobile par thoda fast taaki responsive lage */
            }
        }
    

    body {
        font-family: 'Inter', sans-serif;
        background-color: #ffffff;
        margin: 0;
        padding: 0;
        overflow-x: hidden;
        color: #1a1a1a;
    }

    /* SECTION 1: DARK THEME SYNC */
    .section-dark {
        padding: 100px 0;
        display: flex;
        align-items: center;
        position: relative;
        background-color: #0e0e0e;
        /* Pure Dark Theme */
        color: white;
    }

    .creative-swiper {
        width: 240px;
        height: 380px;
        overflow: visible !important;
    }

    .creative-swiper .swiper-slide {
        border-radius: 20px;
        overflow: hidden;
        border: 1px solid rgba(255, 255, 255, 0.08);
    }

    .creative-swiper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* TYPOGRAPHY */
    .heading-font {
        font-family: 'Oswald', sans-serif;
        letter-spacing: -0.02em;
    }

    /* BUTTON THEME */
    .explore-btn {
        width: 150px;
        height: 150px;
        border-radius: 50%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(0, 0, 0, 0.1);
        transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
        text-transform: uppercase;
        font-size: 13px;
        font-weight: 600;
        line-height: 1.2;
        text-align: center;
        background: transparent;
    }

    .explore-btn:hover {
        background-color: #000;
        color: #fff;
        transform: scale(1.05);
        border-color: #000;
    }

    /* TESTIMONIAL CARD THEME */
    .testimonial-swiper {
        width: 100%;
        max-width: 420px;
        height: 500px;
        padding-bottom: 60px;
    }

    .testimonial-swiper .swiper-slide {
        background: #fff;
        border-radius: 30px;
        padding: 50px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        border: 1px solid #f0f0f0;
    }

    /* FOOTER THEME */
    .footer-dark {
        background-color: #0e0e0e;
        color: white;
        padding: 140px 0 60px;
        text-align: center;
    }

    .perspective-container {
        perspective: 1000px;
        overflow: hidden;
        margin-bottom: -5px;
    }

    .footer-title {
        font-family: 'Oswald', sans-serif;
        font-size: clamp(4rem, 15vw, 11rem);
        line-height: 0.85;
        text-transform: uppercase;
        font-weight: 700;
        letter-spacing: -0.04em;
    }

    .footer-title span {
        display: block;
        transform-origin: top center;
    }

    .email-link {
        font-family: 'Inter', sans-serif;
        font-size: clamp(1.2rem, 4vw, 2.5rem);
        color: #fff;
        text-decoration: none;
        display: inline-block;
        font-weight: 400;
        position: relative;
    }

    .email-link::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 100%;
        height: 1px;
        background: #fff;
        transform: scaleX(0.3);
        transition: transform 0.3s;
    }

    .email-link:hover::after {
        transform: scaleX(1);
    }

    .footer-bottom-bar {
        margin-top: 120px;
        padding-top: 40px;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        font-size: 13px;
        color: #555;
        letter-spacing: 1px;
    }

    /* Swiper Pagination Theme */
    .swiper-pagination-bullet-active {
        background: #000 !important;
        width: 25px;
        border-radius: 5px;
        transition: 0.3s;
    }


    @keyframes floating {
        0% {
            transform: translateY(0px) rotate(0deg);
        }

        50% {
            transform: translateY(-20px) rotate(2deg);
        }

        100% {
            transform: translateY(0px) rotate(0deg);
        }
    }

    .hero-float {
        animation: floating 6s ease-in-out infinite;
    }

    .gradient-glow {
        background: linear-gradient(135deg, #ffdde1 0%, #ee9ca7 100%);
        filter: blur(80px);
        border-radius: 50%;
    }

    /* Animation classes for JS Trigger */
    .fade-up {
        opacity: 0;
        transform: translateY(40px);
        transition: all 1s cubic-bezier(0.2, 1, 0.3, 1);
    }

    .fade-up.active {
        opacity: 1;
        transform: translateY(0);
    }


    .step-card {
        background: rgba(255, 255, 255, 0.7);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.3);
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    .step-card:hover {
        transform: translateY(-15px);
        background: white;
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    }

    .connector-line {
        position: absolute;
        top: 45px;
        left: 50%;
        width: 100%;
        height: 2px;
        border-top: 3px dashed #e2e8f0;
        z-index: 0;
    }

    @media (max-width: 768px) {
        .connector-line {
            display: none;
        }
    }


    /* Swiper Mobile Specific Adjustments */
    @media (max-width: 768px) {
        .testimonial-swiper {
            max-width: 300px !important;
            /* Mobile par width control */
            height: auto !important;
        }

        .testimonial-swiper .swiper-slide {
            padding: 30px 20px !important;
            /* Spacing kam ki mobile ke liye */
            border-radius: 24px !important;
        }
    }


    /* Footer Theme Overrides */
    .footer-title {
        font-family: 'Oswald', sans-serif;
        /* Responsive Font Size: Mobile par 3.5rem, Desktop par up to 12rem */
        font-size: clamp(3.5rem, 14vw, 12rem);
        text-transform: uppercase;
        font-weight: 700;
        letter-spacing: -0.04em;
    }

    .email-link {
        font-family: 'Inter', sans-serif;
        font-size: clamp(1.2rem, 4vw, 2.5rem);
        font-weight: 400;
        letter-spacing: -0.02em;
    }

    .perspective-container {
        perspective: 1000px;
        overflow: hidden;
    }

    /* Gradient for Footer Gifting Text */
    .gradient-text {
        background: linear-gradient(135deg, #E85B9A 0%, #7B68BE 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    /* Anim-element base state for GSAP */
    .footer-anim-element {
        display: block;
        will-change: transform, opacity;
    }

    @media (max-width: 768px) {
        .footer-dark {
            padding-top: 80px;
            padding-bottom: 60px;
        }
    }

    /* Optimized for Mobile Text */
    .hero-title {
        font-size: clamp(2.5rem, 10vw, 5.25rem);
        /* Scales smoothly between mobile and desktop */
        line-height: 1.1;
    }

    /* Ensure Swiper doesn't overflow small screens */
    @media (max-width: 640px) {
        .creative-swiper {
            width: 180px !important;
            /* Smaller cards for small phones */
            height: 280px !important;
        }

        .section-padding {
            padding-top: 5rem;
            /* Better top clearance for mobile nav */
        }
    }

    /* White Theme Footer Fixes */
    .footer-light-version {
        background-color: #efe7b3 !important;
        color: #1a1a1a;
    }

    .footer-title {
        /* Mobile par 3rem, Desktop par 11rem tak scale hoga */
        font-size: clamp(3rem, 12vw, 11rem) !important;
        line-height: 0.9;
        font-family: 'Oswald', sans-serif;
        text-transform: uppercase;
        font-weight: 700;
    }

    /* Gradient text for white background */
    .footer-gradient-text {
        /* Soft Pastel Theme: Peach Pink to Light Lavender */
        background: linear-gradient(135deg, #FFC1CC 0%, #D4A5FF 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        display: inline-block;

        /* Bahut halka glow taaki text readable rahe */
        filter: drop-shadow(0px 2px 5px rgba(255, 193, 204, 0.2));
    }

    /* "Let's Talk" ke liye bhi ek light charcoal ya soft grey use karein */
    .footer-title-light {
        color: #4A4A4A;
        /* Pure black nahi, thoda soft grey */
        opacity: 0.8;
    }

    @media (max-width: 768px) {
        .footer-light-version {
            padding-top: 60px;
            padding-bottom: 40px;
        }
    }

    /* Saare slides by default colorful rahenge */
    .testimonial-swiper .swiper-slide:nth-child(4n+1) {
        background-color: #FFF0F3;
        border-color: #FFD6E0;
    }

    /* Light Pink */
    .testimonial-swiper .swiper-slide:nth-child(4n+2) {
        background-color: #F0F4FF;
        border-color: #D6E0FF;
    }

    /* Light Blue */
    .testimonial-swiper .swiper-slide:nth-child(4n+3) {
        background-color: #F5F0FF;
        border-color: #E0D6FF;
    }

    /* Light Purple */
    .testimonial-swiper .swiper-slide:nth-child(4n+4) {
        background-color: #FFF9F0;
        border-color: #FFE0B3;
    }

    /* Light Orange */

    /* Jo slide 'Active' (saamne) hogi, sirf wo White dikhegi */
    .testimonial-swiper .swiper-slide-active {
        background-color: #ffffff !important;
        border: 1px solid #f0f0f0 !important;
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1) !important;
    }

    /* Quote icons ka color slide ke according change karne ke liye */
    .testimonial-swiper .swiper-slide i {
        opacity: 0.6;
    }

    .testimonial-swiper .swiper-slide-active i {
        color: #FBB1BD;
        opacity: 1;
    }

    /* Enhanced Vibrant Theme Step Cards */
    .bg-light-pink {
        background: #FFE0E9;
        /* Thoda dark pink */
        color: #D6336C;
        /* Deep rose for icon */
        border: 1px solid #FFC2D1;
    }

    .bg-light-purple {
        background: #EBE4FF;
        /* Thoda dark lavender */
        color: #6741D9;
        /* Deep purple for icon */
        border: 1px solid #D1C4FF;
    }

    .bg-light-blue {
        background: #E0F2FF;
        /* Thoda dark sky blue */
        color: #1971C2;
        /* Deep ocean blue for icon */
        border: 1px solid #B6DFFF;
    }

    .bg-light-teal {
        background: #D3F9F1;
        /* Thoda dark mint */
        color: #088F81;
        /* Deep teal for icon */
        border: 1px solid #A9E9DE;
    }

    .step-number-light {
        /* Number ko thoda zyada visible karne ke liye opacity badha di hai */
        color: rgba(0, 0, 0, 0.08);
        font-size: 6rem;
        font-weight: 800;
        line-height: 1;
        transition: all 0.3s ease;
    }

    /* Hover effect ko thoda aur define kiya hai */
    .step-card-hover:hover .step-number-light {
        color: rgba(0, 0, 0, 0.12);
        transform: scale(1.05);
    }

    .step-card-hover:hover {
        border-color: rgba(0, 0, 0, 0.1);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
        background: white;
    }
