@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


:root{
    /* --primary: #EF2853; */
    /* --primary: #FF7200; */
    --primary: #D5B04C;

    /* --dark: #C7003D; */
    /* --dark: #FF7500; */
    --dark: #013B2C;
    --grey: #F7F8FA;
    --white: #fff;
    --text: #4E4646;
    --brown: #190912;
    --shadow: 10px 10px 10px rgba(0,0,0,0.04)
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Josefin Sans', sans-serif;
}

body{
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    background: var(--white);
    color: var(--texrt);
}
/*
* ----------<Header section start> ---------- *
*/
.top_header{
    width: 100%;
    padding: 10px;
    /* background: var(--primary); */
    background: #D5B04C;
    color: #000;
    text-align: center;
    font-size: 16px;
    font-family: "Poppins", sans-serif;
    text-transform: uppercase;
    color: #ffff;
}

.top_header span{
    -webkit-text-stroke-width: .5px;
    color: #000;
    text-shadow: 1px 1px 1px #fff;
    /* -webkit-text-stroke-color: #fff; */
}

.header{
    width: 100%;
    /* background: linear-gradient(-45deg, #fff 72%, #000 40%); */
    background: #013B2C;
    padding: 10px 50px;
    box-shadow: var(--shadow);
}

.logo{
    width: 300px;
}

.logo img{
    width: 100%;
}

.header h4{
    color: var(--primary);
    font-size: 26px;
    max-width: 40%;
    display: block;
    line-height: 1.32;
    text-shadow: 1px 1px 2px #000;
}

.header h4 span{
    color: #ffff;
    -webkit-text-stroke-width: .8px;
    -webkit-text-stroke-color: var(--primary);
}

.top_buttons a{
    display: inline-block;
    text-decoration: none;
    /* background: var(--primary); */
    background: #D5B04C;
    color: #ffff;
    padding: 10px 15px;
    border-radius: 5px;
}

.header_btn{
    max-width: 80%;
    margin-right: 50px;
}

.header_btn a{
    /* padding: 10px 20px; */
    border-radius: 5px;
    background: var(--primary);
    color: #fff;
    text-decoration: none;
    margin: 10px 20px;
    display: inline-block;
    min-width: 40px;
    max-width: 450px;
    overflow: hidden;
}

.header_btn a i{
    width: 40px;
    display: inline-block;
    height: 100%;
    background: var(--dark);
    padding: 5px 5px 5px 12px;
}

.header_btn a span{
    padding: 5px 10px;
    display: block;
    background: #000;
    font-size: 12px;
    position: absolute;
    top: 10px;
    margin-left: -50px;
    border-radius: 5px;
    transform: scale(0);
    transition: .4s cubic-bezier(0.165, 0.84, 0.44, 1);
}


.header_btn a:hover span{
    transform: scale(1);
}

/* 
.header_btn a span{
    text-align: center;
    padding-left: 20px;
} */

.navbar{
    width: 100%;
    /* background: var(--dark); */
    background: #D5B04C;
}

.navbar ul li{
    list-style-type: none;
}

.navbar ul li a{
    padding: 10px 20px;
    text-decoration: none;
    color: #fff;
    font-size: 17px;
    text-transform: uppercase;
    display: block;
    font-weight: 600;
}

.navbar ul li.dropdown{
    position: relative;
}

.navbar ul li.dropdown .dropdown_list{
    background: #fff;
    position: absolute;
    top: 40px;
    width: 300px;
    z-index: 9999;
    transform: scale(0);
    transition: .4s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.navbar ul li.dropdown:hover .dropdown_list{
    transform: scale(1);
}

.navbar ul li.dropdown .dropdown_list ul li{
    list-style: none;
    width: 100%;
}

.navbar ul li.dropdown .dropdown_list ul li a{
    color: #000;
}

.navbar ul li.dropdown .dropdown_list ul li:hover{
    background: #000;
}

.navbar ul li.dropdown .dropdown_list ul li:hover a{
    color: #fff;
}

.navbar ul li.dropdown .dropdown_list ul li a:hover::after{
    transform: scale(0);
}


.navbar ul li a::after{
    content: '';
    width: 100%;
    height: 2px;
    background: #fff;
    border-radius: 5px;
    position: relative;
    bottom:-5px;
    left: 0;
    transform: scale(0);
    display: block;
    transition: .4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.navbar ul li a:hover::after{
    transform: scale(1.1);
}

/*
* ----------</Header section end> ---------- *
*/


.home_banners .mini_form{
    width: 400px;
    padding: 10px;
    position: absolute;
    top: 30px;
    right: 50px;
    height: auto;
    border-radius: 5px;
    z-index: 99999;
}

img.bannerImage{
    width: 100%;
    /* height: 500px; */
    object-fit: cover;
}

/* .splide__slide.is-active img.bannerImage{
    animation: zoom 25s linear infinite reverse;

} */

@keyframes zoom {
    50%{
        transform: scale(1.2);
    }
    100%{
        transform: scale(1);
    }
}

.home_banners .splide__arrow{
    width: 3em;
    height: 3em;
    border-radius: 50%;
    background: var(--primary);
}

.home_banners .splide__arrow svg{
    fill: #fff;
}

.about_content{
    width: 48%;
    margin: 50px 0px;
}

.mini_form{
    width: 48%;
    background: #fff;
    height: 100%;
    box-shadow: var(--shadow);
}

.mini_form h3{
    padding: 10px;
    background: var(--primary);
    color: #fff;
    text-align: center;
}

.mini_form form input.w50,
.mini_form form textarea.w50,
.mini_form form select.w50{
    width: 48%;
}

.mini_form form input,
.mini_form form textarea,
.mini_form form select{
    margin-top: 20px;
    width: 98%;
    margin: 10px auto;
    display: block;
    padding: 8px 15px;
    border: 1px solid var(--dark);
    font-size: 17px;
    background: #fff;
    outline: 0;
}


.about_content h3{
    font-size: 32px;
    margin-bottom: 20px;
}

.about_content p{
    font-size: 16px;
    line-height: 1.5;
}

.features{
    width: 300px;
    border: 2px solid #f8f8f8;
    box-shadow: var(--shadow);
    background: #fff;
    padding: 20px;
    text-align: center;
    margin: 20px auto;
}

.features img{
    display: block;
    width: 50px;
    margin: 20px auto;
}

.title{
    margin: 30px auto;
}

.title h2 span{
    color: var(--primary);
}

.title h2::after{
    content: '';
    width: 200px;
    height: 3px;
    border-radius: 5px;
    background: var(--primary);
    display: block;
    position: relative;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    animation: width 4s linear infinite;
}

@keyframes width {
    50%{
        width: 10px;
    }
    100%{
        width: 200px;
    }
}

.card{
    width: 280px;
    /* overflow: hidden; */
    margin: 20px auto;
    background: #fff;
    /* box-shadow: var(--shadow); */
    /* border-radius: 20px; */
}

.card .card_image{
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    max-height: 250px;
    position: relative;
}

.card .card_image img{
    width: 100%;
    border-radius: 20px;
    filter: brightness(0.95);
    transition: .4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.card:hover .card_image img{
    filter: brightness(0.5);

    transform: scale(1.2) rotate(10deg);
}

.card_info h3 a{
    color: #000;
    padding: 10px;
    text-decoration: none;
    display: block;
    text-align: center;
}

.card_info h3 a:hover{
    color: var(--primary);
}

.card_info a.btn{
    color: #fff;
    background: #c28f02;
    margin: 10px auto;
    text-align: center;
    width: 100%;
    display: inline-block;
    border: 1px solid #c28f02;
    padding: 10px 12px;
    text-decoration: none;
    border-radius: 20px;
}

.card .card_image a.viewBtn{
    position: relative;
    bottom: 90px;
    display: inline-block;
    margin: 10px auto;
    background: var(--primary);
    padding: 8px 35px;
    text-align: center;
    color: #fff;
    text-decoration: none;
    border-radius: 0px 10px 10px 0px;
    transform: scale(0);
    transition: .8s cubic-bezier(0.19, 1, 0.22, 1);
}

.card:hover .card_image a.viewBtn{
    transform: scale(1);
}

.deal_img,
.deal_info{
    width: 48%;
}

.deal_img img{
    width: 100%;
    border-radius: 20px;
    animation: move 2s linear infinite;
}

@keyframes move {
    50%{
        transform: translateY(-15px);
    }

    100%{
        transform: translateY(0px);
    }
}

.deal_info ul{
    margin-top: 10px;
}

.deal_info ul li{
    list-style: none;
    padding: 5px;
}

.deal_info ul li i{
    color: var(--dark);
}

.footer{
    width: 100%;
    min-height: 200px;
    background: url('../../img/footer1.webp') no-repeat;
    background-size: cover;
    padding: 30px 100px;
    background-position: center center;
    color: #fff;
}

.footer-col{
    width: calc(100% / 4);
    padding: 0px 15px;
}

.footer-col h4{
    font-size: 22px;
    margin-top: 30px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--primary);
    margin-bottom: 20px;
}

.footer-col ul li{
    list-style: none;
    padding: 10px;
}

.footer-col ul li a{
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    transition: .3s ease-in-out;
}

.footer-col ul li a:hover{
    color: var(--dark);
}

.footer-col ul li a:hover{
    padding: 10px 15px;
}

footer{
    width: 100%;
    padding: 10px;
    background: var(--brown);
    color: #fff;
    text-align: center;
}

footer a{
    color: var(--primary);
    text-decoration: none;
}

.menu_icon{
    display: none;
    color: #fff;
    font-size: 30px;
    margin-right: 25px;
    cursor: pointer;
}

.navbar i.bi-x{
    display: none;
}

.page_location{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    height: 200px;
    /* background: linear-gradient(rgba(239, 40, 83, 0.5), rgba(239, 40, 83, 0.5)), url('../../img/kashmir-deals.webp') no-repeat; */
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../../img/north-india.webp') no-repeat;
    background-size: cover;
    background-position: center center;
    color: #fff;
    font-size: 25px;
    text-shadow: 2px 3px 0px #000;
}

.page_location.about_page{
    background: url('../../img/about-us.webp') no-repeat;
    background-size: cover;
    background-position: center center;
}

.page_location.contact_page{
        background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../../img/contact.webp') no-repeat;
    background-size: cover;
    background-position: center center;
}

.page_location.gallery_page{
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../../img/gallery.webp') no-repeat;
background-size: cover;
background-position: center center;
}

.page_location.houseboat_page{
    width: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../../img/houseboat.webp') no-repeat;
background-size: cover;
background-position: center center;
}

.page_location.hotel_page{
    width: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../../img/hotels.webp') no-repeat;
background-size: cover;
background-position: center center;
}

.ab_content{
    width: 60%;
}

.ab_content p{
    line-height: 1.5;
}

.ab_img{
    width: 38%;
}

.ab_img img{
    width: 300px;
    border: 3px dashed var(--dark);
    border-radius: 20px;
    margin: 5px auto;
    display: block;
}

.img_caption{
    margin: 10px auto;
    text-align: center;
    background: #000;
    color: #fff;
    padding: 5px;
    border-radius: 5px;
}

.blog_layout{
    width: 70%;
}

.blog_layout .box{
    padding: 20px 0px;
    border-bottom: 1px solid #666;
}

.list{
    list-style: none;
}

.list li{
    padding: 10px;
}

.list li i{
    margin-right: 10px;
    color: var(--dark);
}

.blog_layout .box p{
    line-height: 1.6;
    margin-top: 20px;
    text-align: justify;
}

.sidebar{
    width: 28%;
}

.houseboat{
    width: 350px;
    padding: 20px;
    border-radius: 5px;
    background: var(--primary);
    margin: 20px;
}

.houseboat img{
    width: 100%;
    border-radius: 10px;
    transition: .3s ease-in-out;
}

.houseboat h3 a{
    color: #fff;
    text-decoration: none;
    display: block;
    margin-top: 15px;
    font-weight: 400;
    text-align: center;
}

.houseboat:hover img{
    transform: scale(0.98);
    filter: brightness(0.58);
}

.sidebar{
    margin-top: 60px;
}

.sidebar_column{
    padding: 10px 20px;
    margin-top: 30px;
    border-left: 1px solid #888;
}

.sidebar_column h4{
    font-size: 22px;
    margin-bottom: 20px;
}

.sidebar_column ul li{
    list-style: none;
}

.sidebar_column ul li a{
    padding: 10px 10px 10px 20px;
    display: block;
    text-decoration: none;
    color: #000;
    font-size: 16px;
    position: relative;
    margin-bottom: 5px;
}

.sidebar_column ul li a::after{
    content: '';
    width: 3px;
    height: 100%;
    background: var(--dark);
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: .4s ease-in-out;
}

.sidebar_column ul li a:hover::after{
    width: 100%;
}

.sidebar_column ul li a:hover{
    color: #fff;
    z-index: 999;
}

.sidebar_column input,
.sidebar_column textarea{
    width: 100%;
    padding: 8px 10px;
    font-size: 16px;
    border: 1px solid #999;
    outline: 0px;
    margin-bottom: 10px;
    resize: none;
}

.sidebar_column input:focus,
.sidebar_column textarea:focus{
    border: 1px solid var(--primary);
}

.car_card{
    border-bottom: 1px solid #888;
    padding: 20px;
    text-align: center;
    margin: 20px;
}

.car_card img{
    margin-bottom: 20px;
}

.car_card h3{
    text-transform: uppercase;
}

.car_card .passenger{
    text-align: center;
    margin-top: 20px;
    display: block;
}

.car_card .passenger i{
    color: var(--dark);
}

.heading{
    width: 100%;
    padding: 20px;
    background: orange;
    color: #fff;
    text-align: center;
    font-size: 18px;
    line-height: 1.6;
}

.table{
    width: 100%;
    max-width: 1440px;
    border-collapse: collapse;
    margin: 20px auto;
    text-align: center;
}

thead.dark{
    background: #000;
}

thead.dark th{
    color: #fff;
    padding: 15px;
}

tbody tr{
    border-bottom: 1px solid #888;
}

.table tbody tr td{
    margin-top: 10px;
    padding: 15px;
}

.addressBox{
    width: 380px;
    border: 2px solid #f8f8f8;
    border-radius: 10px;
    background: #fff;
    box-shadow: 10px 10px 10px rgba(0,0,0,0.07);
    padding: 20px;
    margin: 20px auto;
}

.addressBox i.bi-geo-alt,
.addressBox i.bi-globe{
    font-size: 32px;
    display: block;
    margin-bottom: 15px;
    color: var(--primary);
}

.addressBox h3{
    margin-bottom: 10px;
}

.addressBox p{
    font-size: 16px;
    line-height: 1.52;
}

.addressBox a{
    color: var(--dark);
    display: block;
    margin-top: 20px;
    text-decoration: none;
}

.form,
.contact_list{
    width: 48%;
}

.form form input,
.form form textarea{
    border: 1px solid #000;
    outline: 0;
    font-size: 16px;
    font-family: "Poppins",sans-serif;
    padding: 8px 15px;
    width: 100%;
    margin-bottom: 15px;
    resize: none;
}


.form form input:focus,
.form form textarea:focus{
    border: 1px solid var(--primary);
    color: var(--primary);
    caret-color: var(--dark);
}

.contact_list ul li{
    display: flex;
    align-items: center;
    list-style: none;
    margin-bottom: 10px;
}

.contact_list ul li i{
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    color: #fff;
}


.contact_list ul li span{
    font-size: 17px;
    line-height: 1.5;
}

#lightgallery a{
    width: 300px;
    margin-bottom: 10px;
}

.hotel_row .card{
    width: 350px;
}

.product-grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}


.float-icons{
    position: fixed;
    bottom: 30px;
    right: 0px;
    z-index: 9999;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    padding: 20px;
    align-items: center;
    /* flex-direction: column; */
}

.float-icons img{
    width: 40px;
    padding: 5px;
}

.mobile-banner{
    display: none;
}

.testimonial-grid{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.testimonial-grid div{  
    width: 100%;
    padding: 20px;
    margin: 0px auto;
    text-align: center;
}

.testimonial-grid div iframe{
    height: 400px;
    box-shadow: 10px 10px 0px #000;
    border: 4px solid #fff56f;
}



@media (max-width: 768px) {

    .testimonial-grid{
        grid-template-columns: 1fr;
    }

    .mobile-banner{
        display: block;
        width: 100%;
    }

    .mobile-banner img{
        width: 100%;
    }

    .home_banners{
        display: none;
    }

  

    .product-grid{
        grid-template-columns: 1fr;
    }


    .top_buttons{
        display: none;
    }

    .logo img{
        width: 150px;
    }

    .navbar{
        width: 100%;
        height: 100vh;
        position: fixed;
        top: 0;
        left: -100%;
        z-index: 999;
    }

    .navbar.active{
        left: 0;
    }

    .navbar i.bi-x{
        color: #fff;
        font-size: 32px;
        position: absolute;
        top: 20px;
        right: 20px;
        cursor: pointer;
        display: block;
    }

    .navbar ul{
        margin-top: 100px;
        flex-direction: column;
        align-items: flex-start;
    }

    .navbar ul ul{
        margin-top: 0;
    }

    .navbar ul li{
        width: 100%;
    }

    .navbar ul li a{
        display: block;
        width: 100%;
    }

    
.home_banners .splide__arrow{
    width: 2em;
    height: 2em;
    border-radius: 50%;
    background: var(--primary);
}

    .menu_icon{
        display: block;
    }

    .header{
        background: #013B2C;
        padding: 15px;
        flex-wrap: nowrap;
    }
    .header h4,
    .header_btn{
        display: none;
    }



    .container{
        padding: 10px;
    }

    .about_content,
    .mini_form,
    .deal_img,
    .deal_info{
        width: 100%;
    }

    .card{
        width: 95%;
    }

    .footer{
        padding: 10px;
    }

    .footer-col{
        width: 100%;
    }

    .ab_content,
    .ab_img,
    .blog_layout,
    .sidebar,
    .form,
    .contact_list{
        width: 100%;
    }

    

}




.testimonial-box{
    width:500px;
    box-shadow: 2px 2px 30px rgba(0,0,0,0.1);
    background-color: #ffffff;
    padding: 20px;
    margin: 15px auto;
    cursor: pointer;
}
.profile-img{
    width:50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 10px;
}
.profile-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.profile{
    display: flex;
    align-items: center;
}
.name-user{
    display: flex;
    flex-direction: column;
}
.name-user strong{
    color: #3d3d3d;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}
.name-user span{
    color: #979797;
    font-size: 0.8rem;
}
.reviews{
    color: #f9d71c;
}
.box-top{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.client-comment p{
    font-size: 0.9rem;
    color: #4b4b4b;
}
.testimonial-box:hover{
    transform: translateY(-10px);
    transition: all ease 0.3s;
}
 
@media(max-width:1060px){
    .testimonial-box{
        width:45%;
        padding: 10px;
    }
}
@media(max-width:790px){
    .testimonial-box{
        width:100%;
    }
    .testimonial-heading h1{
        font-size: 1.4rem;
    }
}
@media(max-width:340px){
    .box-top{
        flex-wrap: wrap;
        margin-bottom: 10px;
    }
    .reviews{
        margin-top: 10px;
    }
}


marquee img{
    width: 300px;
    height: 300px;
    object-fit: cover;
}

.reviewText{
    margin-top: 15px;
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    padding: 10px;
    border-top: 3px dashed var(--primary);
}

.reviewText a{
    color: var(--primary);
    font-weight: 500;
    text-decoration: none;
    font-family: "Poppins", sans-serif;

}

.home-gallery img{
    border-left: 5px dotted var(--primary);
    border-top: 5px dotted var(--primary);
    border-bottom: 5px dotted var(--dark);
    border-right: 5px dotted var(--dark);
    border-radius: 0px 40px 0px 40px;
}

.home-gallery img:hover{
    filter: grayscale(1);
}






















