.services-hero {
    position: relative;
    height: 25vh;
    background: url('/images/hero-image.jpg') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 10%;
    /* Ensure enough space on the left */
    padding-right: 10%;
    justify-content: space-between;
}

.services-text {
    max-width: 80%;
    /* Limit the width of the text block to mimic the provided image */
    color: white;
    /* Assuming white text for visibility */

}

/* --------------------- Service Section Start ----------------------------------- */
.service-section-list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f5f6f8;
    color: #333;
    padding: 70px;
    gap: 2em
}

.service-section-text h4 {
    color: #157ae0;
}

.service-section-text p {
    margin-top: 10px;
    width: 65%;
    margin-left: auto;
    margin-right: auto;
    color: #757575;
    line-height: 1.75;
}

.service-section-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.service-cards {
    background: #fff;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    text-align: center;
    padding-bottom: 40px;
}

.service-section-cards h5 {
    font-weight: 700;
    font-size: 1.25rem;
    margin-top: 10px;
    margin-bottom: 10px;
}

.service-section-cards p {
    font-weight: 300;
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    margin-top: 10px;
}

.learn-more {
    background-color: #007bff;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    font-size: 1rem;
    margin-top: 10px;
    display: inline-block;
}

.service-cards img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.blue-line {
    height: 2px;
    /* Thickness of the line */
    background-color: #007bff;
    /* Color of the line */
    width: 10%;
    /* Full width */
    margin: auto;
    /* Margin for spacing */

}


/* Media Query for Tablets */
@media (max-width: 768px) {
    .service-section-list {
        padding: 20px;
    }
}

/* Media Query for Mobile Devices */
@media (max-width: 480px) {

}