.navbar-brand-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 10px;
    display: inline-block;
}

.service-icon {
    font-size: 32px;
    color: #007bff;
    margin-bottom: 15px;
}

.banner_content {
    height: 270px;
    padding-top: 0px;
}

.service-box {
    background: #fff;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    text-align: center;
    height: 100%;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    transition: transform 0.3s ease;
    margin: 0;
}

.service-box:hover {
    transform: translateY(-8px);
}

.service-box.hidden {
    display: none;
}

.show-more-container {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.show-more-btn {
    padding: 12px 30px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.show-more-btn:hover {
    background-color: #0056b3;
}

@media (max-width: 576px) {
    .service-box {
        min-height: 240px;
        padding: 20px 15px;
        margin: 0 auto;
    }

    .show-more-btn {
        width: 90%;
        font-size: 14px;
        padding: 10px 20px;
    }

    .servicepage-section .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .servicepage-section .row {
        margin-left: 0;
        margin-right: 0;
        justify-content: center;
    }

    .servicepage-section [class*="col-"] {
        padding-left: 10px;
        padding-right: 10px;
        display: flex;
        justify-content: center;
    }

    .service_contentbox .row {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
}

.navbar-brand-mobile-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 10px;
    display: none;
}

@media (max-width: 991px) {
    .navbar-brand-mobile-image {
        display: inline-block;
    }

    .navbar-brand-image {
        display: none;
    }
}

@media (max-width: 776px) {
    .navbar-brand-mobile-image {
        display: none;
    }

    .navbar-brand-image {
        display: inline-block;
    }
}