        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        /* Bright Color Palette */
        :root {
            --primary-blue: #007BFF;
            --primary-blue-light: #00D4FF;
            --secondary-orange: #FF6B35;
            --secondary-orange-light: #FF8C42;
            --accent-green: #00FF88;
            --accent-green-light: #32CD32;
            --highlight-purple: #8A2BE2;
            --highlight-purple-light: #9932CC;
        }
        
        /* Hero Slider Styles */
        .hero-slider {
            position: relative;
            height: 100vh;
            overflow: hidden;
        }
        
        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease-in-out;
            background-size: cover;
            background-position: center;
        }
        
        .slide.active {
            opacity: 1;
        }
        
        .slide-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(0, 123, 255, 0.8), rgba(255, 107, 53, 0.8));
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .slider-nav {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 15px;
            z-index: 10;
        }
        
        .nav-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .nav-dot.active {
            background: var(--accent-green);
            transform: scale(1.2);
        }
        
        .slider-arrows {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0, 123, 255, 0.8);
            color: white;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
        }
        
        .slider-arrows:hover {
            background: var(--secondary-orange);
            transform: translateY(-50%) scale(1.1);
        }
        
        .prev-arrow {
            left: 30px;
        }
        
        .next-arrow {
            right: 30px;
        }
        
        /* Gradient Backgrounds */
        .gradient-bg-1 {
            background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-light));
        }
        
        .gradient-bg-2 {
            background: linear-gradient(135deg, var(--secondary-orange), var(--secondary-orange-light));
        }
        
        .gradient-bg-3 {
            background: linear-gradient(135deg, var(--accent-green), var(--accent-green-light));
        }
        
        .gradient-bg-4 {
            background: linear-gradient(135deg, var(--highlight-purple), var(--highlight-purple-light));
        }
        
        /* Service Cards */
        .service-card {
            background: white;
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-blue), var(--secondary-orange), var(--accent-green), var(--highlight-purple));
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
        }
        
        /* Animated Counter */
        .counter {
            font-size: 3rem;
            font-weight: 800;
            color: var(--primary-blue);
        }
        
        /* CTA Buttons */
        .cta-btn {
            background: linear-gradient(135deg, var(--secondary-orange), var(--secondary-orange-light));
            color: white;
            padding: 15px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
        }
        
        .cta-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
            color: white;
        }
        
        .cta-btn-secondary {
            background: linear-gradient(135deg, var(--accent-green), var(--accent-green-light));
            box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
        }
        
        .cta-btn-secondary:hover {
            box-shadow: 0 15px 40px rgba(0, 255, 136, 0.4);
        }
        
        /* WhatsApp Button */
        .whatsapp-btn {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: #25D366;
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            z-index: 1000;
            animation: pulse 2s infinite;
            box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.1); }
            100% { transform: scale(1); }
        }
        
        /* Portfolio Grid */
        .portfolio-item {
            position: relative;
            overflow: hidden;
            border-radius: 15px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .portfolio-item:hover {
            transform: scale(1.05);
        }
        
        .portfolio-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(0, 123, 255, 0.9), rgba(255, 107, 53, 0.9));
            opacity: 0;
            transition: opacity 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 600;
        }
        
        .portfolio-item:hover .portfolio-overlay {
            opacity: 1;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .hero-slider {
                height: 70vh;
            }
            
            .slider-arrows {
                width: 40px;
                height: 40px;
            }
            
            .prev-arrow {
                left: 15px;
            }
            
            .next-arrow {
                right: 15px;
            }
            
            .counter {
                font-size: 2rem;
            }
        }
        
        /* Form Styles */
        .form-input {
            width: 100%;
            padding: 15px;
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            font-size: 16px;
            transition: all 0.3s ease;
        }
        
        .form-input:focus {
            border-color: var(--primary-blue);
            outline: none;
            box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
        }
        
        /* Team Card */
        .team-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }
        
        .team-card:hover {
            transform: translateY(-10px);
        }
   