@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

.travel-banner{
    position:relative;
    min-height:280px;
    overflow:hidden; 
    background:linear-gradient(to right,#efe7db,#f8f4ed,#efe7db);
}

/* Decorative Side Images */
.left-image{
    position:absolute;
    top:0;
    height:100%;
    width:100%;
}

.left-image{
    left:0;
}
 

.left-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}




/* Content */
.banner-content{
    position:relative;
    z-index:2;
    max-width:650px;
    margin:auto;
    min-height:425px; 
    display:flex;
    flex-direction:column;
    justify-content:center; 
    padding:30px;
}

.sub-title{
    color: #5D230B;
    font-family: "Montserrat", sans-serif;
    font-size: 28px;
    font-style: normal;
    font-weight: 600; 
    text-align: left;
    margin-right: auto;
}

.banner-content h2 {
    margin-bottom: 17px;
    color: #323232;
    font-family: Montserrat;
    font-size: 36px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-top: 13px;
}
.india-text {
    color: #F4194F;
    font-family: Windhavi;
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.banner-content p{
    color: #323232;
    font-family: Poppins;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

/* Responsive */
@media(max-width:991px){

    .banner-content h2{
        font-size:34px;
    }
 
}

@media(max-width:767px){

    .travel-banner{
        min-height: 100%;
    }

    .banner-content{
        min-height: 100%;
        span{
            font-size:15px;
        }
    }

    .banner-content h2{
        font-size:17px; 
        margin-bottom: 5px;
        span{
            font-size:20px;
        }
    }
    .banner-content p{
        font-size: 13px; 
        margin-bottom: 0;
    }

    
}

.blog-categories{
    background:#FBFCFF;
}
.category-wrapper{
     display:flex;
     width:fit-content;
     max-width:100%;
     overflow-x:auto;
     scroll-behavior:smooth;
 }

.category-wrapper{
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid #F5F1EB;
    background: #FFF;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.10);
    padding: 10px 0 ;
}

.category-item{
    flex:1;
    min-width:120px;
    padding:18px 12px;
    text-align:center;
    text-decoration:none;
    color:#4a2d1f;
    border-right:1px solid #efefef;
    transition:.3s;
}

.category-item:last-child{
    border-right:none;
}

.category-item img{
    width: 32px;
    height: 32px;
    margin-bottom:8px;
    object-fit:contain;
}
.category-item span{
    color: #5D230B;
    text-align: center;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    display: block;
}

.category-item:hover{
    background:#fafafa;
}

.category-item.active span{
    color: #F4194F;
}
img.active{
    display: none;
}
.category-item.active {
    img.active{
        display: inline-block;
     }
     img.unactive{
        display: none;
     }
}


/* Tablet */
@media (max-width:991px){

    .category-wrapper{
        overflow: scroll;
        width: 100%;
        justify-content: space-around;
        padding: 0;
    }

    .category-item{
        flex:0 0 25%;
        border-bottom:1px solid #efefef;
    }
}

/* Mobile */
@media (max-width:576px){

    .category-item{
        flex: 0 0 25%;
        padding: 9px 9px;
    }

    .category-item i{
        font-size:20px;
    }

    .category-item span{
        font-size:12px;
    }
}
.latest-blog-section{
    background:#fbfcff;
}

.section-title {
    color: #323232;
    font-family: Montserrat;
    font-size: 35px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: capitalize;
    margin-bottom: 30px;
}
.blog-sidebar-sticky{
    position: sticky;
    top: 100px;          /* height of your header */
    align-self: flex-start;
}
.search-box{
    display: flex;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid #E9E9E9;
    background: #FFF;
    height: 55px;
    align-items: center;
}

.search-box input{
    flex:1;
    border:none;
    outline:none;
    padding:12px 15px;
    font-size:14px;
    &::placeholder{
        color: #AFAFAF; 
        font-family: Poppins;
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        text-transform: capitalize;
    }
}

.search-box button{
    width: 46px;
    height: 46px;
    border: none;
    background: #ff4f7b;
    color: #fff;
    margin-right: 3px;
    border-radius: 6px;
}



.blog-card img {
    width: 100%;
    object-fit: cover;
    height: 253px;
    border-radius: 8px;
}

.blog-content{
    padding-top:15px;
}

.blog-content h5 {
    color: #002374;
    font-family: Poppins;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: capitalize;
}

.blog-content p {
    color: #505050;
    font-family: Poppins;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: capitalize;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    color: #9F9F9F;
    font-family: Poppins;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: capitalize;
}

.popular-blog-list{
    max-height: 450px;
    overflow-y: auto;
    overflow-x: hidden;

    scrollbar-width: thin;
    scrollbar-color: #d5d5d5 transparent;
}

/* Chrome, Edge, Safari */
.popular-blog-list::-webkit-scrollbar{
    width:6px;
}

.popular-blog-list::-webkit-scrollbar-track{
    background:transparent;
}

.popular-blog-list::-webkit-scrollbar-thumb{
    background:#d5d5d5;
    border-radius:20px;
}

.popular-blog-list::-webkit-scrollbar-thumb:hover{
    background:#999;
}

.popular-blog-box{
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #E9E9E9;
    background: #FFF;
}

.popular-blog-box h4{
    margin-bottom: 12px;
    color: #323232;
    font-family: Montserrat;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: capitalize;
}

.popular-item{
    display:flex;
    gap:12px; 
    padding-bottom:18px; 
}

.popular-item:last-child{
    margin-bottom:0;
    border-bottom:none;
    padding-bottom:0;
}

.popular-item img{
    width: 78px;
    height: 75px;
    border-radius:8px;
    object-fit:cover;
}

.popular-item h6 {
    margin-bottom: 6px;
    color: #323232;
    font-family: Poppins;
    font-size: 12px;
    font-weight: 600;
    line-height: normal;
}

.popular-item span {
    color: #9F9F9F;
    font-family: Poppins;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: capitalize;
}

/* Responsive */

@media(max-width:991px){

    .section-title{
        text-align:center;
        margin-bottom:20px;
    }

    .search-box{
        margin-top:15px;
    }

    .popular-blog-box{
        margin-top:30px;
    }
}

@media(max-width:576px){

    .section-title{
        font-size:30px;
    }

    .blog-card img{
        height:200px;
    }

    .blog-content h5{
        font-size:18px;
    }
}
/* Common Sidebar Card */

.sidebar-card{
    background:#fff;
    border:1px solid #ececec;
    border-radius:10px;
    padding:12px;
}

.sidebar-card h4 {
    margin-bottom: 12px;
    color: #323232;
    font-family: Montserrat;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: capitalize;
}

/* Categories */

.category-list{
    list-style: none;
    padding: 0;

    max-height: 400px;      /* Shows about 7 categories */
    overflow-y: auto;
    overflow-x: hidden;

    scrollbar-width: thin;          /* Firefox */
    scrollbar-color: #d2d2d2 transparent;
}

.category-list li{
    margin-bottom:32px;
}
img.active{
    display: none;
 }

.category-list li.active a{
    color: #F4194F;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
 img.active{
    display: inline-block;
 }
 img.unactive{
    display: none;
 }
}
.category-list li img{
    width: 25px;
    height: 25px;
    object-fit: contain;
}

.category-list li:last-child{
    margin-bottom:15px;
}

.category-list a{
    color: #5D230B;
font-family: Poppins;
font-size: 16px;
font-style: normal;
font-weight: 500;
line-height: normal;
}

.category-list a:hover{
    color:#ff4f7b;
}

.category-list i{
    font-size:18px;
    color:#9a7866;
    width:20px;
}

/* Newsletter */
.newsletter-box{
    border-radius: 8px 8px 0 0;
    border: 1px solid #E9E9E9;
    background: #FBF6EF;
}
.idrw4{
    padding: 12px;
}
.newsletter-box h4{
    color: #323232;
    font-family: Montserrat;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: capitalize;
    margin-bottom: 12px;
}
.newsletter-box p {
    margin-bottom: 20px;
    color: #555;
    font-family: Poppins;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.newsletter-box input {
    width: 100%;
    height: 49px;
    padding: 0 15px;
    margin-bottom: 12px;
    outline: none;
    border-radius: 8px;
    border: 1px solid #E9E9E9;
    background: #FFF;
    &::placeholder {
        color: #AFAFAF; 
        font-family: Poppins;
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        text-transform: capitalize;
    }
}

.newsletter-box button {
    width: 100%;
    height: 48px;
    border: none;
    border-radius: 8px;
    background: #F4194F;
    color: #FFF;
    font-family: Poppins;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: capitalize;
}


.newsletter-image{
    margin-top:20px;
}

.newsletter-image img{
    width:100%; 
    object-fit:contain; 
}

/* Mobile */

@media(max-width:991px){

    .sidebar-card{
        margin-top:25px;
    }

    .sidebar-card h4{
        font-size:24px;
    }
    .content-img{
        margin-top: 0 !important;
    }
}
.explore-india-cta{
    position:relative;
    overflow:hidden;
    background:url('../images/bog/explore.png') center/cover no-repeat;
    border-radius:8px;
    padding:60px 20px;
    text-align:center;
    border:1px solid #ece9d8;
    height: 267px;
}


/* Decorative Background */



.cta-content{
    position:relative;
    z-index:2;
}

.cta-content h2 {
    margin-bottom: 15px;
    color: #323232;
    font-family: Montserrat;
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.cta-content h2 span{
    color: #5D230B;
    font-family: Windhavi;
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.cta-content p{
    color: #002374;
    font-family: Poppins;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom:25px;
}

.cta-btn{
    border-radius: 8px;
    background: #F4194F;
    width: 269px;
    height: 49px;
    color: #FFF;
    text-align: right;
    font-family: Poppins;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: capitalize;
    display: flex;
    margin: auto;
    align-items: center;
    justify-content: center;
}

.cta-btn:hover{
    background:#e50046;
    color:#fff;
}

/* Bottom Monuments Illustration */

.explore-india-cta .cta-content::after{
    content:"";
    position:absolute;
    left:0;
    right:0;
    bottom:-60px;
    height:120px;
    background:url('https://www.svgrepo.com/show/530382/city.svg')
    center bottom/contain no-repeat;
    opacity:.08;
    pointer-events:none;
}
.category-container{
    display:flex;
    justify-content:center;
    align-items:center;
}


.category-wrapper{
    display:flex;
    width:fit-content;
    max-width:100%;
    overflow-x:auto;
    scroll-behavior:smooth;
}

.category-wrapper::-webkit-scrollbar{
    display:none;
}

.category-item{
    flex: 0 0 170px;   /* Prevent shrinking */
}

.scroll-btn{
    width:45px;
    height:45px;
    border:none;
    border-radius:50%;
    background:#fff;
    box-shadow:0 2px 8px rgba(0,0,0,.15);
    cursor:pointer;
    z-index:10;
    font-size:22px;
}

.left{
    margin-right:10px;
}

.right{
    margin-left:10px;
}
@media(max-width:768px){

    .explore-india-cta{
        padding:45px 15px;
        height: 100%;
    }

    .cta-content h2{
        font-size:30px;
    }

    .cta-content p{
        font-size:15px;
    }

    .cta-btn{
        min-width:180px;
        height:48px;
    }

}
.blog-breadcrumb{
    font-weight: bold;
    margin-bottom:10px ;
    margin-top:-5px;
    font-size:14px;
}
.light{
    font-weight: lighter;
}
.content-img{
    /*border: 11px solid white;*/
    width: 100%;
    margin-top: -120px;
    border-radius: 22px;
}