:root{
    --theme-primary: #fff;
    --theme-secondary: #000;
    --theme-blue: #0000FF;
    --font-title: "Sansation", sans-serif;
    --font-content: 'Poppins', sans-serif;
    --text-color: #151515;
}

*{
    margin: 0;
    padding: 0;
}

body{
    margin: 0;
    padding: 0;
    font-family: var(--font-title);
}

h1,h2,h3,h4,h5,p,ul,ol,li,span,table,thead,tbody,tr,td,th,a,img,iframe{
    margin: 0;
    padding: 0;
}

.widget{
    margin: 0;
}



/*breadcumb Section ---------------------->*/

.breadcumb{
    margin: 20px 0;
}

.breadcumb ul{
    display: flex;
}

.breadcumb ul li{
    list-style: none;
    padding-left: 10px;
    color: #f0923c;
}

.breadcumb ul li a,.breadcumb ul li i{
    text-decoration: none;
    color: #000;
}

/*Title Section ------------------------------------->*/

.title{
    text-align: center;
    margin-bottom: 30px;
}

.title h3{ 
    margin-top: 15px;
    color: #FF9933;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 14px;
}

.title h1{
    color: var(--text-color);
    font-size: 60px;
    font-weight: bold;
    margin: 10px 0;
}

.title p{
    color: #444444;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
}

/* Nav bar ------------------------------>*/

header{
    position: absolute;
    z-index: 9;
    width: 100%;
    left: 0;   
}

header .nav-bar{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

header .top-nav{
    background: #fff;
}

#menu-header-menu{
    display: flex;
    list-style: none;
    gap: 70px;
    justify-content: space-between;
    align-items: center;
}

#menu-header-menu li a{
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

#menu-header-menu li a:hover{
    color: #FF9933;
}

.need-flight{
    display: flex;
    align-items: center;
    gap: 5px;
    background: #ff9933;
    padding: 12px 18px;
    border-radius: 5px 5px 25px;
    border: none;
    color: #fff;
    font-size: 14px;
    transition: border-radius 0.3s ease;
}

.need-flight:hover{
    border-radius: 5px;
}

.need-flight svg{
    transition: transform 0.3s ease;
}

.need-flight:hover svg{
    transform: rotate(-90deg);
}

.call-viber{
    margin-top: 12px;
}

.top-bar{
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-top: 12px;
}

.top-bar a,.call-viber a{
    color: #fff;
    font-size: 14px;
    text-decoration: none;
}

.top-bar a i,.call-viber a i{
    color: #FF9933;
    margin-right: 10px;
}


/* Banner bar ------------------------------>*/

.banner{
    position: relative;
}

.banner .banner-img{
    position: relative;
}

.banner .banner-content{
    position: absolute;
    z-index: 999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
}

.banner .banner-content h5{
    text-transform: uppercase;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    color: #FF9933;
    letter-spacing: 2px;
}

.banner .banner-content p{
    font-family: 'Poppins', sans-serif;
    color: #E1E1E1;
    font-size: 15px;
    margin: 20px 0;
}

.banner .banner-content h1{
    font-family:  var(--font-title);
    font-size: 60px;
}

.banner .banner-content h2{
    font-size: 70px;
    font-weight: bold;
}

/* Welcome section ------------------------------>*/

.welcome-section{
    background: #F8F8F8;
    position: relative;
    padding-bottom: 110px;
}

.bg-map{
    position: absolute;
    bottom: 105px;
}

.welcome-section #block-9 p{
    color: #FF9933;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 14px;
}

.welcome-section #block-10 h2{
    font-size: 60px;
    font-weight: bold;
    margin: 10px 0;
}

.welcome-section #block-11 p{
    color: #444444;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
}

.welcome-section .welcome-content{
    margin-top: 120px;
    position: absolute;
    z-index: 1;
    width: 50%;
}

.summer-deals{
    position: absolute;
    width: 100%;
    left: 0;
    margin-top: 15px;
}

.deals-wrapper{
    border-radius: 10px;
    overflow: hidden;
}

.deals-left{
    position: relative;
    background:#0e4c56;
    color:#fff;
    display:flex;
    align-items:center;
    padding:40px 60px;
}

.deal-subtitle{
    font-size:14px;
    margin-bottom:10px;
}

.deal-title{
    font-size:30px;
    font-weight:700;
    margin-bottom:20px;
}

.mountain-icon{
    position: absolute;
    right: 10px;
    bottom: 10px;
}

.floating-icon{
    position: absolute;
    right: 30px;
    bottom: 65px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%{
        transform: translateY(0px);
    }
    50%{
        transform: translateY(-10px);
    }
    100%{
        transform: translateY(0px);
    }
}

.deal-btn{
    background: #ff9933;
    padding: 12px 25px;
    border-radius: 5px 5px 25px;
    text-decoration:none;
    font-size:14px;
    font-family: 'Poppins', sans-serif;
    transition: border-radius 0.3s ease;
}

.deal-btn:hover{
    border-radius: 5px;
}

.deals-content a{
    color: #fff;
}

.deals-right{
    position:relative;
}

.deals-image{
    background-image:url("../images/offer.jpg");
    background-size: cover;
    background-position: center;
    height: 191px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.deals-image h2{
    color:#fff;
    font-family:cursive;
    text-align:center;
    font-size: 40px;
}

/* Explore our Destination section ------------------------------>*/

.explore-our-destinations{
    margin-top: 170px;
}

.destinations-list:hover .destinations-thumbnail-img img{
    border-radius: 10px 10px 50px;
}

.explore-our-destinations .destinations-thumbnail-img img{
    border-radius: 10px;
    transition: border-radius 0.3s ease;
}

.explore-our-destinations .destinations-list .destinations-details a{
    color: #ff9933;
    text-decoration: none;
}

.explore-our-destinations .destinations-list .destinations-details h1{
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

.explore-our-destinations .destinations-list .destinations-details p{
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    color: #fff;
}

.explore-our-destinations .destinations-list .destinations-details{
    position: absolute;
    bottom: 5px;
    left: 25px;
    z-index: 9;
}

.explore-our-destinations .destinations-list .destinations-thumbnail-img{
    position: relative;
}

.destination-readmore{
    opacity: 0;
    transition: all 0.35s ease;
}

.destinations-list:hover .destination-readmore{
    opacity: 1;
}

.destinations-list .destinations-details{
    transition: transform 0.3s ease;
}

.destinations-list:hover .destinations-details{
    transform: translateY(-20px);
}

.destinations-button a{
    color: #fff;
    text-decoration:none;
}

.destinations-button{
    margin: 40px 0;
    display: inline-block;
    background: #ff9933;
    color: #fff;
    padding: 13px 25px;
    border-radius: 5px 5px 25px;
    text-decoration:none;
    font-size:14px;
    font-family: 'Poppins', sans-serif;
    transition: border-radius 0.3s ease;
}

.destinations-button:hover{
    border-radius: 5px;
}

/* Adventures Activities section ------------------------------>*/

.adventures-activities{
    background: #F8F8F8;
    position: relative;
    padding: 90px 0;
}

.adventures-activities .title{
    text-align: left;
}

.bg-map-img{
    position: absolute;
    bottom: 30px;
}

.bungee-jump{
    position: absolute;
    top: 0;
    z-index: 9;
}

.adventures-activities .activities-list .activities-details h1{
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    border-left: 3px solid #ff9933;
    padding-left: 5px;
}

.adventures-activities .activities-list .activities-details a{
    color: #ff9933;
    text-decoration: none;
    font-size: 12px;
}

.activities-list:hover .activities-thumbnail-img img{
    border-radius: 10px 10px 40px;
}

.adventures-activities .activities-thumbnail-img img{
    border-radius: 10px;
    transition: border-radius 0.3s ease;
}

.activities-readmore{
    opacity: 0;
    transition: all 0.35s ease;
}

.activities-list:hover .activities-readmore{
    opacity: 1;
}

.activities-list .activities-details{
    transition: transform 0.3s ease;
}

.activities-list:hover .activities-details{
    transform: translateY(-20px);
}

.adventures-activities .activities-list .activities-details p{
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    color: #fff;
}

.adventures-activities .activities-list .activities-details{
    position: absolute;
    bottom: -5px;
    left: 15px;
    z-index: 9;
}

.adventures-activities .activities-list .activities-thumbnail-img{
    position: relative;
}

/* How We Work section ------------------------------>*/

.how-we-work .how-we-work-list .how-we-work-details h1{
    font-size: 18px;
    font-family: 'Poppins', sans-serif;
}

.how-we-work .how-we-work-list .how-we-work-details p{
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    color: #424242;
    margin-top: 10px;
}

.how-we-work .how-we-work-list{
    text-align: center;
    margin-top: 20px;
}

.how-we-work .how-we-work-list .how-we-work-details{
    margin-top: 20px;
}

.how-we-work{
    position: relative;
    margin: 90px 0;
}

.how-we-work .bg-image img{
    position: absolute;
    bottom: 13%;
    left: 11%;
    z-index: -1;
}

/* Wonder of nepal section ------------------------------>*/

.wonders-of-nepal{
    background: #EAF3F1;
    padding: 70px 0;
}

.wonders-of-nepal .below-content{
    display: flex;
    justify-content: flex-start;
    gap: 50px;
    align-items: center;
    border-top: 2px dotted #C5C5C5;
    padding: 10px 0;
}

.wonders-of-nepal-list {
    position: relative;
}

.wonders-of-nepal .wonders-of-nepal-details{
    position: absolute;
    bottom: -15%;
    z-index: 9;
    padding: 20px;
    box-sizing: border-box;
    transition: transform 0.3s ease;
}

.wonders-of-nepal .wonders-of-nepal-details .top-content{
    margin: 10px 0;
}

.wonders-of-nepal .wonders-of-nepal-details .top-content h1{
    font-size: 20px;
    color: #fff;
    margin-bottom: 5px;
}

.wonders-of-nepal .wonders-of-nepal-details .top-content p, .below-content p{
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    color: #fff;
}

.wonders-of-nepal .wonders-of-nepal-details .below-content p img{
    padding-right: 5px;
}

.wonders-of-nepal-list:hover .wonders-of-nepal-thumbnail-img img{
    border-radius: 10px 10px 50px;
}

.wonders-of-nepal .wonders-of-nepal-thumbnail-img img{
    border-radius: 10px;
    transition: border-radius 0.3s ease;
}

.wonders-of-nepal .destinations-button{
    opacity: 0;
    transition: all 0.35s ease;
    margin: 5px 0;
    padding: 12px 22px;
    font-size: 12px;
}

.wonders-of-nepal-list:hover .destinations-button{
    opacity: 1;
}

.wonders-of-nepal-list:hover .wonders-of-nepal-details{
    transform: translateY(-60px);
}

.wonders-of-nepal .wonder-of-nepal-box{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    list-style: none;
}

.nepal-destinations-button{
    margin: 40px 0;
    display: inline-block;
    background: #ff9933;
    color: #fff;
    padding: 13px 25px;
    border-radius: 5px 5px 25px;
    text-decoration: none;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    transition: border-radius 0.3s ease;
}

.nepal-destinations-button a{
    text-decoration: none;
    color: #fff;
}

.nepal-destinations-button:hover {
    border-radius: 5px;
}

/* Why Choose Us section ------------------------------>*/

.why-choose-us-section{
    margin: 30px 0;
}

.why-choose-us-section .title{
    margin-top: 70px;
}

.why-choose-us-section .title h3,.why-choose-us-section .title h1,.why-choose-us-section .title p{
    text-align: left;
}

.features-section {
  width: 100%;
  max-width: 680px;
  display: flex;
  flex-direction: column;
}

.feature-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  align-items: start;
  padding: 20px 0;
  border-bottom: 1px solid #EBEBEB;
}

.feature-item:first-child {
  border-top: none;
}

.feature-item:last-child {
  border-bottom: none;
}

.feature-num {
  font-family: 'Poppins', sans-serif;
  font-size: 56px;
  font-weight: 500;
  color: #FF9933;
  line-height: 1;
  padding-top: 2px;
  user-select: none;
}

.feature-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.feature-title {
  font-size: 24px;
  font-weight: 700;
  color: #111110;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.feature-desc {
  font-size: 15px;
  font-family: 'Poppins', sans-serif;
  line-height: 1.7;
  color: #555552;
}

@media (max-width: 480px) {
  .feature-item {
    grid-template-columns: 44px 1fr;
    gap: 0 14px;
    padding: 22px 0;
  }

  .feature-num {
    font-size: 42px;
  }

  .feature-title {
    font-size: 15px;
  }

  .feature-desc {
    font-size: 13.5px;
  }
}

/*Step into Adventure section ------------------------------>*/

.steps-into-ads{
    margin: 75px 0;
}

.steps-into-ads .owl-carousel .owl-item img{
    display: inline;
    width: inherit;
}

.steps-into-ads .below-content{
    display: flex;
    justify-content: flex-start;
    gap: 39px;
    align-items: center;
    border-top: 2px dotted #C5C5C5;
    padding: 10px 0;
}

.adventures-list {
    position: relative;
}

.steps-into-ads .adventures-details{
    position: absolute;
    bottom: -15%;
    z-index: 9;
    padding: 20px;
    box-sizing: border-box;
    transition: transform 0.3s ease;
}

.steps-into-ads .adventures-details .top-content{
    margin: 10px 0;
}

.steps-into-ads .adventures-details .top-content h1{
    font-size: 20px;
    color: #fff;
    margin-bottom: 5px;
}

.steps-into-ads .adventures-details .top-content p, .below-content p{
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    color: #fff;
}

.steps-into-ads .adventures-details .below-content p img{
    padding-right: 5px;
}

.sadventures-list:hover .adventures-thumbnail-img img{
    border-radius: 10px 10px 50px;
}

.steps-into-ads .adventures-thumbnail-img img{
    border-radius: 10px;
    transition: border-radius 0.3s ease;
}

.steps-into-ads .destinations-button{
    opacity: 0;
    transition: all 0.35s ease;
    margin: 5px 0;
    padding: 12px 22px;
    font-size: 12px;
}

.adventures-list:hover .destinations-button{
    opacity: 1;
}

.adventures-list:hover .adventures-details{
    transform: translateY(-60px);
}

.steps-into-ads .adventures-box{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    list-style: none;
}
