body {
            box-sizing: border-box;
            font-family: 'DM Sans', sans-serif;
        }
        
        .font-heading {
            font-family: 'Space Grotesk', sans-serif;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        /* Glassmorphism effect */
        .glass {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        /* Gradient text */
        .gradient-text {
            background: linear-gradient(135deg, #1E40AF 0%, #60A5FA 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        /* Card animations */
        .hover-lift {
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        
        .hover-lift:hover {
            transform: translateY(-12px) scale(1.02);
        }
        
        /* Neon glow effect */
        .neon-glow {
            box-shadow: 0 0 20px rgba(96, 165, 250, 0.5);
        }
        
        .neon-glow:hover {
            box-shadow: 0 0 40px rgba(96, 165, 250, 0.8);
        }
        
        /* Custom scrollbar */
        ::-webkit-scrollbar {
            width: 10px;
        }
        
        ::-webkit-scrollbar-track {
            background: #f1f1f1;
        }
        
        ::-webkit-scrollbar-thumb {
            background: #1E40AF;
            border-radius: 5px;
        }
        
        /* Floating animation */
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }
        
        .float-animation {
            animation: float 3s ease-in-out infinite;
        }
        
        /* Pulse animation */
        @keyframes pulse-slow {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.8; transform: scale(1.05); }
        }
        
        .pulse-slow {
            animation: pulse-slow 3s ease-in-out infinite;
        }
        
        /* Hero slider */
        .hero-slider {
            display: flex;
            transition: transform 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
        }
        
        .hero-slide {
            min-width: 100%;
        }
        
        /* Slide in animations */
        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        .slide-in-left {
            animation: slideInLeft 0.8s ease-out forwards;
        }
        
        .slide-in-right {
            animation: slideInRight 0.8s ease-out forwards;
        }
        
        /* Modern button */
        .modern-btn {
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        
        .modern-btn::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;
        }
        
        .modern-btn:hover::before {
            left: 100%;
        }
        
        /* Testimonial card style */
        .testimonial-slider {
            display: flex;
            transition: transform 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
        }
        
        .testimonial-card {
            min-width: 100%;
            padding: 0 1rem;
        }
        
        /* Navbar style */
        .navbar-floating {
            background: rgba(255, 255, 255, 0.95);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        /* Toast */
        .toast {
            animation: slideInRight 0.4s ease-out;
        }
        
        @keyframes slideInRight {
            from {
                transform: translateX(100%);
                opacity: 0;
            }
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }
        
        /* Pricing active */
        .pricing-active {
            border: 3px solid #1E40AF;
            background: linear-gradient(135deg, rgba(30, 64, 175, 0.05), rgba(96, 165, 250, 0.05));
        }
        
        /* Icon rotate on hover */
        .icon-rotate {
            transition: transform 0.3s ease;
        }
        
        .icon-rotate:hover {
            transform: rotate(15deg) scale(1.1);
        }
        
        /* Zigzag pattern */
        .zigzag-bg {
            background-image: 
                linear-gradient(135deg, #f3f4f6 25%, transparent 25%),
                linear-gradient(225deg, #f3f4f6 25%, transparent 25%),
                linear-gradient(45deg, #f3f4f6 25%, transparent 25%),
                linear-gradient(315deg, #f3f4f6 25%, #ffffff 25%);
            background-position: 20px 0, 20px 0, 0 0, 0 0;
            background-size: 40px 40px;
            background-repeat: repeat;
        }
        
        /* Content page styles */
        .content-page {
            display: none;
        }
        
        .content-page.active {
            display: block;
        }
        
        .main-content.hidden {
            display: none;
        }