.services {
    padding: 120px 0;
    background: linear-gradient(135deg, 
        rgba(13, 17, 23, 0.95) 0%,
        rgba(23, 36, 64, 0.95) 50%,
        rgba(13, 17, 23, 0.95) 100%);
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.services__title {
    text-align: center;
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 80px;
    position: relative;
}

.services__title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #0F75BB;
    border-radius: 2px;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle at 50% 0%, 
        rgba(15, 117, 187, 0.1),
        transparent 70%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card__icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(15, 117, 187, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.service-card__icon {
    width: 40px;
    height: 40px;
    color: #0F75BB;
    position: relative;
    z-index: 1;
}

.service-card__title {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 20px;
}

.service-card__description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .services {
        padding: 80px 0;
    }

    .services__title {
        font-size: 2rem;
        margin-bottom: 60px;
    }

    .services__grid {
        grid-template-columns: 1fr;
    }
}