/* Service Page Modern UI Styles */
.service-hero {
    background: linear-gradient(120deg, #f8fafc 60%, #e6f6f0 100%);
    padding: 60px 0 40px 0;
    position: relative;
    overflow: hidden;
}
.service-hero .service-badge {
    color: #00b87c;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: inline-block;
}
.service-hero .service-title {
    font-size: 2.7rem;
    font-weight: 800;
    color: #1a2340;
    margin-bottom: 10px;
}
.service-hero .service-desc {
    color: #4b5563;
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 500px;
}
.service-hero .service-btns .thm-btn {
    margin-right: 15px;
}
.service-hero .service-hero-img {
    max-width: 320px;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

.service-icons-bar {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    padding: 18px 30px;
    margin: -40px auto 40px auto;
    display: flex;
    justify-content: center;
    gap: 32px;
    max-width: 700px;
    position: relative;
    z-index: 2;
}
.service-icons-bar .icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.95rem;
    color: #1a2340;
    font-weight: 500;
}
.service-icons-bar .icon-item img {
    width: 36px;
    height: 36px;
    margin-bottom: 6px;
}

.service-section {
    padding: 60px 0 40px 0;
}
.service-section .service-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    padding: 32px 28px;
    margin-bottom: 32px;
    transition: box-shadow 0.2s;
}
.service-section .service-card:hover {
    box-shadow: 0 8px 32px rgba(0,184,124,0.10);
}
.service-section .service-card .service-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a2340;
    margin-bottom: 10px;
}
.service-section .service-card .service-card-desc {
    color: #4b5563;
    font-size: 1.05rem;
    margin-bottom: 18px;
}
.service-section .service-card .thm-btn {
    font-size: 0.98rem;
    padding: 7px 18px;
}

@media (max-width: 991px) {
    .service-hero {
        padding: 40px 0 20px 0;
    }
    .service-section {
        padding: 40px 0 20px 0;
    }
    .service-icons-bar {
        padding: 12px 10px;
        gap: 18px;
    }
}
