*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root{
    --gold: #594500;
}

.text-gold{
    color: var(--gold);
}

.bg-gold{
    background-color: var(--gold) !important;
}

.rounded-brand{
    border-radius: 20px;
}

.hero-section{
    min-height: 50vh;
    background-image: url("./new-bg.jpeg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-container{
    /* backdrop-filter: blur(5px); */
    min-height: 65vh;
    align-content: center;
}

.card-desc{
    font-size: 15px !important;
}

.hero-content{
    background-color: #fff8eab0;
    width: 100%;
    min-height: 65vh;
}

.bg-brand-light{
    background-color: #EFEAE6 !important;
}

.text-brand-light{
    color: #EFEAE6 !important;
}

.bars-para{
    display: none
}

.nav-bar-wrap div{
    display: flex;
    justify-content: center;
    text-align: center;
}

.nav-bar-wrap p:nth-child(1){
    text-align: center !important;
    width: 100% !important;
}

.call-hover-btn{
    position: fixed;
    bottom: 15px;
    right: 15px;
    /* width: 60px;
    height: 60px; */
    border-radius: 10px;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
}

.hero-para{
    color: #715b0f !important;
}

.overlfow-hidden{
    overflow: hidden;
}

/* .new-banners-wrap{
    position: relative;
    top: -60px;
} */

/* .banner-img{
    aspect-ratio: 1/1;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
} */

.new-banner{
    overflow: hidden;
}

/* .new-banner{
    background-image: url("/new-banner-2.jpeg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
} */

.new-banner-card{
    width: 300px;
}

.new-mob-banner-wrap{
    width: max-content;
}
.new-mob-banner-wrapper{
    overflow-x: auto;
}

.new-mob-banner-wrapper::-webkit-scrollbar{
    display: none;
}

@media screen and (width < 700px) {
    .bars-para{
        display: block
    }
    .nav-bar-wrap div{
        display: flex;
        justify-content: space-between;
        text-align: start;
    }
    .nav-bar-wrap p:nth-child(1){
        text-align: start !important;
        width: auto;
    }
    .hero-section{
        min-height: 40vh;
        background-image: url("./new-bg.jpeg");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
    
    .hero-container{
        min-height: 40vh;
        align-content: center;
    }
    
    .hero-content{
        min-height: 40vh;
    }
    .card-img{
        margin-left: 0px !important;
    }
    .left-img{
        padding-right: 0px !important;
    }
    .new-banners-wrap-desk{
        display: none;
    }

    .card-desc-scroll{
        height: 200px !important;
        overflow: auto;
    }

    .card-desc-scroll::-webkit-scrollbar{
        width: 3px;
        background-color: rgb(244, 244, 244);
        border-radius: 20px;
    }
    .card-desc-scroll::-webkit-scrollbar-thumb{
        background-color: lightgray;
        border-radius: 20px;
    }

}

@media screen and (width > 700px) {
    .new-mob-banner-wrapper{
        display: none !important;
    }
}











.service-popup-wrap{
    width: 100%;
    height: 100%;
    position: fixed;
    bottom: 0px;
    left: 0px;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px);
    display: none;
    align-items: end;
    justify-content: center;
    z-index: 9999;
}

.service-wrap{
    width: min(100%, 500px);
    background-color: #fff;
    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
    /* padding-bottom: 100px !important; */
    min-height: 50vh;
}

.pop-service-card{
    aspect-ratio: 1/1;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.cross-icon{
    cursor: pointer;
}

.pop-btn-wrap{
    position: absolute;
    width: 100%;
    bottom: 10px;
    left: 0px;
}

@keyframes btn-ani {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

.pop-btn{
    box-shadow: 0px 0px 20px rgba(255, 255, 255, 0.7);
    background-size: 400% 100%; /* Increased size for smooth animation */
    background-image: linear-gradient(110deg, rgba(253, 253, 253, 0) 20%, rgba(255, 255, 255, 0.4) 30%, rgba(253, 253, 253, 0) 60%);
    animation: btn-ani 3s linear infinite; /* Slower for better effect */
    border: 1px solid white;
    color: white;
    letter-spacing: -0.4px;
    background-color: var(--gold);
}

.fs-sm{
    font-size: 15px !important;
}