.services-main {
    background: #f8f9fa;
    padding: 40px 0;
    text-align: center;
}
.section-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 30px;
    color: #1a1a1a;
}
.services-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}
.service-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.07);
    padding: 30px 20px;
    width: 270px;
    transition: transform 0.2s;
}
.service-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}
.service-card i {
    margin-bottom: 15px;
}
.service-card h4 {
    margin: 15px 0 10px 0;
    font-size: 1.2rem;
    color: #222;
}
@media (max-width: 900px) {
    .services-list {
        flex-direction: column;
        align-items: center;
    }
    .service-card {
        width: 90%;
        max-width: 350px;
    }
}
/* --- Services Section --- */
.services-main {
    background: #f8f9fa;
    padding: 40px 0;
    text-align: center;
}
.section-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 30px;
    color: #1a1a1a;
}
.services-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}
.service-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.07);
    padding: 30px 20px;
    width: 100%;
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
    overflow: hidden;
    margin-bottom: 10px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.service-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}
.service-card::after {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    top: 100%;
    width: 140%;
    height: 60px;
    background: linear-gradient(90deg, #003498 0%, #00045a 100%);
    opacity: 0.08;
    border-radius: 50%;
    transform: translate(-50%, 0);
    transition: top 0.3s;
    z-index: 0;
}
.service-card:hover::after {
    top: 60%;
}
.service-card i {
    z-index: 1;
    position: relative;
    font-size: 2.5rem;
    color: #003498 !important;
    margin-bottom: 18px;
    transition: color 0.2s;
}
.service-card:hover i {
    color: #003498 !important;
}
.service-card h4 {
    font-weight: bold;
    letter-spacing: 1px;
    z-index: 1;
    position: relative;
    margin: 15px 0 10px 0;
    font-size: 1.2rem;
    color: #222;
}
.service-card p {
    color: #444;
    font-size: 1rem;
    z-index: 1;
    position: relative;
    margin-bottom: 0;
}

/* --- Responsive Design --- */
@media (max-width: 900px) {
    .services-list {
        flex-direction: column;
        align-items: center;
    }
    .service-card {
        width: 90%;
        max-width: 350px;
    }
}
@media (max-width: 600px) {
    .services-main {
        padding: 20px 0;
    }
    .service-card {
        padding: 18px 8px;
        font-size: 0.98rem;
    }
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

}