        :root {
            --primary-pink: #ff4081;
            --primary-purple: #9c27b0;
            --primary-blue: #2196f3;
            --primary-green: #4caf50;
            --primary-orange: #ff9800;
            --primary-red: #e91e63;
            --gradient-bg: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            --card-shadow: 0 10px 30px rgba(0,0,0,0.1);
            --text-dark: #2c3e50;
            --text-muted: #6c757d;
        }

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

        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #333;
        }

        .hero-section {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            min-height: 100vh;
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
            animation: float 20s infinite linear;
        }

        @keyframes float {
            0% { transform: translateY(0px) rotate(0deg); }
            100% { transform: translateY(-100px) rotate(360deg); }
        }

        /* Floating cards container */
        .floating-cards {
            position: absolute;
            top: 0; left: 0;
            width: 100%; height: 100%;
            overflow: hidden;
            z-index: 0; /* keeps them behind text */
            pointer-events: none; /* don't block clicks */
        }

        /* Each card image */
        .card-img {
            position: absolute;
            width: 120px; /* adjust for your design */
            border-radius: 10px;
            box-shadow: 0 8px 18px rgba(0,0,0,0.25);
            opacity: 0.20;
            animation: floatCard 25s linear infinite;
        }

        /* Randomize positions and delays */
        .card-img:nth-child(1) { top: 90%; left: 10%; animation-delay: 0s; width:100px; }
        .card-img:nth-child(2) { top: 95%; left: 30%; animation-delay: 6s; width:140px; }
        .card-img:nth-child(3) { top: 92%; left: 55%; animation-delay: 12s; width:120px; }
        .card-img:nth-child(4) { top: 98%; left: 75%; animation-delay: 18s; width:110px; }
        .card-img:nth-child(5) { top: 94%; left: 88%; animation-delay: 24s; width:130px; }

        @keyframes floatCard {
            0% {
                transform: translateY(0) rotate(0deg);
                opacity: 0.6;
            }
            50% {
                opacity: 1;
            }
            100% {
                transform: translateY(-120vh) rotate(360deg);
                opacity: 0;
            }
        }

        /* Updated Navigation Styles */
        .navbar {
            background: #2c3e50 !important;
            padding: 1rem 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }

        .navbar.scrolled {
            background: #1a252f !important;
            box-shadow: 0 2px 20px rgba(0,0,0,0.2);
        }

        .navbar-brand {
            font-size: 1.8rem;
            font-weight: bold;
            color: white !important;
        }

        .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            transition: all 0.3s ease;
            margin: 0 5px;
        }

        .nav-link:hover {
            color: var(--primary-pink) !important;
            transform: translateY(-2px);
        }

        .btn-get-started {
            background: linear-gradient(45deg, var(--primary-pink), var(--primary-red));
            color: white;
            padding: 10px 25px;
            border-radius: 50px;
            font-weight: bold;
            border: none;
            transition: all 0.3s ease;
            margin-left: 15px;
        }

        .btn-get-started:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(255, 64, 129, 0.3);
            color: white;
        }

        .hero-content {
            color: white;
            text-align: center;
            padding: 8rem 0 4rem;
            position: relative;
            z-index: 2;
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: bold;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .hero-subtitle {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .btn-custom {
            padding: 15px 30px;
            border-radius: 50px;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            border: none;
            margin: 0 10px;
        }

        .btn-primary-custom {
            background: linear-gradient(45deg, #ff4081, #e91e63);
            color: white;
        }

        .btn-secondary-custom {
            background: rgba(255,255,255,0.2);
            color: white;
            backdrop-filter: blur(10px);
        }

        .btn-custom:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 4rem;
        }

        .feature-card {
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 2rem;
            text-align: center;
            color: white;
            transition: all 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            background: rgba(255,255,255,0.2);
        }

        .feature-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
            color: #ff4081;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 1rem;
            color: var(--text-dark);
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.1rem;
            color: var(--text-muted);
            margin-bottom: 4rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        /* How It Works Section */
        .how-it-works {
            padding: 6rem 0;
            background: #f8f9ff;
        }

        .step-card {
            background: white;
            border-radius: 20px;
            padding: 3rem 2rem;
            text-align: center;
            box-shadow: var(--card-shadow);
            transition: all 0.3s ease;
            position: relative;
            margin-bottom: 2rem;
        }

        .step-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(0,0,0,0.15);
        }

        .step-number {
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 40px;
            height: 40px;
            background: var(--gradient-bg);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
        }

        .step-icon {
            font-size: 3rem;
            color: var(--primary-pink);
            margin-bottom: 1.5rem;
        }

        /* Updated Gallery Section with Tabs */
        .gallery-section {
            padding: 6rem 0;
            background: white;
        }

        .gallery-tabs {
            display: flex;
            justify-content: center;
            margin-bottom: 3rem;
            flex-wrap: wrap;
        }

        .gallery-tab {
            background: #f8f9fa;
            border: none;
            padding: 15px 30px;
            margin: 0 10px 10px;
            border-radius: 50px;
            font-weight: 600;
            color: var(--text-muted);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .gallery-tab.active,
        .gallery-tab:hover {
            background: var(--gradient-bg);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .gallery-tab i {
            margin-right: 8px;
        }

        .tab-content-gallery {
            display: none;
        }

        .tab-content-gallery.active {
            display: block;
        }

        .card-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .gallery-card {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--card-shadow);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .gallery-card:hover {
            transform: scale(1.05);
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }

        .gallery-card img {
            width: 100%;
            height: 250px;
            object-fit: cover;
        }

        .card-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0,0,0,0.8));
            color: white;
            padding: 2rem 1rem 1rem;
            text-align: center;
        }

        /* Card Sending Process */
        .sending-process {
            padding: 6rem 0;
            background: var(--gradient-bg);
            color: white;
        }

        .process-step {
            text-align: center;
            padding: 2rem;
        }

        .process-icon {
            width: 80px;
            height: 80px;
            background: rgba(255,255,255,0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin: 0 auto 1.5rem;
            backdrop-filter: blur(10px);
        }

        /* Services Section */
        .services-section {
            padding: 6rem 0;
            background: #f8f9ff;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .service-card {
            background: white;
            border-radius: 20px;
            padding: 2.5rem 2rem;
            text-align: center;
            box-shadow: var(--card-shadow);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-bg);
        }

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

        .service-icon {
            width: 80px;
            height: 80px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: white;
            margin: 0 auto 1.5rem;
        }

        /* Testimonials with Owl Carousel */
        .testimonial-section {
            padding: 6rem 0;
            background: #f8f9ff;
        }

        .testimonial-card {
            background: white;
            border-radius: 20px;
            padding: 2.5rem;
            box-shadow: var(--card-shadow);
            text-align: center;
            margin: 1rem;
            transition: all 0.3s ease;
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }

        .testimonial-avatar {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: var(--gradient-bg);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: white;
            margin: 0 auto 1.5rem;
        }

        .owl-nav button {
            background: var(--primary-pink) !important;
            color: white !important;
            border-radius: 50% !important;
            width: 50px !important;
            height: 50px !important;
            font-size: 18px !important;
        }

        .owl-dots .owl-dot span {
            background: var(--primary-pink) !important;
        }

        /* FAQ Section */
        .faq-section {
            padding: 6rem 0;
            background: white;
        }

        .faq-item {
            background: #f8f9ff;
            border-radius: 15px;
            margin-bottom: 1rem;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            box-shadow: var(--card-shadow);
        }

        .faq-question {
            background: none;
            border: none;
            padding: 1.5rem 2rem;
            width: 100%;
            text-align: left;
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--text-dark);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            color: var(--primary-pink);
        }

        .faq-answer {
            padding: 0 2rem 1.5rem;
            color: var(--text-muted);
            line-height: 1.6;
            display: none;
        }

        .faq-answer.active {
            display: block;
            animation: fadeInDown 0.3s ease;
        }

        .faq-icon {
            transition: transform 0.3s ease;
        }

        .faq-item.active .faq-icon {
            transform: rotate(180deg);
        }

        /* Pricing Section */
        .pricing-section {
            padding: 6rem 0;
            background: #f8f9ff;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .pricing-card {
            background: white;
            border-radius: 20px;
            padding: 3rem 2rem;
            text-align: center;
            box-shadow: var(--card-shadow);
            transition: all 0.3s ease;
            position: relative;
        }

        .pricing-card.featured {
            border: 3px solid var(--primary-pink);
            transform: scale(1.05);
        }

        .pricing-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 25px 50px rgba(0,0,0,0.15);
        }

        .price {
            font-size: 3rem;
            font-weight: bold;
            color: var(--primary-pink);
            margin: 1rem 0;
        }

        /* Contact Section */
        .contact-section {
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            padding: 6rem 0;
        }

        .contact-form {
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 3rem;
        }

        .contact-section .form-control {
            background: rgba(255,255,255,0.15);
            border: 1px solid rgba(255,255,255,0.3);
            border-radius: 10px;
            padding: 1rem;
            color: white !important;
            margin-bottom: 1rem;
        }

        .contact-section .form-control::placeholder {
            color: rgba(255,255,255,0.7) !important;
        }

        .contact-section .form-control:focus {
            background: rgba(255,255,255,0.25);
            border-color: var(--primary-pink);
            box-shadow: 0 0 0 0.2rem rgba(255,64,129,0.25);
            color: white !important;
        }
        
        .contact-section .form-control option {
            color: #2c3e50 !important;
            background: white !important;
        }

        /* Footer */
        .footer {
            background: #2c3e50;
            color: white;
            padding: 4rem 0 2rem;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.5rem;
        }

        .footer-links a {
            color: #bdc3c7;
            text-decoration: none;
            transition: color 0.3s ease;
        }

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

        .social-icons {
            display: flex;
            gap: 1rem;
        }

        .social-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--primary-pink);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-icon:hover {
            background: var(--primary-purple);
            transform: translateY(-3px);
            color: white;
        }

        /* Animations */
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .pulse {
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
            100% {
                transform: scale(1);
            }
        }

        /* Scroll Top Button */
        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--primary-pink);
            color: white;
            border-radius: 50%;
            text-decoration: none;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 999;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .scroll-top:hover {
            background: var(--primary-purple);
            transform: translateY(-5px);
            color: white;
        }

        .scroll-top.active {
            opacity: 1;
            visibility: visible;
        }

        .scroll-top i {
            font-size: 24px;
        }

        /* Text color utilities */
        .text-pink {
            color: var(--primary-pink);
        }

        .text-white-50 {
            color: rgba(255, 255, 255, 0.5);
        }

        /* Additional pricing card styles */
        .pricing-card.selected {
            border-color: var(--primary-pink) !important;
            transform: scale(1.05) !important;
            box-shadow: 0 25px 50px rgba(255, 64, 129, 0.3) !important;
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .btn-custom {
                margin: 5px;
                padding: 12px 24px;
            }

            .gallery-tabs {
                justify-content: center;
            }

            .gallery-tab {
                margin: 5px;
                padding: 10px 20px;
                font-size: 0.9rem;
            }

            .navbar-nav {
                text-align: center;
            }

            .btn-get-started {
                margin: 10px 0 0 0;
            }

            .scroll-top {
                bottom: 20px;
                right: 20px;
                width: 40px;
                height: 40px;
            }

            .scroll-top i {
                font-size: 20px;
            }
        }