
@import url('https://fonts.googleapis.com/css2?family=Muli:wght@300;400;500;600;700&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Muli", sans-serif;
}

html{
    scroll-behavior: smooth;
}
:root{
    --primary-color: #f4b200;
    --secondary-color: #44bd32;
    --white-color: #fff;
    --black-color: #333;
    --dark-color: #1e272e;
    --light-color: #d2dae2;
}

h1{
    font-size: 48px;
    font-weight: 700;
    line-height: 56px;
}

h2{
    font-size: 36px;
    font-weight: 600;
    line-height: 42px;
}

h3{
    font-size: 28px;
    font-weight: 500;
    line-height: 32px;
}

h4{
    font-size: 24px;
    font-weight: 400;
    line-height: 28px;
}

h5{
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
}

h6{
    font-size: 18px;
    font-weight: 400;
    line-height: 20px;
}

p{
    font-size: 16px;
    font-weight: 300;
    line-height: 20px;
}

dl,ul{
    list-style: none;
}

.text-center{
    text-align: center;
}

.text-left{
    text-align: left;
}

.text-right{
    text-align: right;
}

.text-primary{
    color: var(--primary-color);
}

.text-light{
    color: var(--white-color);
}

.text-dark{
    color: var(--black-color);
}
.px-3{
    padding: 0 30px;
}

.pt-2{
    padding-top: 20px;
}

.pt-5{
    padding-top: 50px;
}

.pt-1{
    padding-top: 10px;
}

.pb-2{
    padding-bottom: 20px;
}

.pb-5{
    padding-bottom: 50px;
}

.pb-1{
    padding-bottom: 10px;
}


.topbar{
    background: var(--dark-color);
    padding: 10px 30px;
}

.d-flex{
    display: flex;
}

.row{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: space-between;
}

.col-1{
    flex: 0 0 25%;
    width: 25%;
}

.col-2{
    flex: 0 0 50%;
    width: 50%;
}

.col-3{
    flex: 0 0 33.33333%;
    width: 33.33333%;
}

.col-4{
    flex: 0 0 100%;
    width: 100%;
}

.col-5{
    flex: 0 0 75%;
    width: 75%;
}

.col-6{
    flex: 0 0 66.66667%;
    width: 66.66667%;
}

.topbar .col-2{
    cursor: pointer;
}

.topbar i{
    width: 40px;
    height: 40px;
    background: var(--light-color);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
}

.navbar{
    padding: 10px 30px;
    position: absolute;
    top: 60px;
    /* background: var(--primary-color); */
    width: 100%;
}

.navbar .logo{
    width: 80px;
    height: 80px;
}

.navbar .logo img{
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.menu{
    display: flex;
}

.menu-item{
    margin: 0 20px;
}

.menu-link{
    color: var(--white-color);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    display: block;
    padding: 10px; 
    text-align: center;
    z-index: 1;
    transition: 0.4s linear;
}

.menu-link:hover{
    color: var(--dark-color);
}

.menu-link span{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 25%;
    background: var(--primary-color);
    transition: 0.5s linear;
    transform-origin: left;
    z-index: -1;
    transform: scaleX(0);
}


.menu-link:hover span{
    transform: scaleX(1);
}
.menu-link span:nth-child(2){
    top: 25%;
    transition-delay: 0.15s;
}

.menu-link span:nth-child(3){
    top: 50%;
    transition-delay: 0.30s;
}

.menu-link span:nth-child(4){
    top: 75%;
    transition-delay: 0.45s;
}

.menu hr{
    display: none;
}

.menu-icon-box{
    display: none;
}
.hero-img{
    height: 100%;
    background-size: cover;
    padding: 120px 60px 30px 30px;
    animation: changeBG 10s ease-in infinite;
    background-image: linear-gradient(to right, rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/slide-1.jpg');
    transition: 0.5s linear;
}

.hero-img form{
    width: 380px;
    background: rgba(0,0,0,0.4);
    padding: 60px 40px 20px 40px;
    position: relative;
}

.hero-img .form-title{
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    padding: 10px 0;
    background: var(--primary-color);
}

.hero-img label{
    color: var(--white-color);
}

.form-control{
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.btn-primary{
    padding: 14px 30px;
    background: transparent;
    color: var(--white-color);
    margin-top: 10px;
    border: none;
    /* border-radius: 5px; */
    font-weight: 600;
    position: relative;
    z-index: 1;
    width: 100%;
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.btn-primary::before{
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    width: 50%;
    height: 100%;
    background: var(--primary-color);
    transform: skewX(30deg);
    z-index: -1;
    transition: all 0.4s linear;
    cursor: pointer;
}

.btn-primary:hover::before{
    transform: skewX(0deg);
    left: 50%;
    top: 0;
}

.btn-primary::after{
    content: '';
    position: absolute;
    top: 5px;
    left: 51%;
    width: 50%;
    height: 100%;
    background: var(--secondary-color);
    transform: skewX(30deg);
    z-index: -1;
    transition: all 0.4s linear;
}

.btn-primary:hover::after{
    transform: skewX(0deg);
    left: 0;
    top: 0;
}

@keyframes changeBG {
    0%{
    background-image: linear-gradient(to right, rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/slide-1.jpg');
    }

    25%{
    background-image: linear-gradient(to right, rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/slide-2.jpg');
    }
    
    50%{
    background-image: linear-gradient(to right, rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/slide-3.jpg');
    }

    100%{
    background-image: linear-gradient(to right, rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/slide-4.jpg');
    }
}


.packages{
    padding: 80px 30px;
    width: 100%;
}

.tour-card{
    background: var(--light-color);
    margin: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    border-radius: 10px;
    overflow: hidden;
}

.tour-card .card-header{
    width: 100%;
    height: 300px;
}

.tour-card .card-header img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tour-card .card-body{
    padding: 10px 10px 30px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tour-card .card-body .days{
    display: block;
    width: 80%;
    height: 40px;
    background: var(--dark-color);
    text-align: center;
    line-height: 40px;
    margin: 10px 0;
    color: var(--light-color);
    border-radius: 100px;
}

.tour-card .card-body .icon-box{
    display: grid;
    grid-template-columns: min-content 1fr;
    align-items: center;
    align-self: flex-start;
    grid-gap: 10px;
}

.tour-card .card-body .icon-box .icon{
    height: 36px;
    width: 36px;
}

.tour-card .card-body .icon-box .icon img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.tour-card .card-body .btn-primary{
    width: 90%;
}

.divider{
    width: 80%;
    background: var(--dark-color);
    height: 2px;
    margin: 10px 0;
}

.why-us{
    padding: 100px 30px;
    background-image: linear-gradient(to right, rgba(0,0,0,0.3), rgba(0,0,0,0.6)), url('../images/kullu-manali.jpg');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
}

.icon-container{
    display: flex;
    background: rgba(0,0,0,0.6);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 70px 30px;
    margin: 10px;
    border-radius: 20px;
}

.icon-container i{
    background: var(--primary-color);
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    clip-path: polygon(50% 0%, 90% 20%, 100% 60%, 75% 100%, 25% 100%, 0% 60%, 10% 20%);
    margin-bottom: 20px;
    font-size: 30px;
}

.icon-container span{
    font-size: 16px;
    font-weight: 300;
}

.stats{
    padding: 100px 30px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

.counter-container{
    background: var(--light-color);
    margin: 20px;
    padding: 50px 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.counter-container i{
    width: 60px;
    height: 60px;
    font-size: 30px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: var(--light-color);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    clip-path: polygon(50% 0%, 90% 20%, 100% 60%, 75% 100%, 25% 100%, 0% 60%, 10% 20%);
    
}

.counter{
    font-size: 60px;
    font-weight: 700;
}

.counter-container span{
    text-transform: uppercase;
}

.testimonials{
    padding: 50px 30px;
}

.testimonial-container{
    background: var(--primary-color);
    color: var(--white-color);
    border-radius: 10px;
    padding: 60px 80px;
    position: relative;
}

.fa-quote{
    color: rgba(255,255,255,0.6);
    font-size: 30px;
    position: absolute;
    top: 50px;
}

.fa-quote-right{
    left: 40px;
}

.fa-quote-left{
    right: 40px;
}

.testimonial{
    line-height: 28px;
}

.user{
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-img{
    border-radius: 50%;
    height: 75px;
    width: 75px;
    object-fit: contain;
}

.user-details{
    margin-left: 10px;
}

.progress-bar{
    background-color: var(--white-color);
    width: 100%;
    height: 4px;
    animation: grow 10s linear infinite;
    transform-origin: left;
    position: absolute;
    top: 10px;
    left: 0;
}

.about-kullu-manali{
    padding: 50px 30px;
    background: var(--light-color);
}

.about-kullu-manali p{
    line-height: 28px;
}

.faq{
    background: var(--light-color);
    /* padding: 10px 30px; */
    position: relative;
    transition: 0.4s linear;
    margin: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.4);
    border-radius: 10px;
    overflow: hidden;
}

.faq-title{
    text-transform: uppercase;
    cursor: pointer;
    padding: 10px 30px;
}

.faq-text{
    background: var(--white-color);
    height: 0;
    transition: 0.4s linear;
}

.active.faq .faq-text{
    padding: 20px 30px;
    height: 100%;
}

.footer{
    background: var(--dark-color);
    padding: 50px 30px;
}

.footer .col-1{
    padding: 10px;
}

.footer h4{
    text-transform: uppercase;
}

.footer-link{
    text-decoration: none;
    color: var(--light-color);
    font-size: 16px;
    line-height: 30px;
    position: relative;
    z-index: 1;
    display: block;
    padding: 8px 18px;
    text-transform: uppercase;
    /* margin: 5px 0; */
    transition: 0.4s linear;;
}

.footer-link:hover{
    color: var(--dark-color);
}

.footer-link::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    z-index: -1;
    transform: scaleX(0);
    transform-origin: left;
    transition: 0.4s linear;
}

.footer-link:hover::before{
    transform: scaleX(1);
}
.footer-logo{
    width: 100px;
    height: 100px;
    margin: 10px;
    object-fit: contain;
}

.footer-icon-box{
    display: grid;
    grid-template-columns: min-content 1fr;
    align-items: center;
    margin: 10px 0;
}

.footer-icon-box i{
    font-size: 18px;
    width: 48px;
    height: 48px;
    background: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    clip-path: polygon(50% 0%, 90% 20%, 100% 60%, 75% 100%, 25% 100%, 0% 60%, 10% 20%);
}

.copyright{
    padding: 15px 0;
    background: #000;
}

.popup_wrapper{
    position: fixed;
    top: -50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 99;
    width: 600px;
    background-color: #f8f8f8;
    /* background-image: linear-gradient(to left,rgba(0,0,0,0.45),rgba(0,0,0, 0.7)), url(../images/slide-4.jpg); */
    padding: 50px 20px;
    transition: 0.4s linear;
    background-size: cover;
    background-position: center center;
    color: var(--black-color);
    border: 4px dashed var(--primary-color);
}


.active.popup_wrapper{
    top: 50%;
}

.popup_wrapper h2{
    font-size: 28px !important;
    line-height: 30px !important;
}

.popup_wrapper h4{
    background: var(--dark-color);
    display: block;
    text-align: center;
    height: 40px;
    line-height: 40px;
    margin: 10px 0;
    width: 380px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.btn-popup-call{
    border: 2px solid var(--dark-color);
    text-decoration: none;
    height: 60px;
    border-radius: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 220px;
    color: var(--dark-color);
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.btn-popup-call .icon{
    background: #075e54;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    color: #fff;
}
/* .popup_wrapper form{
    display: flex;
    margin-top: 10px;
}

.popup_wrapper form .popup_input{
    flex: 0 0 75%;
    padding: 0 20px;
    border: 1px solid var(--black-color);
} */

.popup_input:focus{
    outline: none;
}

.popup_wrapper form .btn-popup{
    flex: 0 0 25%;
    width: 100%;
    padding: 10px 20px;
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.popup-close{
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: var(--dark-color);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    cursor: pointer;
    border-radius: 100px;
}

.popup-box{
    width: 600px;
    height: min-content;    
    padding: 40px 20px;
    position: fixed;
    top: -100%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    background: var(--light-color);
    transition: 0.5s linear;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
    /* overflow-y: scroll; */
    border: 5px dashed var(--black-color);
}

.form-popup-close{
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    display: flex !important;
    cursor: pointer;
    justify-content: center;
    align-items: center;
}

.active.popup-box{
    top: 50%;
}

.approved{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}

.approved h4{
    font-size: 20px;
    font-weight: 700;
    margin-right: 10px;
}

.form-logos{
    height: 60px;
    width: 60px;
    object-fit: cover;
}

 .btn-call{
     display: none;
 }

@keyframes grow {
    0%{
        transform: scaleX(0)
    }

    100%{
        transform: scaleX(1);
    }
}

@media only screen and (max-width: 600px) {
    .btn-call{
     width: 100%;
     height: 60px;
     position: fixed;
     display: block;
     bottom: 0px;
     left: 0px;
     background: #20bf6b;
     /*background: red;*/
     color: #fff;
     font-size: 30px;
     text-decoration: none;
     display: flex;
     justify-content: center;
     align-items: center;
     /*border-radius: 100px;*/
     box-shadow: 0 5px 5px 5px rgba(0,0,0,0.1);
     /*animation: callAnim 1s linear infinite;*/
     z-index: 10 !important;
 }
    
    .row{
        flex-direction: column;
    }

    .col-1{
        width: 100%;
    }

    .col-2{
        width: 100%;
    }

    .col-3{
        width: 100%;
    }

    .topbar{
        display: none;
    }

    .navbar{
        top: 10px !important;
    }

    .menu{
        position: fixed;
        top: 0;
        left: -400px;
        flex-direction: column;
        width: 280px;
        height: 100%;
        justify-content: center;
        background: var(--primary-color);
        transition: 0.4s linear;
        z-index: 99;
    }

    .active.menu{
        left: 0;
    }

    .hamburger{
        background: var(--primary-color);
        width: 48px;
        height: 48px;
        position: fixed;
        top: 15px;
        right: 20px;
        border-radius: 5px;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 99;
    }

    .line{
        height: 2px;
        width: 100%;
        background: var(--white-color);
        width: 90%;
        transition: 0.4s linear;
    }

    .line-2{
        margin: 10px 0;
    }

    .active.hamburger .line-2{
        display: none;
    }

    .active.hamburger .line-1{
        transform: rotate(-45deg);
    }

    .active.hamburger .line-3{
        transform: rotate(45deg);
    }

    .menu-icon-box{
        display: none;
    }

    .menu-link span{
        background: var(--dark-color);
    }

    .menu-link:hover{
        color: var(--primary-color);
    }

    .menu-icon-box{
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 10px;
    }

    .menu-icon-box i{
        background: var(--dark-color);
        width: 48px;
        height: 48px;
        display: flex;
        justify-content: center;
        align-items: center;
        clip-path: polygon(50% 0%, 90% 20%, 100% 60%, 75% 100%, 25% 100%, 0% 60%, 10% 20%);
        margin-right: 10px;
        
    }

    .hero-img{
        padding: 120px 10px 60px 10px;
    }

    .hero-img form{
        margin-top: 40px;
        width: 100%;
    }

    .packages{
        padding: 50px 5px;
    }

    .why-us{
        padding: 50px 5px;
    }

    .stats{
        padding: 120px 5px;
    }

    .testimonials{
        padding: 50px 10px;
    }
    .testimonial-container{
        padding: 50px 30px;
    }

    .testimonial-container .fa-quote-left{
        right: 10px;
    }

    .testimonial-container .fa-quote-right{
        left: 10px;
    }

    .about-kullu-manali{
        padding: 50px 10px;
    }

    .faq-title{
        font-size: 20px;
    }

    .faqs{
        padding: 50px 10px;
    }

    .footer{
        padding: 50px 10px;
    }
    
    .popup_wrapper{
        width: 90%;
    }

    .popup_wrapper form{
        flex-direction: column;
    }

    .popup_wrapper form .popup_input{
        padding: 10px 20px;
        margin-bottom: 5px;
    }
    
    .popup-box{
        width: 90%;
    }

    .approved{
        flex-direction: column;
    }
}