 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        /* Services Section */
        .services-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #f8f9ff 0%, #e8f0ff 100%);
            position: relative;
        }
        
        .services-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="10" cy="10" r="1" fill="%23667eea" opacity="0.1"/><circle cx="90" cy="90" r="1" fill="%23764ba2" opacity="0.1"/><circle cx="50" cy="30" r="0.5" fill="%23667eea" opacity="0.15"/></svg>');
            pointer-events: none;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 80px;
            position: relative;
            z-index: 2;
        }
        
        .section-subtitle {
            color: #667eea;
            font-size: 1.1rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 15px;
            position: relative;
        }
        
        .section-subtitle::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, #667eea, #764ba2);
            border-radius: 2px;
        }
        
        .section-title {
            font-size: 3.2rem;
            font-weight: 800;
            color: #2d3748;
            margin-bottom: 20px;
            position: relative;
        }
        
        .section-description {
            font-size: 1.2rem;
            color: #666;
            max-width: 700px;
            margin: 0 auto;
            font-weight: 300;
        }
        
        /* Services Grid */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            margin-top: 60px;
            position: relative;
            z-index: 2;
        }
        
        /* Service Card */
        .service-card {
            background: white;
            border-radius: 20px;
            padding: 45px 35px;
            text-align: center;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(102, 126, 234, 0.1);
        }
        
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #667eea, #764ba2);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }
        
        .service-card:hover::before {
            transform: scaleX(1);
        }
        
        .service-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 25px 60px rgba(102, 126, 234, 0.15);
            border-color: rgba(102, 126, 234, 0.2);
        }
        
        .service-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 30px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.2rem;
            color: white;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }
        
        .service-icon::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(255,255,255,0.2), transparent);
            transform: translateX(-100%);
            transition: transform 0.4s ease;
        }
        
        .service-card:hover .service-icon::before {
            transform: translateX(100%);
        }
        
        .service-card:hover .service-icon {
            transform: scale(1.1) rotateY(10deg);
            box-shadow: 0 15px 35px rgba(102, 126, 234, 0.3);
        }
        
        .service-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: #2d3748;
            margin-bottom: 15px;
            transition: color 0.3s ease;
        }
        
        .service-card:hover .service-title {
            color: #667eea;
        }
        
        .service-description {
            color: #666;
            font-size: 1rem;
            line-height: 1.7;
            margin-bottom: 25px;
        }
        
        .service-features {
            list-style: none;
            text-align: left;
            margin-bottom: 30px;
        }
        
        .service-features li {
            color: #555;
            font-size: 0.95rem;
            margin-bottom: 8px;
            position: relative;
            padding-left: 25px;
        }
        
        .service-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #667eea;
            font-weight: bold;
            font-size: 1.1rem;
        }
        
        .service-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            padding: 12px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .service-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.6s ease;
        }
        
        .service-btn:hover::before {
            left: 100%;
        }
        
        .service-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
            color: white;
        }
        
        /* Floating Elements */
        .floating-shape {
            position: absolute;
            opacity: 0.1;
            animation: float 8s ease-in-out infinite;
            pointer-events: none;
        }
        
        .shape-1 {
            top: 10%;
            left: 5%;
            font-size: 3rem;
            color: #667eea;
            animation-delay: 0s;
        }
        
        .shape-2 {
            top: 20%;
            right: 8%;
            font-size: 2.5rem;
            color: #764ba2;
            animation-delay: 2s;
        }
        
        .shape-3 {
            bottom: 15%;
            left: 10%;
            font-size: 2rem;
            color: #667eea;
            animation-delay: 4s;
        }
        
        .shape-4 {
            bottom: 25%;
            right: 5%;
            font-size: 3.5rem;
            color: #764ba2;
            animation-delay: 6s;
        }
        
        /* Animations */
        @keyframes float {
            0%, 100% {
                transform: translateY(0px) rotate(0deg);
            }
            25% {
                transform: translateY(-20px) rotate(90deg);
            }
            50% {
                transform: translateY(-10px) rotate(180deg);
            }
            75% {
                transform: translateY(-30px) rotate(270deg);
            }
        }
        
        /* Stats Counter */
        .stats-section {
            padding: 60px 0;
            background: linear-gradient(135deg, #667eea, #764ba2);
            margin-top: 80px;
            position: relative;
            overflow: hidden;
        }
        
        .stats-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect width="2" height="2" x="10" y="10" fill="white" opacity="0.1"/><rect width="1" height="1" x="80" y="20" fill="white" opacity="0.15"/><rect width="1.5" height="1.5" x="30" y="80" fill="white" opacity="0.1"/></svg>');
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            position: relative;
            z-index: 2;
        }
        
        .stat-item {
            text-align: center;
            color: white;
        }
        
        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 10px;
            display: block;
        }
        
        .stat-label {
            font-size: 1.1rem;
            font-weight: 500;
            opacity: 0.9;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .services-section {
                padding: 60px 0;
            }
            
            .section-title {
                font-size: 2.5rem;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
                gap: 30px;
                margin-top: 40px;
            }
            
            .service-card {
                padding: 35px 25px;
            }
            
            .service-icon {
                width: 70px;
                height: 70px;
                font-size: 2rem;
            }
            
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
            }
            
            .stat-number {
                font-size: 2.5rem;
            }
        }
        
        @media (max-width: 576px) {
            .section-title {
                font-size: 2rem;
            }
            
            .service-card {
                margin: 0 15px;
            }
            
            .stats-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }
        }