
.banner-sec{
    width: 100%;
    height: 90vh;
    background-size: cover;
}

.bannerstyle img{
    width: 100%;
    margin-top: -50px;
    padding: 0;
    border: none;
}

.packages{
    background-color: #FCFAEE;
}

.banner-sec .bannertext{
    width: 100%;
    height: 95%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
}

.categories-text h3{
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
}
.banner-sec .bannertext h2{
    font-weight: 700;
    color: white;
}
.category-box{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    margin: 10px 0px 50px 0px;
    overflow: auto;
}
.category-box button{
    background-color: orange;
    color: rgb(9, 52, 9);
    font-weight: 600;
    border: 2px solid rgb(24, 62, 24);
    padding: 10px 25px;
    border-radius: 5px;
}

.categories-package-text h3{
    margin: 20px auto 10px;
    text-align: center; 
    font-weight: 700;
    color: #333;
}

@media (max-width: 576px) {
   
    .banner-sec {
        height: 30vh;
    }
    .bannerstyle img {
        width: 100%;
        height: 50px;
        margin-top: -20px;
    }
    .category-box{
    gap: 20px;
    padding: 10px 30px;
}
.category-box button{
    padding: 8px 15px;
    border-radius: 5px;
}

.categories-package-text h3{
    margin: 20px auto 10px;
    text-align: center; 
    font-weight: 700;
    color: #333;
}
}