.hero-container {
    background-color: #fafafa;
    height: 400px;
}

.breadcrumb-container ul{
    display: flex;
    gap: 1em;
    color: white;
}

.breadcrumb-container li {
    list-style-type: none;
}

.text-container{
    background-color: #e2e2e2; 
    padding-top: 50px;

}

.text-content {
    width: 80%;
    margin: auto;
    text-align: center;
}



/*----------------------------- Service Section Starts ----------------------------> */
.service-section-container {
    padding: 50px; 
    background-color: #e2e2e2; 
}

.service-section-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 15px; 
    margin: auto; 
    width: 75%;
}

.service-section-card {
    background-color: #ffffff; 
    padding: 30px; 
    transition: transform 0.3s ease, box-shadow 0.5s ease; 
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1em;
}

.service-section-card h3 {
    font-weight: bolder;
    font-size: 25px;
    color: #BD2133;
}

.service-card-button {
    font-weight: bold;
    text-decoration: underline;
    color: black;
    margin-top: auto;
}

/*--------------------------- Mobile Optimization Start ---------------------------> */
@media (min-width: 1024px) and (max-width: 1436px) {
    .service-section-container {
        padding: 30px; 
    }

    .service-section-grid {
        grid-template-columns: repeat(2, 1fr); 
        width: 85%; 
    }
}

/* ------------------- Media Queries for Mobile Devices (up to 768px) --------------- */
@media (min-width: 768px) and (max-width: 1023px) {
    .service-section-container {
        padding: 20px; 
    }

    .service-section-grid {
        grid-template-columns: repeat(1, 1fr); 
        width: 100%; 
    }

    .service-section-card {
        padding: 20px; 
    }

    .service-section-card h3 {
        font-size: 20px; 
    }
}
@media (min-width: 400px) and (max-width: 768px) {
    .service-section-container {
        padding: 20px; 
    }

    .service-section-grid {
        grid-template-columns: repeat(1, 1fr); 
        width: 100%; 
    }

    .service-section-card {
        padding: 20px; 
    }

    .service-section-card h3 {
        font-size: 20px; 
    }
}