/* ========================================= */
/*              SERVICES PAGE CSS            */
/* ========================================= */

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* ========================================= */
/*           OVERVIEW SECTION                */
/* ========================================= */

.services-overview {
    padding: 50px 20px 50px 20px;
    text-align: center;
    background: #ffffff;
    background: linear-gradient(135deg, #fff5e6, #ffe0d6);
}

.services-overview h1 {
    font-size: 42px;
    color: #c62828;
    margin-bottom: 12px;
}

.overview-subtext {
    color: #555;
    margin-bottom: 30px;
    font-size: 16px;
}

/* Cards Container */
.service-cards {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 30px;
    flex-wrap: wrap;
}

/* Individual Card */
.service-card {
    width: 300px;
    padding: 35px 25px;
    border-radius: 25px;
    background: #ffffff;
    box-shadow: 0 15px 35px rgba(229, 57, 53, 0.18);
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Card Content */
.service-card h3 {
    color: #c62828;
    margin-bottom: 15px;
}

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

.service-card span {
    font-weight: 600;
    color: #e53935;
}

/* Hover Effect */
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(229, 57, 53, 0.35);
}

/* ========================================= */
/*           DETAIL SECTIONS                 */
/* ========================================= */

/* Full width section */
.service-detail {
    padding: 50px 0;
    background: #ffffff;
}

/* Alternate Background */
.alt-bg {
    background: #fafafa;
}

/* Center inner content */
.detail-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Main Heading */
.service-detail h2 {
    font-size: 34px;
    color: #c62828;
    margin-bottom: 10px;
    text-align: center;
}



/* Paragraphs */
.service-detail p {
    font-size: 16px;
    color: #555;
    line-height: 1.9;
    margin-bottom: 35px;
    text-align: center;
}

/* Sub Headings */
.service-detail h3 {
    font-size: 22px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #c62828;
}

.service-detail h4 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #333;
}

/* Lists */
.service-detail ul {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.service-detail li {
    margin-bottom: 12px;
    font-size: 15px;
    color: #555;
    position: relative;
    padding-left: 28px;
    line-height: 1.7;
}

/* Check Icon */
.service-detail li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 2px;
    width: 20px;
    text-align: center;
    color: #e53935;
    font-weight: bold;
}

/* ========================================= */
/*               CTA BOX                     */
/* ========================================= */

.cta-box {
    margin-top: 70px;
    padding: 50px 30px;
    text-align: center;
    border-radius: 25px;
    background: #ffffff;
    box-shadow: 0 15px 35px rgba(229, 57, 53, 0.18);
}

.cta-box h3 {
    margin-bottom: 15px;
}

.cta-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 32px;
    background: linear-gradient(135deg, #ffb74d, #e53935);
    color: #ffffff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(229, 57, 53, 0.35);
}

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

@media (max-width: 1024px) {

    .services-overview h1 {
        font-size: 36px;
    }

    .service-detail h2 {
        font-size: 28px;
    }

    .service-card {
        width: 260px;
    }

    .service-detail {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {

    .services-overview h1 {
        font-size: 26px;
    }

    .overview-subtext {
        font-size: 14px;
        margin-bottom: 40px;
    }

    .service-cards {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .service-card {
        width: 100%;
        max-width: 340px;
        padding: 25px 20px;
    }

    .service-detail h2 {
        font-size: 22px;
    }

    .service-detail h3 {
        font-size: 18px;
    }

    .service-detail h4 {
        font-size: 16px;
    }

    .service-detail p {
        font-size: 15px;
    }

    .service-detail li {
        font-size: 14px;
        padding-left: 24px;
    }

    .cta-box {
        padding: 35px 20px;
        border-radius: 20px;
    }

    .cta-btn {
        padding: 12px 24px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {

    .services-overview h1 {
        font-size: 22px;
    }

    .overview-subtext {
        font-size: 13px;
    }

    .service-detail p {
        font-size: 14px;
    }

    .service-detail li {
        font-size: 13px;
        padding-left: 22px;
    }

    .cta-btn {
        width: 100%;
        max-width: 260px;
    }
}







