/* Dedicated styles for service detail pages */

.service-detail-body {
    background-color: #ffffff;
}

.service-detail-main {
    width: 100%;
    height: auto;
    padding: 5%;
    background-color: #ffffff;
}

.service-detail-container {
    /* max-width: 1100px; */
    width: 100%;
    height: auto;
}

.service-intro {
    color: #333;
    font-size: clamp(1rem, 1.2vw, 1.2rem);
    line-height: 1.8;
    text-align: center;
    margin-bottom: 2.5rem;
    letter-spacing: 0.6px;
}

.service-overview {
    border-radius: 24px;
    background-color: #f9f9f9;
    padding: 2.5rem 2rem;
}

.service-overview .about-heading {
    margin-bottom: 1.5rem;
}

.service-overview .about-para {
    margin: 0;
    text-align: justify;
}

.what-we-offer.service-detail-main-offer {
    background-color: #f3f3f3;
}


.service-key-heading {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    text-align: left;
}

.service-key-card {
    background-color: #ffffff;
    /* box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.1); */
    border: 1px solid #e0e0e0;
    padding: 1.75rem 1.5rem;
    border-radius: 18px;
}
.service-key-card:hover {
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.1);
}

.service-key-icon i {
    font-size: 1.8rem;
    color: #eb6029;
}

.service-key-title {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.service-key-desc {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
}

.service-work-card {
    background-color: #f9f9f9;
    border-radius: 18px;
    padding: 1.75rem 1.25rem;
    text-align: center;
    height: 100%;
}

.service-work-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    background-color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.service-work-icon i {
    color: #eb6029;
    font-size: 1.6rem;
}

.service-work-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.service-work-card p {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 0.75rem;
}

.service-work-card .work-step {
    margin-top: 0.25rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

.service-benefits {
    margin-top: 3rem;
}

.service-benefits-list {
    list-style: disc;
    padding-left: 1.5rem;
}

.service-benefits-list li {
    margin-bottom: 0.5rem;
}

.service-cta-block {
    padding: 3rem 2rem;
    border-radius: 24px;
    background-color: #f3f3f3;
}

.service-cta-block .about-para {
    margin-bottom: 1.2rem;
}

/* @media (max-width: 767.98px) {
    .service-detail-main {
        padding: 10% 0;
    }

    .service-overview {
        padding: 1.5rem 1.25rem;
    }

    .service-cta-block {
        padding: 2rem 1.25rem;
    }
} */

