.Blog-header{
    background-image: url('images/53822.jpg');
    background-position:top center;
    background-size: cover;
    height: 500px;
    width: 100%;
}

.overlay {
    width: 100%;
    height: 100%;
    background: linear-gradient(to right,
            rgba(255, 255, 255, .96) 0%,
            rgba(255, 255, 255, .90) 35%,
            rgba(255, 255, 255, .20) 55%,
            rgba(0, 0, 0, .35) 100%);
    padding: 50px;
    display: flex;
    align-items: center;
    position: relative;

}




.innerHero {
    width: 100%;
    max-width: 500px;
    padding: 5px;
}

.innerHero small {
    font-weight: 600;
    color: #D89B2D;
    font-size: 16px;
}

.innerHero h1 {
    font-size: clamp(2rem, 5vw, 4rem);
    color: #0b0b3b;

}

.innerHero p {
    color:#4B5563; ;
}


.section-tag{
    font-weight: 600;
    color: #D89B2D;
}

.Section-title{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
    text-align: center;
}

.Section-title h2{
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: #0b0b3b;
}

.Section-title p{
    max-width: 600px;
    color: #4B5563;
}
.blog-featured{

    padding:100px 8%;

}

.featured-grid{

    margin-top:60px;

    display:grid;

    grid-template-columns:1.2fr 1fr;

    gap:60px;

    align-items:center;

}

.featured-video{

    overflow:hidden;

    border-radius:20px;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.featured-video video{

    width:100%;

    display:block;

}

.featured-content h3{

    color:#0B0B3B;

    font-size:2.2rem;

    margin:20px 0;

}

.featured-content p{

    color:#555;

    line-height:1.9;

    margin-bottom:30px;

}

.featured-tag{

    display:inline-block;

    background:#FFF5E5;

    color:#D89B2D;

    padding:8px 18px;

    border-radius:30px;

    font-weight:600;

}

.featured-content button{

    background:#0B0B3B;

    color:white;

    border:none;

    padding:15px 30px;

    border-radius:50px;

    cursor:pointer;

    transition:.3s;

}

.featured-content button:hover{

    background:#D89B2D;

}


.article-tag {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 100px;
    text-align: center;
    padding: 20px;

}


.article-tag h2{
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: #0b0b3b;
}

.article-tag p{
    color: #4B5563;
}


.travel-updates{
    padding:90px 8%;
}

.section-heading{
    text-align:center;
    max-width:700px;
    margin:auto;
}

.section-heading span{
    color:#D89B2D;
    font-weight:700;
    letter-spacing:2px;
}

.section-heading h2{
    font-size:clamp(2rem,5vw,3rem);
    color:#0B0B3B;
    margin:20px 0;
}

.section-heading h2 span{
    color:#D89B2D;
}

.section-heading p{
    color:#666;
    line-height:1.8;
}

.updates-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:35px;
    margin-top:60px;
}

.update-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
    transition:.35s;
}

.update-card:hover{
    transform:translateY(-8px);
}

.update-card img{
    width:100%;
    height:240px;
    object-fit:cover;
}

.update-content{
    padding:25px;
}

.update-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:18px;
}

.country{
    background:#FFF4E4;
    color:#D89B2D;
    padding:6px 14px;
    border-radius:30px;
    font-size:.85rem;
    font-weight:600;
}

.update-top small{
    color:#888;
}

.update-content h3{
    color:#0B0B3B;
    line-height:1.4;
    margin-bottom:15px;
}

.update-content p{
    color:#666;
    line-height:1.7;
    margin-bottom:25px;
}

.update-content a{
    text-decoration:none;
    color:#0B0B3B;
    font-weight:600;
    transition:.3s;
}

.update-content a:hover{
    color:#D89B2D;
}

.update-content i{
    margin-left:8px;
}



.readMoreBtn{
    background-color: #0b0b3b;
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 10px;
    border: none;
    border-radius: 12px;
}

/* ===========================
   BLOG MODAL
=========================== */

.blogModal{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.75);

    display:none;

    justify-content:center;

    align-items:center;

    padding:40px;

    z-index:9999;
    animation: fadein 0.3s ease;

}

@keyframes fadein {

    from{
        opacity: 0;
    }to{
        opacity: 1;
    }
    
}

/* show */

.blogModal.active{

    display:flex;

}

/* ========================= */

.modal-content{

    width:100%;

    max-width:900px;

    max-height:90vh;

    overflow-y:auto;

    background:#fff;

    border-radius:18px;

    position:relative;

    animation:popup .35s ease;

}

/* ========================= */

.modal-content img{

    width:100%;

    height:350px;

    object-fit:cover;

}

/* ========================= */

.modal-content small{

    display:block;

    color:#D89B2D;

    font-weight:600;

    margin:30px 40px 10px;

}

/* ========================= */

.modal-content h2{

    color:#0B0B3B;

    font-size:2rem;

    margin:0 40px 20px;

}

/* ========================= */

#modalText{

    padding:0 40px 40px;

    color:#555;

    line-height:1.9;

    font-size:1.05rem;

}

/* ========================= */

.closeModal{

    position:absolute;

    right:20px;

    top:20px;

    width:45px;

    height:45px;

    border:none;

    border-radius:50%;

    background:#fff;

    cursor:pointer;

    font-size:1.2rem;

    box-shadow:0 5px 20px rgba(0,0,0,.15);

}

/* ========================= */



.travel_tips{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    margin-top: 50px;
}

.innerTipCard{
    box-shadow: 0px 0px 5px rgba(207, 203, 203, 0.767);
    width: 100%;
    max-width: 1200px;
    /* padding: 20px; */
    border-radius: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
}

.tipText{
    padding: 20px;
}
.tipText h2{
    font-size: 2rem;
    color: #0b0b3b;
}

.tipText p{
    max-width: 500px;
    color: #4B5563;
    font-weight: 600;
}

.tipText ul{
    list-style: none;
    gap: 20px;
    display: flex;
    flex-direction: column;
    color:#4B5563;
    font-weight: 600;
    align-items: start;
}


li i{
    color:#D89B2D;
    margin-right:12px;
}
.tipsCard{
    display: flex;
    flex-direction: column;
    margin-left: 20px;
}



.tipsImage{
    background-image: url('images/beautifu.jpg');
    background-position: center;
    background-size: cover;
    width: 100%;
    height:100%;
    min-height:550px;
    object-fit:cover;
    max-width: 500px;
}



.blog-cta{
    padding:90px 8%;
    text-align:center;
}

.cta-content{
    max-width:850px;
    margin:auto;
    background:#0B0B3B;
    color:#fff;
    padding:70px 50px;
    border-radius:24px;
}

.cta-content span{
    color:#D89B2D;
    letter-spacing:2px;
    font-weight:700;
    font-size:.9rem;
}

.cta-content h2{
    font-size:clamp(2rem,5vw,3rem);
    margin:20px 0;
}

.cta-content p{
    max-width:650px;
    margin:auto;
    line-height:1.8;
    color:#d8d8d8;
}

.cta-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    margin-top:35px;
    background:#D89B2D;
    color:#fff;
    text-decoration:none;
    padding:15px 35px;
    border-radius:40px;
    font-weight:600;
    transition:.3s;
}

.cta-btn:hover{
    transform:translateY(-4px);
    background:#c88615;
}

@keyframes popup{

    from{

        opacity:0;

        transform:scale(.9);

    }

    to{

        opacity:1;

        transform:scale(1);

    }

}

/* ========================= */



/*=========================
        BLOG FAQ
==========================*/

.blog-faq{

    padding:100px 8%;
    background:#FAFBFD;

    margin-top: 80px;

}

.blog-faq .sEction-title{

    text-align:center;
    max-width:700px;
    margin:auto;

}

.blog-faq h2{

    color:#0B0B3B;
    font-size:clamp(2rem,5vw,3rem);
    margin:20px 0;

}

.blog-faq .sEction-title p{

    color:#667085;
    line-height:1.8;

}

.faq-container{

    max-width:900px;
    margin:70px auto 0;

}

.faq-item{

    background:#fff;
    border-radius:15px;
    overflow:hidden;
    margin-bottom:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.06);

}

.faq-question{

    width:100%;
    background:none;
    border:none;
    cursor:pointer;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:25px 30px;

    font-size:1.05rem;
    font-weight:600;

    color:#0B0B3B;

    text-align:left;

}

.faq-question i{

    color:#D89B2D;
    transition:.3s;

}

.faq-answer{

    max-height:0;
    overflow:hidden;

    transition:.4s ease;

}

.faq-answer p{

    padding:0 30px 25px;
    color:#555;
    line-height:1.8;

}

/* Active */

.faq-item.active .faq-answer{

    max-height:250px;

}

.faq-item.active .faq-question i{

    transform:rotate(45deg);

}

@media(max-width:768px){

    .blog-faq{

        padding:80px 6%;

    }

    .faq-question{

        padding:20px;
        font-size:1rem;

    }

    .faq-answer p{

        padding:0 20px 20px;

    }

}

@media(max-width:768px){


    section{
        overflow: hidden;
    }

    li i{
    
    margin-right:5px;
}

ul{
    width: 100%;
}
    .tipText{
        padding: 10px;
    }
    .tipsCard{
        margin-left: 5px;
    }
.tipText h2{
    font-size: 1.8rem;
}
.innerTipCard{
    flex-direction: column;
}
.modal-content img{

height:220px;

}

.modal-content h2{

font-size:1.5rem;

margin:0 25px 15px;

}

.modal-content small{

margin:25px 25px 10px;

}

#modalText{

padding:0 25px 30px;

font-size:1rem;

}

}

@media (max-width:900px) {

    .overlay{
        align-items: end;
        padding: 20px;
    }
    .innerHero{
        max-width: 100%;
        background-color: rgba(255, 255, 255, 0.877);
    }
    
    .featured-grid{

    grid-template-columns:1fr;

    gap:35px;

}

.featured-content h3{

    font-size:1.8rem;

}
}