/* Service Pages Feature Section Styles */

/* About Section */
.service-feature-section {
    padding: 80px 0;
    background-color: #f8f8f8;
}

.service-feature-section .row {
    margin-bottom: 40px;
}

.service-feature-section .row:first-of-type {
    margin-top: 50px;
}

.service-feature-section .row:last-child {
    margin-bottom: 0;
}

.service-about-content {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
}

.service-about-text {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 25px;
    text-align: justify;
}

.service-about-text:last-child {
    margin-bottom: 0;
}

/* Feature Cards */
.service-feature-card {
    background: #fff;
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
    height: 100%;
}

/* Ensure proper column spacing */
.service-feature-section .col-xl-6,
.service-feature-section .col-lg-6 {
    margin-bottom: 30px;
}

.service-feature-wrapper {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.service-feature-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: #f0a732;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.service-feature-icon span {
    color: #fff;
    font-size: 24px;
}

.service-feature-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.service-feature-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin: 0;
    text-align: justify;
}

/* Call to Action Wrapper */
.service-cta-wrapper {
    margin-top: 50px;
}

.service-cta-btn {
    padding: 18px 45px;
    font-size: 16px;
    font-weight: 600;
}

/* Responsive Styles */
@media only screen and (max-width: 767px) {
    /* About Section */
    .service-feature-section {
        padding: 50px 0;
    }

    .service-feature-section .row {
        margin-bottom: 30px;
    }

    .service-about-content {
        padding: 25px 20px;
    }

    .service-about-text {
        font-size: 16px;
        line-height: 1.8;
        text-align: center;
        margin-bottom: 20px;
    }

    /* Feature Cards - Stack Icon on Top */
    .service-feature-card {
        padding: 25px 20px;
    }

    .service-feature-section .col-xl-6,
    .service-feature-section .col-lg-6 {
        margin-bottom: 20px;
    }

    .service-feature-section .col-xl-6:last-child,
    .service-feature-section .col-lg-6:last-child {
        margin-bottom: 0;
    }

    .service-feature-wrapper {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .service-feature-icon {
        margin-right: 0;
        margin-bottom: 20px;
        width: 60px;
        height: 60px;
    }

    .service-feature-icon span {
        font-size: 28px;
    }

    .service-feature-content h3 {
        font-size: 20px;
        margin-bottom: 12px;
        text-align: center;
    }

    .service-feature-content p {
        font-size: 16px;
        line-height: 1.7;
        text-align: center;
    }

    /* Call to Action */
    .service-cta-wrapper {
        margin-top: 30px;
    }

    .service-cta-btn {
        padding: 15px 35px;
        font-size: 15px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .service-feature-section .row {
        margin-bottom: 35px;
    }

    .service-about-content {
        padding: 30px 25px;
    }

    .service-feature-card {
        padding: 30px 25px;
    }

    .service-feature-section .col-xl-6,
    .service-feature-section .col-lg-6 {
        margin-bottom: 25px;
    }
}

