   body {
            box-sizing: border-box;
            font-family: 'Inter', sans-serif;
        }
        
        .font-poppins { 
            font-family: 'Poppins', sans-serif; 
        }
        
        /* Hero gradient background */
        .hero-gradient {
            background: linear-gradient(135deg, #1D4ED8 0%, #22D3EE 100%);
            position: relative;
            overflow: hidden;
        }
        
        /* Floating shapes animation */
        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(5deg); }
        }
        
        .floating-shape {
            position: absolute;
            opacity: 0.1;
            animation: float 6s ease-in-out infinite;
        }
        
        .floating-shape:nth-child(2) { animation-delay: 2s; }
        .floating-shape:nth-child(3) { animation-delay: 4s; }
        
        /* Card hover effects */
        .deal-card {
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .deal-card:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 20px 40px rgba(29, 78, 216, 0.15);
        }
        
        /* Button animations */
        .btn-primary {
            background: linear-gradient(135deg, #1D4ED8, #1E40AF);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .btn-primary:hover {
            background: linear-gradient(135deg, #1E40AF, #1E3A8A);
            box-shadow: 0 10px 25px rgba(29, 78, 216, 0.4);
            transform: translateY(-2px);
        }
        
        .btn-primary::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }
        
        .btn-primary:hover::before {
            width: 300px;
            height: 300px;
        }
        
        .btn-secondary {
            background: linear-gradient(135deg, #22D3EE, #06B6D4);
            transition: all 0.3s ease;
        }
        
        .btn-secondary:hover {
            background: linear-gradient(135deg, #06B6D4, #0891B2);
            box-shadow: 0 10px 25px rgba(34, 211, 238, 0.4);
            transform: translateY(-2px);
        }
        
        /* Marquee animation */
        @keyframes marquee {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
        
        .marquee-content {
            display: flex;
            animation: marquee 30s linear infinite;
        }
        
        .marquee-item {
            flex-shrink: 0;
            padding: 0 3rem;
            font-weight: 600;
            font-size: 1.25rem;
        }
        
        /* Fade in animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .fade-in-up {
            animation: fadeInUp 0.8s ease-out forwards;
        }
        
        .delay-1 { animation-delay: 0.2s; opacity: 0; }
        .delay-2 { animation-delay: 0.4s; opacity: 0; }
        .delay-3 { animation-delay: 0.6s; opacity: 0; }
        .delay-4 { animation-delay: 0.8s; opacity: 0; }
        
        /* Ribbon effect */
        .ribbon {
            position: absolute;
            top: 10px;
            right: -5px;
            background: linear-gradient(135deg, #EF4444, #DC2626);
            color: white;
            padding: 0.25rem 0.75rem;
            font-size: 0.75rem;
            font-weight: 600;
            box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
            z-index: 10;
        }
        
        .ribbon::before {
            content: '';
            position: absolute;
            bottom: -5px;
            right: 0;
            border-left: 5px solid #991B1B;
            border-bottom: 5px solid transparent;
        }
        
        /* Copy button effect */
        .copy-btn {
            transition: all 0.3s ease;
        }
        
        .copy-btn:hover {
            background: #1D4ED8;
            color: white;
            transform: scale(1.05);
        }
        
        .copy-btn.copied {
            background: #10B981;
            color: white;
        }
        
        /* Testimonial slider */
        .testimonial-slider {
            display: flex;
            transition: transform 0.5s ease;
        }
        
        .testimonial-card {
            min-width: 100%;
            padding: 0 1rem;
        }
        
        /* Navbar scroll effect */
        .navbar-scrolled {
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }
        
        /* Glow effect */
        .glow {
            box-shadow: 0 0 20px rgba(34, 211, 238, 0.5);
        }
        
        /* Feature card animation */
        .feature-card {
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(29, 78, 216, 0.15);
        }
        
        .feature-card:hover .feature-icon {
            transform: scale(1.1) rotate(5deg);
        }
        
        .feature-icon {
            transition: transform 0.4s ease;
        }
        
        /* Blog card hover */
        .blog-card {
            transition: all 0.3s ease;
            overflow: hidden;
        }
        
        .blog-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }
        
        .blog-card img {
            transition: transform 0.5s ease;
        }
        
        .blog-card:hover img {
            transform: scale(1.1);
        }
        
        /* Star rating */
        .star-rating {
            color: #FBBF24;
        }
        
        /* Pulse animation for notification badge */
        @keyframes pulse {
            0%, 100% {
                opacity: 1;
            }
            50% {
                opacity: 0.5;
            }
        }
        
        .pulse {
            animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
        }
        
        /* Modal backdrop */
        .modal-backdrop {
            backdrop-filter: blur(5px);
            animation: fadeIn 0.3s ease;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .marquee-item {
                padding: 0 1.5rem;
                font-size: 1rem;
            }
            
            .hero-gradient {
                min-height: 80%;
            }
        }
        
        @media (max-width: 640px) {
            .deal-card:hover {
                transform: translateY(-5px) scale(1.01);
            }
            
            .feature-card:hover {
                transform: translateY(-5px);
            }
        }
    