.services-banner h1 {
    color: #0d536e;
    text-align: center;
    font-size: 35px !important;
    text-transform: capitalize !important;
    background-color: rgba(255, 255, 255, 0.5);

}


.services-grid {
    margin-top: 10px;
}

.service-box {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #ffffff;
    padding: 18px 20px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.25s ease;
    height: 100%;
}

.service-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

.service-dot {
    width: 10px;
    height: 10px;
    margin-top: 8px;
    background-color: #2d6335;
    /* Mallige green */
    border-radius: 50%;
    flex-shrink: 0;
}

.service-box .ser-name {
    line-height: 1.6;
}



@media only screen and (max-width:760px) {
    .services-banner h1 {
        color: #0d536e;
        text-align: center;
        font-size: 20px !important;

    }

    .mn-heading11 {
        font-size: 18px !important;
    }

    .mn-heading21 {
        font-family: "Jost", sans-serif;
        font-size: 18px;
    }

}