/* ── Sax Services Page Styles ───────────────────────────────── */

.sax-hero {
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    color: #fff;
    padding: 4rem 0;
}

.sax-hero h1 {
    font-weight: 800;
    letter-spacing: -0.5px;
}

.sax-service-card {
    border: none;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    overflow: hidden;
}

.sax-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(13, 110, 253, 0.18);
}

.sax-service-icon {
    font-size: 2.5rem;
    color: #0d6efd;
    margin-bottom: 1rem;
}

.sax-section-title {
    font-weight: 700;
    font-size: 2rem;
    position: relative;
    display: inline-block;
}

.sax-section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #0d6efd;
    border-radius: 2px;
    margin: 0.5rem auto 0;
}

@media (max-width: 768px) {
    .sax-hero {
        padding: 2.5rem 0;
    }

    .sax-hero h1 {
        font-size: 1.8rem;
    }
}
