@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
}


/* .......Navbar messege........ */

.nav-msg{
    width: 100%;
    height: 40px;
    color: #ffffff;
    background-color: #00035c;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.nav-msg a{
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    
}

.nav-msg p{
    font-size: 14px;
}

.nav-info{
    display: flex;
    justify-content: space-around;
    align-items: center;
}



/* .....navbar...... */




.nav-container{
    width: 100%;
    height: 90px;
    background-color: #ffffff;
    display: flex;
    justify-content: space-around;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    color: #17223a;
}

.left-section {
    display: flex;
    align-items: center;
}

.nav-container .logo img{
    height: 120px;
}

.menu ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}


.menu ul li a {
    color: #17223a;
    text-decoration: none;
    padding: 10px 15px;
    transition: all .2s ease-in;
    display: inline-block;
    text-align: center;
    background: linear-gradient(to left, #ffffff 50%, #9c3c9b 50%) right;
    background-size: 260%;
    border-radius: 5px;
}

.menu ul li a:hover{
    background-position: left;
    color: #ffffff;
}



.nav-contact {
    display: flex;
    align-items: center;
}

#nav-para a {
    color: #ffffff;
    text-decoration: none;
    margin-right: 20px;
}

#nav-btn{
    background-color: #9c3c9b;
    color: #ffffff;
    padding: 10px 15px;
    border: none;
    border-radius: 10px;
    margin-left: 20px;
    font-size: 18px;
}


#menu-bar {
    display: none;
    cursor: pointer;
    padding: 10px;
    color: #fff;
}

.sidebar {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    height: auto;
    width: 100%;
    background-color: #9c3c9b;
    color: white;
    z-index: 1000;
    transform: translateX(-100%);
    transition: transform 1.5s ease;
    transition: all .5s ease-in-out;
    border-radius: 10px;
}

.sidebar-content {
    padding: 20px;
}

.sidebar-content ul {
    list-style: none;
    padding: 0;
}

.sidebar-content ul li {
    margin-bottom: 20px;
}

.sidebar-content ul li a {
    color: white;
    text-decoration: none;
    font-size: 40px;
}

.fa-times {
    cursor: pointer;
    float: right;
    font-size: 50px;
}

@media (max-width: 768px) {
    .menu ul {
        display: none;
    }

    #menu-bar {
        display: block;
        background-color: #9c3c9b;
        font-size: 35px;
        padding: 10px;
    }

}

.sidebar.open {
    display: block;
    transform: translateX(0);
}



/* .......hero section.........  */

.hero-section{
    background-image: url(/images/pokhara.jpg);
    width: 100%;
    height: 60vh;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    color: white;
}


.hero-content{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background-color: #00000045;
}

.hero-content .hero-heading h1{
    color: #ffffff;
    font-size: 64px;
    margin-bottom: 25px;

}

.hero-content .hero-para p{
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 25px;
    line-height: 1.5;
    letter-spacing: 1px;
}





/* //////// explore container ////////// */



.explore-container{
    width: 100%;
    height: auto;
    margin-top: 50px;
    padding: 20px 40px;
}

.explore-container h2{
    font-size: 25px;
    color: #4d4d4d;
    font-weight: 500;
    padding: 15px 0;
    text-align: center;
}
.explore-container h1{
    font-size: 40px;
    color: #17223a;
    text-align: center;
}

.explore-container p{
    margin-top: 20px;
    font-size: 16px;
    color: #4d4d4d;
    line-height: 1.9;
}



/* /////// why Choose ////// */



.choose-container{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: start;
    align-items: start;
    margin-top: 30px;
    padding: 40px 30px;
}

.choose-heading{
    width: 40%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
}

.choose-heading h1{
    width: 100%;
    font-size: 40px;
    color: #9c3c9b;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.choose-heading img{
    margin-top: 20px;
    width: 70%;
    height: auto;
}

.choose-heading p{
    margin-top: 20px;
    margin-right: 25px;
    font-size: 22px;
    color: #4d4d4d;
    line-height: 1.8;
    font-family: 500;
}

.choose-highlight-container{
    width: 55%;
    margin-left: 20px;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: start;
    flex-wrap: wrap;
}

.choose-box{
    width: 47%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    margin-bottom: 20px;
}

.choose-box img{
    width: 60px;
    height: auto;
}

.choose-box h1{
    font-size: 18px;
    color: #17223a;
    padding: 15px 0;
    font-weight: 500;
}

.choose-box p{
    font-size: 14px;
    color: #5a5a5a;
    line-height: 1.6;
    text-align: justify;
    font-weight: 400;
}







/* //////Places to Visit//////// */


/* ///// Time line ////////// */


.time-line-container{
    width: 100%;
    height: auto;
    padding: 0px 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    position: relative;
    margin-top: 20px;
}

.time-line-container h1{
    font-size: 30px;
    color: #17223a;
    margin-bottom: -20px;
}


.stop{
    position: sticky;  
    top: 50%;          
    left: 50%; 
    transform: translate(-50%, 0%);
    overflow: hidden;
    margin-top: 50px;
}


#rotatingImage {
    transition: transform .1s linear;
}

.stop img{
    margin-top: 30px;
    width: 40px;
}


.history-time-line{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
    /* overflow: hidden; */
}

.history-details-box{
    width: 50%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    padding: 0 40px;
}

.history-details-box h1{
    font-size: 26px;
    color: #9c3c9b;
    margin-bottom: 15px;
}

.history-details-box p{
    font-size: 16px;
    color: #666666;
    line-height: 1.5;
    text-align: justify;
}





.history-line{
    height: 290px;
    width: 2px;
    background-color: #9c3c9b;
    display: flex;
    justify-content: center;
    align-items: start;
    margin-top: -50px;
    z-index: 1;
}

.history-line img{
    width: 35px;
    display: none;
}

.history-gap{
    width: 50%;
    height: auto;
    padding: 0 40px;
}

.history-gap img{
    width: 100%;
    height: 230px;
    object-fit: cover;
    object-position: center;
    z-index: 10000;
    border-radius: 5px;

}






/* ///// distance//// */


.distance{
    width: 100%;
    height: auto;
    margin-top: 60px;
    padding: 30px 50px;
}

.distance h1{
    font-size: 30px;
    text-align: center;
    color: #17223a;
}

.distance p{
    font-size: 16px;
    color: #4d4d4d;
    margin-top: 15px;
}

.distance ul{
    margin-left: 20px;
}

.distance ul li{
    color: #5a5a5a;
    margin-top: 15px;
}





/* ///// package ///// - */



.package-container{
    width: 100%;
    height: auto;
    margin-top: 40px;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    background: rgb(65,9,121);
    background: linear-gradient(332deg, rgba(65,9,121,1) 54%, rgba(0,86,255,1) 100%);
   
}

.pack-heading h1{
    font-size: 30px;
    color: #fff;
    text-align: center;
}

.pack-box-container{
    width: 100%;
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: start;
}

.pack-box{
    padding: 35px 20px;
    width: 23%;
    height: auto;
    background-color: #fff;
    border-radius: 4px;
    box-shadow: rgba(0, 0, 0, 0.341) 0px 5px 15px;

}

.pack-box h1{
    font-size: 20px;
    padding-bottom: 10px;
    font-weight: 500;
    color: #10106f;
}

.pack-box p{
    font-size: 15px;
    font-weight: 500;
    color: #4d4d4d;
    line-height: 1.7;
}






/* //// why details ////// */


.details-container{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px 60px;
    margin-top: 50px;
}

.details-box{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-top: 30px;
}

.details-heading{
    width: 48%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
}

.details-heading h1{
    font-size: 22px;
    color: #17223a;
    font-weight: 500;
}

.details-heading p{
    font-size: 16px;
    margin-top: 8px;
    color: #4d4d4d;
    line-height: 1.7;
}

.details-img{
    width: 48%;
    height: auto;
}

.details-img img{
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 4px;
    object-position: top;
}

.form-container{
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}




.wrapper{

    width: 70%;
    background: rgb(65,9,121);
    background: linear-gradient(332deg, rgba(65,9,121,1) 54%, rgba(0,86,255,1) 100%);

    margin-top: 10px;
    border-radius: 5px;
    padding-bottom: 25px;

  }
  .wrapper header{
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    padding: 20px 30px;
    border-bottom: 1px solid #8c8c8c;
    text-align: center;
  }
  .wrapper form{
    margin: 35px 30px;
  }
  .wrapper form.disabled{
    pointer-events: none;
    opacity: 0.7;
  }
  form .dbl-field{
    display: flex;
    margin-bottom: 25px;
    justify-content: space-between;
  }
  .dbl-field .field{
    height: 45px;
    display: flex;
    position: relative;
    width: 100%;
    margin-top: -10px;
  }
  .wrapper form i{
    position: absolute;
    top: 50%;
    left: 18px;
    color: #8c8c8c;
    font-size: 17px;
    pointer-events: none;
    transform: translateY(-50%);
  }
  form .field input,
  form .message textarea{
    width: 100%;
    height: 100%;
    outline: none;
    padding: 0 18px 0 48px;
    font-size: 16px;
    border-radius: 5px;
    border: 1px solid #8c8c8c;
  }
  .field input::placeholder,
  .message textarea::placeholder{
    color: #8c8c8c;
  }
  .field input:focus,
  .message textarea:focus{
    padding-left: 47px;
    border: 2px solid #9c3c9b;
  }
  .field input:focus ~ i,
  .message textarea:focus ~ i{
    color: #d326d0;
  }
  form .message{
    position: relative;
  }
  form .message i{
    top: 30px;
    font-size: 20px;
  }
  form .message textarea{
    min-height: 130px;
    max-height: 230px;
    max-width: 100%;
    min-width: 100%;
    padding: 15px 20px 0 48px;
  }
  form .message textarea::-webkit-scrollbar{
    width: 0px;
  }
  .message textarea:focus{
    padding-top: 14px;
  }
  form .button-area{
    margin: 25px 0;
    display: flex;
    align-items: center;
  }
  .button-area button{
    color: #fff;
    border: none;
    outline: none;
    font-size: 18px;
    cursor: pointer;
    border-radius: 5px;
    padding: 13px 25px;
    background: #e92ce6;
    width: 100%;
    transition: background 0.3s ease;
  }
  .button-area button:hover{
    background: #9c3c9b;
  }
  .button-area span{
    font-size: 17px;
    margin-left: 30px;
    display: none;
  }









/* ........Footer............  */




.footer-container{
    background-color: #10106f;
    width: 100%;
    display: flex;
    justify-content:center ;
    margin-top: 50px;
}

.footer-box{
    width: 95%;
    height: 330px;
    display: flex;
    justify-content: space-around;
}
.fsize{
    width: 25%;
    margin-top: 40px;
}

.fsize hr{
    margin-bottom: 25px;
    width: 80%;
}

.fsize p{
    margin-top: 10px;
    color: #ffffff;
    font-size: 28px;
    font-family: 900;
}

.fsize ul li{
    list-style: none;
    line-height: 1.8;
    color: #ffffff;
}

.fsize ul li:hover{
    text-decoration: underline;
    cursor: pointer;
    list-style: circle;
}
.fbox3 .cont-name{
    font-size: 20px;
    color: #ffffff;
}
.fbox3 .fAddre{
    font-size: 15px;
    color: #ffffff;
}
.fbox3 .fphone{
    font-size: 15px;
    color: #ffffff;
}
.footer1{
    height: 50px;
    width: 100%;
    background-color: rgb(0, 1, 40);
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
}
.footer1 a{
    color: #cfcfcf;
    font-size: 16px;
    letter-spacing: 1px;
    transition: all .5s ease;
    text-decoration: none;

}

.footer1 a:hover{
    text-decoration: none;
    color: yellow;
    font-size: 17px;

}

.F-logo img{
    margin-top: 30px;
    width: 150px;
    height: 150px;
    margin-right: 20px;
}

/* icon  */
.footer__social{
    width: 43%;
    display: flex;
    justify-content: center;
}
.footer__icon {
    font-size: 25px;
    color: #fff;
    margin: 5px;
    transition: color .3s;
}

.footer__icon:hover {
    color: red;
}













@media only screen and (max-width: 1064px) {
    .nav-msg,
    .nav-container,
    .hero-section,
    .explore-container,
    .choose-container,
    .time-line-container,
    .distance,
    .package-container,
    .details-container,
    .footer-container,
    .footer1
    {
        width: 1064px;
    }
}







@media only screen and (max-width: 760px){
    .location-hide{
        display: none;
    }
    #location{
        font-size: 30px;
    }
    #nav-btn{
        font-size: 30px;
    }
    .footer__icon .bx{
        font-size: 30px;
    }
    .menu ul{
        display: none;
    }
    #menu-bar{
        display: initial;
        margin-left: 30px;
    }


    .nav-container{
        height: 150px;
    }
    .nav-container .left-section .logo img{
        height: 200px;
    }


    .hero-section{
        height: 950px;
        background-position: center;
    }

    .expl-heading h1{
        font-size: 70px;
    }
    .expl-heading h2{
        font-size: 50px;
    }
    .expl-heading p{
        font-size: 40px;
        text-align: justify;
    }
    .choose-container{
        flex-direction: column;
    }
    .choose-heading{
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .choose-heading h1{
        font-size: 60px;
        text-align: center;
    }
    .choose-heading p{
        font-size: 40px;
    }


    .choose-highlight-container{
        width: 100%;
        margin-top: 50px;
        flex-direction: column;
    }

    .choose-box{
        width: 95%;
        padding: 40px;
        margin-top: 50px;
        box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    }
    .choose-box img{
        width: 100px;
    }
    .choose-box h1{
        font-size: 55px;
    }
    .choose-box p{
        font-size: 37px;
    }




    .time-line-container{
        padding: 50px;
        margin: 0;
        display: flex;
        flex-direction: column;
    }
    .time-line-container h1{
        font-size: 60px;
        width: 100%;
    }


    .history-details-box h1{
        font-size: 65px;
    }
    .history-details-box p{
        font-size: 40px;
    }
    .time-line-container{
        padding: 50px;
    }
    .history-line,
    .stop img{
        display: none;
    }
    .history-details-box h1{
        font-size: 50px;
    }
    .history-details-box ul li,
    .history-details-box p{
        font-size: 40px;
    }
    .history-time-line{
        margin-top: 40px;
        display: flex;
        flex-direction: column;
    }
    .history-details-box{
        width: 100%;
        margin-top: 30px;
        margin-bottom: 70px;
        height: auto;
        
    }
    .history-gap{
        width: 100%;
        height: 500px;
    }
    .history-gap img{
        width: 100%;
        height: 100%;
    }
    .history-margine{
        margin: 0;
    }
    .phone-view-change{
        flex-direction: column-reverse;
    }



    .distance h1{
        font-size: 60px;
    }
    .distance p{
        font-size: 40px;
        line-height: 1.7;
    }
    .distance ul li{
        font-size: 35px;
    }



    .pack-heading h1{
        font-size: 60px;
    }
    .pack-box-container{
        flex-direction: column;
    }
    .pack-box{
        width: 95%;
        padding: 60px;
        margin-top: 50px;
    }
    .pack-box h1{
        font-size: 55px;
    }
    .pack-box p{
        font-size: 38px;
    }


    .details-box{
        flex-direction: column;
    }
    .details-heading{
        width: 100%;
    }
    .phone-view-change{
        flex-direction: column-reverse;
    }

    .details-heading{
        margin: 30px 0 70px 0;
    }
    .details-heading h1{
        font-size: 60px;
    }
    .details-heading p{
        font-size: 40px;
    }
    .details-img{
        width: 100%;
        height: 500px;
    }
    .details-img img{
        width: 100%;
        height: 100%;
    }
    .form-container{
        width: 100%;
    }
    

    .wrapper{
        height: auto;
        width: 100%;
    }
    .wrapper header{
      text-align: center;
      font-size: 50px;
    }
    .wrapper form{
      margin: 45px 20px;
      
    }
    form .dbl-field{
      flex-direction: column;
      margin-bottom: 0px;
    }
    .field .fas{
        font-size: 40px;
    }
    .message .material-icons{
        font-size: 50px;
    }
    form .dbl-field .field{
      width: 100%;
      height: 115px;
      margin-bottom: 30px;
    }
    form .field input{
        font-size: 40px;
       padding-left: 80px;
      }
    form .message textarea{
      resize: none;
      font-size: 40px;
      height: 600px;
      padding-left: 80px;
    }
    form .button-area{
      margin-top: 20px;
      flex-direction: column;
    }
    .button-area button{
      width: 100%;
      height: 85px;
      padding: 11px 0;
      font-size: 40px;
    }
    .button-area span{
      margin: 20px 0 0;
      text-align: center;
      font-size: 40px;
    }




    .footer-container{
        height: 600px;
    }
    .footer-box{
        display: flex;
        flex-wrap: wrap;
    }
    .fsize{
        width: 100%;
    }
    .footer-container{
        height: 2000px;
    }
    .fsize p{
        margin-top: 50px;
        font-size: 45px;
    }
    .fsize ul li{
        font-size: 40px;
    }
    .fbox3 .cont-name{
        font-size: 55px;
    }
    .fbox3 .fAddre{
        font-size: 40px;
        margin-top: 30px;
    }
    .fbox3 .fphone{
        font-size: 40px;
        margin-top: 30px;
    }
    .footer1{
        display: flex;
        flex-wrap: wrap;
        height: 120px;
    }
    .footer1 p{
        font-size: 40px;
    }
    .footer1 a{
        font-size: 40px;
    }
    
    .footer__icon{
        font-size: 45px;
    }
    .footer__social{
        display: flex;
        margin-left: 20px;
        justify-content: start;
    }



    .footer1{
        display: flex;
        justify-content: center;
    }
    .footer1 p{
        text-align: center;
    }




}