.services {
        position: relative;
        padding: 8rem 2rem;
        background: #000000;
        overflow: hidden;
    }

    .services-container {
        max-width: 1400px;
        margin: 0 auto;
    }

    .section-header {
        text-align: center;
        margin-bottom: 5rem;
        animation: fadeInUp 1s ease-out;
    }

    .section-label {
        display: inline-block;
        color: #1E73BE;
        font-size: 0.9rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 1rem;
        position: relative;
    }

    .section-label::before,
    .section-label::after {
        content: '';
        position: absolute;
        top: 50%;
        width: 40px;
        height: 2px;
        background: linear-gradient(90deg, #1E73BE, transparent);
    }

    .section-label::before {
        right: calc(100% + 15px);
    }

    .section-label::after {
        left: calc(100% + 15px);
        background: linear-gradient(90deg, transparent, #1E73BE);
    }

    .section-title {
        font-size: 3rem;
        font-weight: 700;
        color: #FFFFFF;
        margin-bottom: 1.5rem;
        line-height: 1.2;
    }

    .section-title-gradient {
        background: linear-gradient(135deg, #1E73BE, #00C2A0);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .section-description {
        font-size: 1.2rem;
        color: #B0B0B0;
        max-width: 700px;
        margin: 0 auto;
        line-height: 1.6;
    }

    .services-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 2rem;
        margin-top: 4rem;
    }

    .service-card {
        position: relative;
        background: linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(15, 15, 15, 0.8));
        border: 1px solid rgba(30, 115, 190, 0.2);
        border-radius: 20px;
        padding: 3rem 2.5rem;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        overflow: hidden;
        backdrop-filter: blur(10px);
    }

    .service-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #1E73BE, #00C2A0);
        transform: scaleX(0);
        transition: transform 0.4s ease;
    }

    .service-card:hover::before {
        transform: scaleX(1);
    }

    .service-card:hover {
        transform: translateY(-10px);
        border-color: rgba(30, 115, 190, 0.5);
        box-shadow: 0 20px 60px rgba(30, 115, 190, 0.2);
    }

    .service-icon {
        width: 70px;
        height: 70px;
        background: linear-gradient(135deg, rgba(30, 115, 190, 0.2), rgba(0, 194, 160, 0.2));
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 2rem;
        transition: all 0.4s ease;
        position: relative;
    }

    .service-icon::before {
        content: '';
        position: absolute;
        inset: -2px;
        background: linear-gradient(135deg, #1E73BE, #00C2A0);
        border-radius: 18px;
        opacity: 0;
        transition: opacity 0.4s ease;
        z-index: -1;
    }

    .service-card:hover .service-icon::before {
        opacity: 0.3;
    }

    .service-card:hover .service-icon {
        transform: scale(1.1) rotate(5deg);
    }

    .service-icon svg {
        width: 35px;
        height: 35px;
        stroke: #1E73BE;
        fill: none;
        stroke-width: 2;
        transition: all 0.3s ease;
    }

    .service-card:hover .service-icon svg {
        stroke: #00C2A0;
    }

    .service-title {
        font-size: 1.5rem;
        font-weight: 600;
        color: #FFFFFF;
        margin-bottom: 1rem;
    }

    .service-description {
        font-size: 1rem;
        color: #B0B0B0;
        line-height: 1.7;
        margin-bottom: 2rem;
    }

    .service-features {
        list-style: none;
        padding: 0;
        margin-bottom: 2rem;
    }

    .service-features li {
        color: #E0E0E0;
        font-size: 0.95rem;
        padding: 0.5rem 0;
        padding-left: 1.8rem;
        position: relative;
    }

    .service-features li::before {
        content: '✓';
        position: absolute;
        left: 0;
        color: #00C2A0;
        font-weight: 700;
    }

    .service-link {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        color: #1E73BE;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
    }

    .service-link:hover {
        color: #00C2A0;
        gap: 0.8rem;
    }

    .btn-all-services {
        display: inline-flex;
        align-items: center;
        background: linear-gradient(135deg, #1E73BE 0%, #1590D1 100%);
        color: #FFFFFF;
        padding: 1rem 2.5rem;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        font-size: 1.1rem;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 10px 30px rgba(30, 115, 190, 0.3);
        position: relative;
        overflow: hidden;
    }

    .btn-all-services::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;
    }

    .btn-all-services:hover::before {
        left: 100%;
    }

    .btn-all-services:hover {
        transform: translateY(-3px) scale(1.05);
        box-shadow: 0 15px 40px rgba(30, 115, 190, 0.5);
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .services {
            padding: 5rem 1.5rem;
        }

        .section-title {
            font-size: 2rem;
        }

        .section-description {
            font-size: 1rem;
        }

        .services-grid {
            grid-template-columns: 1fr;
        }

        .section-label::before,
        .section-label::after {
            display: none;
        }
    }