/* ===== GLOBAL STYLES ===== */


/* ===== SECTION HEADER ===== */
.services-section {
    text-align: center;
    padding: 60px 20px 40px;
}

.services-section h1 {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
}

.services-section .subtitle {
    color: #e2e8f0;
    font-size: 1rem;
    margin-bottom: 50px;
}

/* ===== CARD GRID ===== */
.service-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px 60px;
    box-sizing: border-box;
}

/* ===== CARD STYLE ===== */
.service-card {
    background-color: #fff;
    color: #222;
    border-radius: 14px;
    padding: 30px 25px;
    text-align: left;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* ===== ICON STYLE ===== */
.icon {
    font-size: 30px;
    color: #0a56c1;
    margin-bottom: 25px;
}

/* ===== HEADINGS & TEXT ===== */
.service-card h2 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0a56c1;
    margin-bottom: 12px;
}

.service-card p {
    color: #555;
    font-size: 0.95rem;
    margin-bottom: 15px;
    line-height: 1.6;
}

/* ===== LIST ===== */
.service-card ul {
    margin: 0;
    padding-left: 18px;
}

.service-card ul li {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #444;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablet screens */
@media (max-width: 1024px) {
    .services-section h1 {
        font-size: 2rem;
    }

    .service-card {
        padding: 25px;
    }
}

/* Mobile screens */
@media (max-width: 700px) {
    .services-section {
        padding: 40px 15px 30px;
    }

    .services-section h1 {
        font-size: 1.8rem;
    }

    .services-section .subtitle {
        font-size: 0.95rem;
        margin-bottom: 40px;
    }

    .service-card {
        padding: 20px;
    }

    .service-card h2 {
        font-size: 1.1rem;
    }

    .service-card p,
    .service-card ul li {
        font-size: 0.9rem;
    }
}

/* Small mobile (phones under 480px) */
@media (max-width: 480px) {
    .services-section h1 {
        font-size: 1.6rem;
    }

    .services-section .subtitle {
        font-size: 0.85rem;
    }

    .service-card {
        padding: 18px;
    }

    .icon {
        font-size: 26px;
    }
}
