

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}
body {
  font-family: Arial, sans-serif;
  overflow-x: hidden;
}

.nav-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #F8F4E8;
  padding: 20px 80px;
}

.nav-logo {
  width: 200px;
}
.nav-logo img {
  width: 100%;
  object-fit: cover;
}


.nav-links-container {
  padding: 16px 0;
}
.nav-links {
  list-style: none;
}
.nav-link-item {
  display: inline-block;
  margin: 0 24px;
  position: relative;
}
.nav-link-item > a {
  display: flex;
  padding: 16px 0;
  text-decoration: none;
  color: #000;
  font-weight: 500;
  transition: 0.3s;
}
.nav-link-item:hover > a {
  color: brown;
}
.nav-link-item > a .fa-chevron-down {
  margin-left: 8px;
  transition: 0.3s;
}
.nav-link-item:hover .fa-chevron-down {
  transform: rotate(-180deg);
}

/* Dropdown */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: #fff;
  border-radius: 10px;
  visibility: hidden;
  opacity: 0;
  transform: translateY(10px);
  transition: 0.3s;
  box-shadow: 0 7px 29px rgba(0, 0, 0, 0.1);
  z-index: 99;
}
.nav-link-item:hover > .dropdown-menu,
.dropdown-menu-item:hover > .dropdown-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}
.dropdown-menu-item {
  position: relative;
  list-style: none;
}
.dropdown-menu-item > a {
  display: block;
  padding: 12px 16px;
  text-decoration: none;
  color: #777;
  font-weight: 500;
  transition: 0.3s;
}
.dropdown-menu-item:hover > a {
  background-color: #2d58d927;
  color: brown;
}
.dropdown-menu-item .dropdown-menu {
  top: 0;
  left: 100%;
  margin-left: 4px;
}

/* Responsive */
@media (max-width: 992px) {
  .nav-container {
    padding: 20px 20px;
  }

  
.nav-logo {
  width: 170px;

}


  .nav-links-container {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background-color: #F5F5F5;
    overflow-y: auto;
    visibility: hidden;
    transition: right 0.3s ease;
    z-index: 999;
  }
  .nav-links-container.open {
    right: 0;
    visibility: visible;
  }

  .nav-link-item {
    display: block;
    margin: 0;
    border-bottom: 1px solid #ddd;
  }
  .nav-link-item > a {
    color: black;
    padding: 16px;
    justify-content: space-between;
  }

  /* dropdown inside mobile */
  .dropdown-menu {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    max-height: 0;
    overflow: hidden;
    visibility: visible;
    opacity: 1;
    transform: none;
    border-bottom: 1px solid #ddd;
    transition: max-height 0.3s ease;
  }
  .dropdown-menu-branch.active > .dropdown-menu {
    max-height: 1000px;
  }

  .dropdown-menu-item > a {
    color: #444;
    padding-left: 24px;
  }
  .dropdown-menu-item .dropdown-menu {
    margin: 0;
    padding-left: 16px;
    left: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .dropdown-menu-item.active > .dropdown-menu {
    max-height: 1000px;
  }
  .nav-link-item.active .fa-chevron-down,
  .dropdown-menu-item.active .fa-chevron-down {
    transform: rotate(-180deg);
  }
}





/*======================= 3 ================*/



.slider-wrapper{
    transition: margin-top 0.5s ease;
}

.slider{
    max-width: 100%;
    background-color:#f0f5db;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin: auto;
    position: relative; 
}


.slides, 
.destination-2 {
    max-width: 100%;
    width: 100%;
    display: flex;
    height: auto;
    transition: transform 0.5s ease-in-out;
}

.slides .slide-img{
    min-width: 100%;
    flex: 0 0 100%;
     object-fit: cover;
}
.slides .slide-img img{
     max-width: 100%;
    width: 100%;
    display: block;
    height: auto;
 
}
.prev, .next{
    position: absolute;
    top: 50%;
    padding: 10px;
    border: none;
    cursor: pointer;
    font-size: 50px;
    user-select: none;
    background-color: transparent;
    color: white;
}
.prev{
    left: 5%;
}
.next{
    right: 5%;
}

/*=========== swiper =================*/


    
 .swiper {
      width: 80%;
      padding: 40px 0;
      height: 370px;
    }

 
    .swiper-slide {
      border-radius: 10px;
      overflow: hidden;
      transition: transform 0.3s ease;
      max-width: 100%;
      min-width:0;
     
    }

    .swiper-slide:hover {
      transform: translateY(-5px);
    }

    .card-link {
      text-decoration: none;
      color: inherit;
      display: block;
      position: relative;
      overflow: hidden;
      border-radius: 20px; 
      max-width: 100%;
     
    }

    .card-image {
      width: 100%;
      height: 350px;
      object-fit: cover;
      display: block;
    max-width: 100%;
     
    }
    .card-link img{
         border-radius: 20px; 
         height: 330px;
       
    }
    
   
    .card-link .image-title{
        position: absolute;
        bottom: 20px;
        color: #f4f4f4;
        font-size: 1.7rem;
        font-weight: bold;
        text-shadow: 1px 1px 4px rgba(193, 190, 190, 0.7);
        font-family: 'Arial', sans-serif;
        width: 100%;
         text-align: center;
    }


    .card-btn:hover {
      background-color: #0056b3;
    }

    .swiper .swiper-button-next,
     .swiper .swiper-button-prev {
      color: #ffffff;
     
      
    }
    
    
    .swiper-pagination-bullet{
        border-radius: 50%;
        width: 10px;
        height: 10px;
       
    }

    .swiper-pagination-bullet-active {
      background: #000;
     
    }

    @media screen and (max-width:768px){
        
        .card-image {
        width: 100%;
        height: 250px;
      
       
        }
        .swiper {
        
          height: 300px;
         
      
    }
    
     .card-link img{
         width: 100%;
         height: 250px;
    }
 
    
    
    
    .slides{
    margin: auto;
    width: 100%;
  
    height: 30vh;
    display: flex;
    transition: transform 0.5s ease-in-out;
    }
    
    

.slides .slide-img{
 
    height: 30vh;
    }
    
.slides .slide-img img{
   
    height: 30vh;
    }
    
    .slider-wrapper{

      height: 30vh;
}

.slider{
  
    height: 30vh;
}


    
}

    





/*===============section 4=======================*/
#container-section{
    max-width: 100%;
   
    background-color:#f0f5db;
   
  
}

.destination-1{
  padding: 60px 0px;
 
}
.destination-1 .heading{
    display: flex;
    justify-content:center;
    align-items: center;
    color: #560703;
    font-size: 25px;
    letter-spacing: 1px;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 200;
    
}
.destination-1 p{
    text-align: center;
    padding: 15px 0px;
    font-size: 22px;
    letter-spacing: 1px;
    font-style:italic;
    font-family: 'Playfair Display', serif;
    color: #000000;
}

.destination-1 .icon-box{
    display: flex;
    flex-wrap: wrap;
    padding:20px 0px ;
    justify-content: center;
    justify-content:space-around ;
}
.destination-1 .img-icon{
    display: flex;
    flex-direction: column;
    text-align: center;
    margin: 2%;
   
   
}



.destination-1 .img-icon a{
   
     background-color: #2b5423;
    color: #FFFFFF;
    text-decoration: none;
    padding: 6px 7px;
    margin: 8px 15px 0px 15px;
  
   
}

.destination-devider {
    width: 100%;
    display: flex;
    justify-content: center;
    padding-top:40px ;
}

.destination-devider img {
    width: 100%;
    display: flex;
    justify-content: center;
}


.destination-2{
  padding: 30px 10px;
  /*display: flex;*/
  justify-content: center;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  max-width: 100%;
}



.destination-2-left{
    width:50%;
    height: auto;
   
}
.destination-2-left img{
    height: auto;
    width: 100%;
    position: relative;
    text-align: center;
}


.destination-2-right{
    width:50%;
    height: auto;
    align-content: center;

}
  
.destination-2-right h2{
   
    color: 	#C04D65;
    font-weight: 200;
    padding-top: 50px;
    text-align: center;
     font-family: 'Great Vibes', cursive; 
    
}   
.destination-2-right img{
    display: flex;
    padding-top: 20px;
    margin: auto;
}

.destination-2-right p{
    text-align: left;
    padding: 30px 10px 30px 5px;
    font-size: 14px;
    line-height: 1.8;
}




/*Section img*/



.section-mp{
    background-color:#ffefca;
    max-width: 100%;
    text-align: center;
}

.mp-bg{
 
    background-image: url('/image/MP Incoming travel agency in Madhya Pradesh_files/WhatsApp Image 2025-06-17 at 1.29.05 PM.jpeg'); 
    height: auto;
}
.section-mp p{
   padding:15px 0px 15px 0px ;
}

.section-mp h1{
    color: #FFFFFF;
    font-size: 25px;
}

.section-mp div{
    text-align: center;
    padding: 20px 20px 15px 20px;
}
.section-mp div p{
    color: #FFFFFF;
    font-size: 14px;
    line-height: 2.5;
    font-weight: bold;
    
    
}
.section-mp .link-a{
    padding-bottom: 40px;
  
}

.section-mp .link-a a{
    background-color: #FFFFFF;
    color: #000000;
    font-size: 14px;
    padding: 7px 15px;

}

/* animation on <a>*/
@keyframes slideDown{
    from{
        opacity: 0;
        transform: translateY(-100);
    }
    to{
        opacity: 1;
        transform: translateY(0);
    }
}

.section-mp .link-a a {
    display: inline-block;
    animation: slideDown 2s ease-out;
    animation-fill-mode: both;
}

/*================== Footer ====================*/
#footer{
   
    max-width: 100%;
    margin: auto;
   
}

.footer-wrapper{

   background-color:#f0f5db ;
    height: auto;
    
}

.footer-container-1{
    display: flex;
    padding-top: 30px ;
    margin: 0px 60px;
    padding: 10px 18px;
   
}

.footer-container-1 h2{
     
    color: #1e1d1d;
     padding-bottom: 10px;
}

.footer-container-1 h3{
     
    color: #1e1d1d;
     padding-top: 7px;
     padding-bottom:5px;
   
}

.footer-container-1 div{
    flex-basis: 33%;
    margin: 1%;
   
}

.footer-container-1 .contect-us p{
   
    font-size: 14px;
    line-height: 1.3;
}


.footer-container-1 .destination ul{
    list-style-type: none;
    gap: 10px;
}

.footer-container-1 .destination ul li{
    text-decoration: none;
    padding:6px 0px 6px 0px ;
    list-style-type: none;
    
}
.footer-container-1 .destination ul li a{
   font-size: 14px;
    list-style-type: none;
    text-decoration: none;
    color: #020002;
}

.footer-container-1 .weather {
    
    display: flex;
    flex-direction: column;
}

.footer-container-1 .weather ul {
    list-style-type: none;
    display: flex;
}

.footer-container-1 .weather ul li{
   text-decoration: none;
    margin: 3px 7px;
    cursor: pointer;
}

.footer-container-1 .weather ul li a img{
    width: 50px;
  
}
.footer-container-1 .weather ul li a .fa-facebook-f{
    font-size:26px;
     margin-top:3px;
    color: #2b5423;
}
.footer-container-1 .weather ul li a .fa-youtube{
    font-size:32px;
    color: #2b5423;
}
.footer-container-1 .weather ul li a .fa-square-instagram{
    font-size:27px;
    margin-top:3px;
    color: #2b5423;
}


.footer-container-1 .weather ul li a .fa-whatsapp{
    font-size:27px;
    margin-top:3px;
    color: #2b5423;
}





.footer-container-1 .accereditation{
    display: flex;
    flex-direction: column;
    
}

.footer-container-1 .accereditation ul{
    list-style-type: none;
    display: flex;
}
.footer-container-1 .accereditation ul li{
   text-decoration: none;
    margin: 3px 7px;
}


.footer-container-2{
    background-color:#f0f5db ;
    font-size: 14px;
     color: #1e1d1d;
    padding-bottom: 15px;
    text-align: center;
}


.footer-wrapper .whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 50px;
    z-index: 9999;
    color: #21bd5b;
    display: inline-block;  
    line-height: 30px;    
  font-size: 60px;
    background-color: #ffffff;
    border-radius: 12%;
    height: 50px;

}







  

@media screen and (max-width:768px) {
    
  .slides, .slides .slide-img, .slides .slide-img img {
    width: 100%;
    min-width: 0;
    height: auto;
  }

  .card-image, .card-link img {
    width: 100%;
    height: auto;
  }
  
 html, body{
     overflow-x: hidden;
 }

   .slider .prev, .next{
       top: 27%;
   }
   
 
    
  .destination-devider{
    width: 100%;
    display: flex;
    justify-content: center;
    margin: auto;
  
    }
    
    .destination-2-left, 
  .destination-2-right {
    width: 100% !important;
  }

  
  .destination-2 {
     
    flex-direction: column;
    text-align: center;
  
  }
  
  
  .destination-2 .destination-2-left{
      width: 100%;
  }
  
   .destination-2 .destination-2-left img{
      width: 100%;
  }
  
   .destination-2 .destination-2-right{
      width: 100%;
  }
  
    .destination-2-right a{
        margin: 20px auto !important;
        display: inline-block;
        
    }
   .section-mp p img{
       width: 45%;
   }
   .section-mp h1{
       font-size: 17px;
   }
   
   .footer-container-1{
        margin: 0 10px !important;
       flex-direction: column;

   }
   
  .footer-container-1 div {
    width: 100% !important;
    margin-bottom: 15px;
    /*text-align: center;*/
  }
   
   .footer-container-1 .weather div{
        background-image: url('/image/MP Incoming travel agency in Madhya Pradesh_files/skyblue.jpg'); 
        background-size: contain;
        align-items: center;
        text-align: center;
   }
    .footer-container-1 .accereditation {
        display: flex;
        flex-direction: column;
    }
   
   .footer-container-1 .accereditation ul {
     display: flex;
     flex-wrap: wrap;
       
   }
   

   .footer-container-2{
       padding-left: 30px;
   }
   
   
  



}




@media only screen and (min-width:800px) and (max-width:1100px) {
   
     .footer-container-1{
         
         display: flex;
         flex-direction: row;
         justify-content: space-between;
         margin: 0px 30px 0px 30px;
         flex-wrap: wrap;
     }
     
 
   .footer-container-1 .contect-us {
       width: 100%;
       margin-right: 15%;
       
   } 
   
   .footer-container-1 .accereditation ul{
      display: flex; 
      flex-direction: row;
      flex-wrap: wrap;
      width: 100%;
   }
    .footer-container-1 .accereditation ul li{
        margin: 0px 5px;
    }
    

    
}


