

.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;
}

.banner-sec .bannertext h2{
    font-weight: 700;
    color: white;
}



.backimages {
    background-color: #DFDCCF;
}


.section-title {
    color: #2ac6c7;
    font-weight: bolder;
    font-size: 30px;
    text-align: center;
    margin-bottom: 90px;

}

.card-img-container {
    border-radius: 15px;
    border: 4px solid #ffa937;
    box-shadow: 0 0 15px rgba(255, 169, 55, 0.5);
    max-width: 85%;
    max-height: 400px;
    overflow: hidden;
    margin: 20px 0;
}

.card-img-container img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
    object-fit: cover;
}

.author {
    color: #777;
    font-style: italic;
    font-weight: 500;
    font-size: 14.4px;
    display: flex;
    align-items: center;
    margin-bottom: 9px;
}

.post-title {
    font-weight: 700;
    font-size: 28.8px;
    margin-bottom: 15px;
    color: #000;
}

.post-description {
    color: #8c8c8c;
    font-weight: 400;
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.5;
}

.post-date {
    display: flex;
    align-items: center;
    color: #222;
    font-weight: 600;
}

.blog-form-sec{
    padding: 30px;
    background-color: #DFDCCF;
}

.blog-form-sec h2{
    font-weight: 600;
    font-size: 2rem;
    text-align: center;
}

.blog-form-sec form{
    width: 60%;
    margin: 30px auto;
}

.blog-form-sec textarea{
    width: 100%;
    padding: 10px 20px;
    border-radius: 12px;
    resize: none;
    border: 1px solid green;
}

.blog-form-sec form div:nth-child(3){
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 30px 0;
}
.blog-form-sec input{
    width: 30%;
    border-radius: 10px;
    padding: 10px 20px;
     border: 1px solid green;
     background-color: white;
}




.blog-form-sec form div:nth-child(4){
    margin: 20px auto;
    text-align: center;
}
.blog-form-sec form button{
    padding: 8px 30px;
    background-color: #FF9933;
    border: 2px solid green;
    border-radius: 15px;
    font-size: 1.2rem;
    font-weight: 600;
    margin: auto;
}

.pagination{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px;
    
}

@media (max-width: 576px) {
   
    .banner-sec {
        height: 30vh;
    }
    .bannerstyle img {
        width: 100%;
        height: 50px;
        margin-top: -20px;
    }
}

