.services-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.section-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(45deg, #2196F3, #00BCD4);
    margin-bottom: 2rem;
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, #2196F3, #00BCD4);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.card-icon i {
    font-size: 2rem;
    color: white;
}

.service-card:hover .card-icon {
    transform: scale(1.1) rotate(-5deg);
}

/* .service-card:hover .card-content h3 {
    color: #fff;
} */

.card-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2196F3;
    margin-bottom: 1rem;
}

.card-content p {
    color: #6c757d;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-link {
    color: #2196F3;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    font-weight: 500;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: #2196F3;
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .service-card {
        padding: 1.5rem;
    }
}