 .services {
            padding: 100px 20px;
            background: rgba(0, 0, 0, 0.3);
        }

        .services-container {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        .services h2 {
            font-size: clamp(2.5rem, 4vw, 3.5rem);
            margin-bottom: 60px;
            font-weight: 700;
        }

        .services h2 .highlight {
            color: #4a90ff;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-bottom: 60px;
        }

        .service-card {
            background: radial-gradient(circle,rgba(34, 107, 242, 0.393) 0%, rgb(17, 17, 17) 90%, rgb(15, 15, 15) 100%);
            padding: 40px 30px;
            text-align: center;
            opacity: 0;
            animation: slideUp 0.8s ease forwards;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 30px 25px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            border-color: #4a8fff64;
        }


        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(122, 122, 122, 0.34), transparent);
            transition: left 0.6s ease;
        }

        .service-card:hover::before {
            left: 100%;
        }

        .service-card:hover {
            border-color: #4a90ff;
            box-shadow: 0 20px 40px rgba(60, 51, 234, 0.52);
        }

        .service-card:nth-child(1) { animation-delay: 0.2s; }
        .service-card:nth-child(2) { animation-delay: 0.4s; }
        .service-card:nth-child(3) { animation-delay: 0.6s; }



        .service-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #4a90ff, #6366f1);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 2rem;
        }

        .service-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: white;
        }

        .service-card p {
            opacity: 0.8;
            line-height: 1.6;
            margin-bottom: 20px;
            font-size: 18px;
        }

        .service-features {
            list-style: none;
            text-align: left;
        }

        .service-features li {
            padding: 5px 0;
            opacity: 0.7;
            font-size: 0.9rem;
        }

        .service-features li::before {
            content: '✓';
            color: #4a90ff;
            font-weight: bold;
            margin-right: 10px;
        }

        .view-all{
            display: inline-block;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            padding: 8px 20px;
            border-radius: 20px;
            color: #ffffff;
            font-size: 14px;
            font-weight: 500;
            margin-bottom: 20px;
            letter-spacing: 0.5px;
        }

       