 .hero-bg {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }
        .section-bg {
            background: linear-gradient(45deg, #f8fafc 0%, #e2e8f0 100%);
        }
        .card-hover {
            transition: all 0.3s ease;
        }
        .card-hover:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
        }
        .nav-link {
            transition: all 0.3s ease;
        }
        .nav-link:hover {
            color: #667eea;
        }


      
 /* Simple Clean Background */
        .hero-gradient {
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
            position: relative;
            overflow: hidden;
            min-height: 100vh;
        }
        
        .hero-gradient::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 70%;
            height: 100%;
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(16, 185, 129, 0.05) 100%);
            clip-path: polygon(30% 0%, 100% 0%, 100% 100%, 0% 100%);
            z-index: 1;
        }
        
        .content-wrapper {
            position: relative;
            z-index: 2;
        }
        
        /* Text Animations - Slide from Left */
        .animate-text-left {
            opacity: 0;
            transform: translateX(-50px);
            animation: slideInLeft 0.8s ease-out forwards;
        }
        
        .animate-text-left:nth-child(1) { animation-delay: 0.3s; }
        .animate-text-left:nth-child(2) { animation-delay: 0.6s; }
        .animate-text-left:nth-child(3) { animation-delay: 2.5s; }
        .animate-text-left:nth-child(4) { animation-delay: 3.2s; }
        .animate-text-left:nth-child(5) { animation-delay: 3.8s; }
        
        @keyframes slideInLeft {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        /* Typewriter Effect for Main Heading */
        .typewriter {
            overflow: hidden;
            white-space: nowrap;
            margin: 0 auto;
            animation: 
                typing 2s steps(40, end) 0.8s forwards,
                blink-caret 0.75s step-end infinite;
            width: 0;
        }
        
        @keyframes typing {
            from { width: 0; }
            to { width: 100%; }
        }
        
        @keyframes blink-caret {
            from, to { border-color: transparent; }
            50% { border-color: #2563eb; }
        }
        
        .typewriter-line2 {
            opacity: 0;
            animation: fadeInUp 0.6s ease-out 2.8s forwards;
        }
        
        .typewriter-line3 {
            opacity: 0;
            animation: fadeInUp 0.6s ease-out 3.2s forwards;
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Floating Animation for Gears */
        .floating-gear {
            animation: float 3s ease-in-out infinite;
        }
        
        .floating-gear:nth-child(2) {
            animation-delay: -1s;
        }
        
        .floating-gear:nth-child(3) {
            animation-delay: -2s;
        }
        
        @keyframes float {
            0%, 100% { 
                transform: translateY(0px) rotate(0deg); 
            }
            50% { 
                transform: translateY(-20px) rotate(180deg); 
            }
        }
        
        /* Image Animation - Slide from Right */
        .animate-image-right {
            opacity: 0;
            transform: translateX(100px) scale(0.8);
            animation: slideInRight 1.2s ease-out 1s forwards;
        }
        
        @keyframes slideInRight {
            to {
                opacity: 1;
                transform: translateX(0) scale(1);
            }
        }
        
        /* Button Hover Effects */
        .btn-primary {
            background: #2563eb;
            transition: all 0.3s ease;
        }
        
        .btn-primary:hover {
            background: #1d4ed8;
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(37, 99, 235, 0.4);
        }
        
        .btn-secondary {
            background: transparent;
            border: 2px solid #374151;
            color: #374151;
            transition: all 0.3s ease;
        }
        
        .btn-secondary:hover {
            background: #374151;
            color: white;
            transform: translateY(-2px);
        }
        
        /* Text Glow Effect */
        .text-glow {
            text-shadow: 0 0 20px rgba(37, 99, 235, 0.3);
        }
        
        /* Glassmorphism Effect */
        .glass-card {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.3);
        }
        
        /* Responsive Typography */
        @media (max-width: 768px) {
            .hero-gradient::before {
                width: 80%;
                clip-path: polygon(40% 0%, 100% 0%, 100% 100%, 0% 100%);
            }
        }
        
        /* Pulse Animation for Logo */
        .pulse-logo {
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
                opacity: 1;
            }
            50% {
                transform: scale(1.05);
                opacity: 0.9;
            }
        }








                .voice-btn {
            transition: all 0.3s ease;
        }
        
        .voice-btn:hover {
            transform: scale(1.05);
        }
        
        .recording {
            animation: pulse 1.5s infinite;
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.1); }
            100% { transform: scale(1); }
        }
        
        .whatsapp-btn {
            background: linear-gradient(45deg, #25D366, #128C7E);
            box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
        }
        
        .whatsapp-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
        }



         .service-card:hover {
            transform: translateY(-5px);
            transition: all 0.3s ease;
        }
        
        .hero-bg {
            background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><style>.cls-1{fill:%23f8fafc;}.cls-2{fill:%233b82f6;opacity:0.1;}.cls-3{fill:%236366f1;opacity:0.05;}</style></defs><circle class="cls-2" cx="150" cy="100" r="40"/><circle class="cls-3" cx="900" cy="150" r="60"/><circle class="cls-2" cx="1000" cy="400" r="35"/><circle class="cls-3" cx="200" cy="500" r="45"/><path class="cls-2" d="M400,200 Q500,150 600,200 T800,200" stroke="%233b82f6" stroke-width="2" fill="none" opacity="0.2"/></svg>');
            background-size: cover;
            background-position: center;
        }
        
        .pattern-bg {
            background-image: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%233b82f6" fill-opacity="0.05"><circle cx="30" cy="30" r="2"/></g></svg>');
        }



   
        .highlight-box {
            background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
        }
        
        .terms-section {
            scroll-margin-top: 100px;
        }
        
        .floating-nav {
            backdrop-filter: blur(10px);
            background: rgba(255, 255, 255, 0.95);
        }