.services-section {
    background: linear-gradient(135deg, #f8faff 0%, #f1f4f9 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: linear-gradient(45deg, #4299e1, #667eea);
    border-radius: 50%;
    opacity: 0.1;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}
@media (max-width:991px){
    .section-header{
        margin-bottom: 30px;
    }
}
.section-subtitle {
    color: #4299e1;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-size: 1rem;
}

.section-title {
    color: #2d3748;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.section-description {
    color: #4a5568;
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0;
    background: linear-gradient(45deg, #4299e1, #667eea);
    transition: all 0.3s ease;
    opacity: 0;
    border-radius: 20px;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card:hover::before {
    height: 100%;
    opacity: 1;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: #e2e2e2;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: white;
}

.service-icon i {
    font-size: 28px;
    color: #4299e1;
    transition: all 0.3s ease;
}

.service-content {
    position: relative;
    z-index: 1;
}

.service-title {
    color: #2d3748;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.service-description {
    color: #4a5568;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.service-link {
    color: #4299e1;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.service-link i {
    margin-left: 8px;
    font-size: 14px;
}

.service-card:hover .service-title,
.service-card:hover .service-description,
.service-card:hover .service-link {
    color: white;
}

@media (max-width: 991.5px) {
    .service {
        margin-bottom: 30px;
    }
    .service:last-child{
        margin-bottom: 0;
    }
    .service-content{
        text-align: center;
    }
    .service-icon{
        margin: 0 auto 25px;
    }
}


