 * {
      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;
    }

    .open-menu,
    .close-menu {
      display: none;
      font-size: 28px;
      cursor: pointer;
    }

    .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;
    
    }
    
      .open-menu {
        display: block;
        color: #000;
        font-size: 30px;
      }
      .close-menu {
        display: block;
        color: #302e2e;
        padding: 16px;
        font-size: 28px;
        text-align: right;
      }

      .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);
      }
    }






/*============================== main ============================== */

.main-container{
    width: 100%;
    max-width: 100%;
    background: #f0f5db;
}

.img-dive{
    margin: auto;
    align-items: center;
    padding: 20px;
}

.img-dive img{
       margin: auto;
       display: block;
       border: 4px solid #ccc;
      width:62%;
       height: 400px;
}

.link-box ul{
  display: flex;
  gap:5px;
  list-style-type: none;
justify-content: center;
}
.link-box ul li{
    padding: 10px 32px;
  background-color: #2b5423;
}

.link-box ul li a{
  text-decoration: none;
  font-size: 17px;
  font-weight: bold;
  color: white;
 
   
}

.link-box ul li.active{
  background: rgb(187, 151, 67);
  
}

.content-box{
  border: 3px solid #ccc;
  padding: 20px;
 display: flex;
 flex-direction: column;
 justify-content: center;
background: white;
 width: 60.5%;
 margin: auto;
}

.content-box h1{
  font-size:25px;
}

.content-box p{
 line-height:2;
}

/* hotel */
.content-box table{
  margin-top: 20px;
  border-collapse: collapse;
  width: 100%;
}

.content-box table th{
  vertical-align: top;
  background-color: #2b5423;
  color: white;
  padding-bottom:10px ;
}

.content-box table td{
 
 padding: 10px;
 font-size: 15px;
 line-height: 1.5;
}




@media(max-width:768px){
  .link-box {
   padding: 20px;
}
  .link-box ul{
  display: flex;
  flex-direction: column;
  gap:0px;
}
.link-box ul li{
  padding:8px 12px;
 
}
.link-box ul li a{
  font-weight:600;
}



.img-dive img{
   width:100%;
  height: 300px;
}

.content-box{
 width:92%;
}


.content-box h1{
  font-size:20px;
}


/* hotel */


 .content-box {
        overflow-x: auto; /* agar table bahut wide ho to scroll ho */
        padding: 10px;
    }

    .content-box table td, 
    .content-box table th {
        word-wrap: break-word; /* text wrap ho jaye */
        font-size: 13px;        /* mobile me chhota font */
    }
}







/*======================== Footer ========================*/
#footer{
    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 .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  query */






@media screen and (max-width:780px){
    footer .fb-3{
        width: 100%;
    }  
    footer .fb-3 .box1{
        width: 100%;
        display: flex;
    }
    footer .fb-3 .box1 .left{
        width: 100%;
    }
    
    footer .fb-3 .box1 .left .p{
        width: 100%;
        flex-direction: column;
    }
    footer .fb-3 .box1 .left .p h1{
        margin-bottom: 20px;
    }
    footer .fb-3 .box1 .right {
        width: 100%;
        margin-top: 50px;
    }
    footer .fb-3 .box1 .right ul li img{
        width: 5vw;
    }
    footer .fb-3 .box1 .right ul{
        width:50vw;
    }

    footer .fb-3 .box1 .right ul li{
        width: 40%;
    }
}

   


/*================ header nav ====================*/

/* container 1 */

@media screen and (max-width:780px){
    .contact-us{
        display: none;
    }
}

/* container 2 */

@media screen and (max-width:780px){
    header .container-2{
        width: 100%;
     
    }

    .icon{
     
        width: 100%;
    }

    .container-2 .search input{
       
        width: 100%; 
        display: none;
    }
    .container-2 .icon div{
     
        width: 100px; 
    }
    .container-2 .search i{
        background: transparent;
        border: none;
        float: left;
    }

    .container-2 .icon div button{
        display: none;
    }
} 


/* container 4 */
@media screen and (max-width:780px){
    .container-4{
        width: 100%;
     
    }

    .container-4 .text-2{
        display: none;
    }

    .container-4 .text-3{
        display: none;
    }
}


/* container 5 */

@media screen and (max-width:780px){
    .container-5{
     
        width: 100%;
    }
    .container-5 .link{
    
        width: 50vw;
    }
    .container-5 a{
        width: 9vw;
        font-size: 13px;
    
    }
    .container-5 .search{
        width: 100%;
        margin-left: 10px;
    }

    .container-5 input{
        width: 100%;
    }

  
}





/* ==================================== */



@media screen and (max-width:800px) {
   
   
   .slider .prev, .next{
       top: 27%;
   }
   
 
    
  .destination-devider{
    width: 100%;
    display: flex;
    justify-content: center;
    margin: auto;
  
    }

  
  .destination-2 {
    display: flex;
    width: 100%;
  }
  
  
  .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{
        padding: 7px 20px;
        margin-left:65%;
        
    }
   .section-mp p img{
       width: 45%;
   }
   .section-mp h1{
       font-size: 17px;
   }
   
   .footer-container-1{
       display: flex;
       flex-direction: column;
       margin-inline: auto;

   }
   
   .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;
   }
   
   
   

.topnav{
    display:none;
}



}




@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;
    }
  

}








