.hero-image {
    /*background-image: url('../images/home.jpg');*/
    background-image: linear-gradient(to bottom, rgb(0 0 0 / 24%), rgba(0, 0, 0, 0)), url(../images/home.jpg);
    url('../images/home.jpg');
    background-size: cover;
    background-position: bottom;
    height: 100vh; /* Full height */
    color: white;
    background-attachment: fixed;
}
.hero-text {
    text-align: center;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -20%);
    bottom: 20%;
    width: 100%;
}
.services{
    margin-top: -100px;
}
.service-card{
    padding: 20px;
    text-align: center;
}
.service-card p{
    margin-top: 10px;
}
.logo{
    background-color: var(--primary-light) !important;
    padding-left: 5px;
    padding-right: 5px;
    margin-bottom: 2px;
    border-radius: 10px;
}
.ourMeetImg{
    max-height: 350px;
    width: auto;
}
.aboutUsImage{
    width: 100%;
    padding: 50px;
}
@media only screen and (max-width: 600px) {
    .navbar{
        display: block;
        text-align: center;
    }
    .logo{
        text-align: center;
        margin-right: 0!important;
    }
    .hero-text h1{
        font-size: 35px;
    }
    .hero-image {
        /*background-image: url('../images/home-mobile.jpg');*/
        background-image: linear-gradient(to bottom, rgb(0 0 0 / 24%), rgba(0, 0, 0, 0)), url(../images/home-mobile.jpg);
    }
    .aboutUsImage{
        padding: 0;
    }
    .d-none-mobile{
        display: none;
    }
    .d-block-mobile{
        display: initial!important;
    }
    .ourMeetImg{
        max-height: initial;
        width: 100%;
    }
}
