
:root {

    /**
     * COLORS
     */
  
    /* backgroud colors */
    --bg-white: hsl(0, 0%, 100%);
    --bg-black-alpha-20: hsla(0, 0%, 0%, 0.2);
    --bg-lavender-blush: hsl(0, 100%, 98%);
    --bg-majorelle-blue: hsl(249, 95%, 63%);
    --bg-ocean-blue: hsl(249, 63%, 54%);
    --bg-majorelle-blue-alpha-5: hsla(249, 95%, 63%, 0.05);
    --bg-misty-rose: hsl(0, 100%, 95%);
    --bg-red-salsa: hsl(357, 94%, 63%);
    --bg-red-salsa-alpha-5: hsla(357, 94%, 63%, 0.05);
    --bg-english-vermillion: hsl(357, 64%, 53%);
    --bg-chrome-yellow-alpha-5: hsla(40, 100%, 50%, 0.05);
    --bg-sunglow-alpha-10: hsla(48, 100%, 50%, 0.1);
    --bg-gainsboro: hsl(0, 0%, 85%);
  
    /* text color */
    --text-white: hsl(0, 0%, 100%);
    --text-gunmetal: hsl(209, 40%, 14%);
    --text-light-coral: hsl(357, 96%, 73%);
    --text-granite-gray: hsl(210, 4%, 38%);
    --text-majorelle-blue: hsl(249, 95%, 63%);
    --text-sunglow: hsl(48, 100%, 50%);
  
    /* border color */
    --border-gainsboro: hsl(0, 1%, 85%);
  
    /**
     * TYPOGRAPHY
     */
  
    /* font family */
    font-family:'Poppins', sans-serif;;
  
    /* font size */
    --fontSize-1: 4.2rem;
    --fontSize-2: 3.6rem;
    --fontSize-3: 2.5rem;
    --fontSize-4: 2.4rem;
    --fontSize-5: 2rem;
    --fontSize-6: 1.6rem;
    --fontSize-7: 1.5rem;
  
    /* font weight */
    --weight-bold: 700;
    --weight-semiBold: 600;
    --weight-medium: 500;
  
    /**
     * SPACING
     */
  
    --section-spacing: 80px;
  
    /**
     * BOX SHADOW
     */
  
    --shadow-1: 0 2px 10px hsla(209, 40%, 14%, 10%);
    --shadow-2: 0 5px 10px hsla(249, 95%, 63%, 25%);
    --shadow-3: 0 5px 10px hsla(357, 64%, 53%, 25%);
    --shadow-4: 0 30px 50px hsla(357, 64%, 53%, 30%);
  
    /**
     * RADIUS
     */
  
    --radius-pill: 200px;
    --radius-circle: 50%;
    --radius-30: 30px;
    --radius-20: 20px;
  
    /**
     * TRANSITION
     */
  
    --transition-1: 250ms ease;
    --transition-2: 500ms ease;
    --cubic-out: cubic-bezier(0.05, 0.83, 0.52, 0.97);

  
  }

  *{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color:  hsl(0, 100%, 98%);;
  }
  
  /*-----------------------------------*\
    #NAVBAR 1 main
  \*------------ -----------------------*/
 
  nav{
    height: 100px;
    width: 100%;
    background-color:  hsl(0, 100%, 98%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    box-shadow:  0 30px 50px hsla(357, 64%, 53%, 30%);

  }
   
  .nav-1{
    height: 80px;
    width: 80%;
    background-color:  hsl(0, 100%, 98%);
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .nav-1-ul {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 60px;
    background-color: hsl(0, 100%, 98%);
    /* background-color: gray; */
    gap: 40px;
    
  }

  #mainlogo {
    margin-right: 150px;
    /* background-color: rgb(83, 88, 88); */
    width: 160px ;
  }

  #mainlogo image {
   width: 140px;
  }
  
  #login{
    margin-left: 100px;
    width:140px ;
  }
  
  .nav-1-item{
    height: 40px;
    width: 70px;
    background-color:  hsl(0, 100%, 98%);;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
  
  }

  .nav-1-item a {
    text-decoration: none;
    color: black;
  }

  #signup{
   height: 50px;
   width: 140px;
   background-color:  hsl(249, 95%, 63%);
   border-radius: 20px;
  }

  #signup a {
    color: white;
    background-color: hsl(249, 95%, 63%);
  }

  #showbtn{
   height: 40px;
   width: 60px;
   background-color:  hsl(0, 100%, 98%);;
   display: none;
  }
  
  #home{
    border-bottom: 2px solid black
  }


  .sidebar{
   position: fixed;
   top: 0;
   left: 0;
   width: 350px;
   height: 100%;
   display: flex;
   justify-content: flex-start;
   align-items: center;
   flex-direction: column;
   background-color: 0 30px 50px hsla(357, 64%, 53%, 30%);
   box-shadow: 0 2px 10px hsla(209, 40%, 14%, 10%);;
   transform: translateX(-100%); /* hidden by default */
   transition: transform 0.4s ease;
   display: flex;
  }

  .sidebar.active {
    transform: translateX(0);
  }

  .sidebar-heading{
   height: 60px;
   width: 80%;
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 60px;
   margin-top: 30px;
  }
  
  .side-main-content{
    height: 350px;
    width: 80%;
    background-color: 0 30px 50px hsla(357, 64%, 53%, 30%);
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .side-ul{
    height: 320px;
    width: 90%;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    /* align-items: center; */
    gap: 50px;
  }
  
  .side-li{
    height: 20px;
    width: 100%;
    list-style: none;
    font-size: larger;
  }

  .side-ul a {
  text-decoration: none;
  color: black;
  font-weight: 600;
  }

  .side-social{
    height: 140px;
    width: 80%;
    background-color: 0 30px 50px hsla(357, 64%, 53%, 30%);
    /* background-color: aquamarine; */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    /* margin-top: 5p; */
    gap: 20px;
  }
  .follow-us{
    height: 40px;
    width: 90%;
    background-color: 0 30px 50px hsla(357, 64%, 53%, 30%);
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .follow-us h3 {
    font-weight: 700;
    font-size: x-large;
    background-color: 0 30px 50px hsla(357, 64%, 53%, 30%);
  }

  .side-social-icons{
    height: 60px;
    width: 90%;
    background-color:  hsl(249, 63%, 54%);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px; 
    border-radius: 10px;
  }
  
  .side-icons{
   height: 40px;
   width: 40px; 
   background-color: white;
   display: flex;
   justify-content: center;
   align-items: center;
   border-radius: 10px;
  }

  .my-icon {
    color: hsl(249, 63%, 54%); /* Default color */
    transition: color 0.3s ease; /* Smooth transition */
  }
 
  .my-icon:hover {
    color: rgb(206, 198, 198) /* Color on hover, e.g., red */
  }



  
  /*-----------------------------------*\
    HERO SECTION
  \*-----------------------------------*/
  
  .hero-section{
    height: 900px;
    width: 100%;
    /* background-color: aquamarine; */
    background-color:  hsl(0, 100%, 95%);;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .hero-container{
    height: 800px;
    width: 80%;
    /* background-color: rgb(122, 122, 171); */
    background-color: hsl(0, 100%, 95%);
    display: flex;
    justify-content: center;
    align-items: center;
    
  }
 
  .hero-text {
    height: 600px;
    width:40%;
    /* background-color: green; */
    background-color: hsl(0, 100%, 95%);;
    display: flex;
    /* justify-content: center; */
    align-items: center;
    flex-direction: column;
    gap: 10px;

  }

  .hero-img {
    height: 600px;
    width:50%;
    /* background-color: rgb(176, 126, 60); */
    background-color:hsl(0, 100%, 95%);;
    display: flex;
    justify-content: center;
    align-items: center;
  }

 .hero-banner  {
  height: 800px;
  width: 100%;
  background-color:hsl(0, 100%, 95%);
 
 }
 
/* hero text div  */

.hero-explore{
  height: 60px;
  width: 230px;
  background-color: hsl(357, 51%, 78%);
  /* background-color: hsl(0, 100%, 95%);; */
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 20px;
  font-size: larger;
  font-weight: 600;
  color:  hsl(358, 10%, 53%);
  /* align-self: flex-start; */
}

.explore{
  background-color:hsl(357, 51%, 78%);
}

#explore-img{
  height: 30px;
  width: 30px;
  background-image: url(title-icon.svg);
   background-size: cover; 
   border-radius: 20px;
  background-color:hsl(0, 100%, 95%);

}

.hero-heading{
  height:230px ;
  width: 80%;
  font-size:  2.6rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background-color: hsl(0, 100%, 95%);
}

.hero-heading h1 {
  background-color: hsl(0, 100%, 95%);
}
  
.hero-para{
   height: 60px;
   width: 80%;
   display: flex;
   justify-content: center;
   align-items: center;
   background-color: hsl(0, 100%, 95%);

}
  
 .hero-para p {
    font-size: 1.20rem;
    color:hsl(210, 4%, 38%);
    background-color: hsl(0, 100%, 95%);
  }
  


  .plan-watch{
   height: 120px;
   width: 80%;
   /* background-color: rgb(140, 140, 218); */
   background-color: hsl(0, 100%, 95%);
   display: flex;
   justify-content: center;
   align-items: center;
   flex-direction: row;
  }


  .plan{
    height: 100px;
    width: 40%;
    /* background-color: rgb(165, 97, 167); */
    background-color: hsl(0, 100%, 95%);
    display: flex;
    justify-content: center;
    align-items: center;
    
  }

   .plan-text{
    height: 50px;
    width: 90%;
    background-color:  hsl(357, 94%, 63%);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    color: hsl(210, 17%, 86%);;
    font-weight: 500;
    font-size: large;
   }

   .plan-text p {
    background-color:  hsl(357, 94%, 63%);
   }



  .watch-story{
    height: 100px;
    width: 60%;
    /* background-color: rgb(147, 36, 69); */
    background-color: hsl(0, 100%, 95%);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }

.watch-box-1 {
  height: 90px;
  width: 40%;
  /* background-color: blue; */
  background-color: hsl(0, 100%, 95%);
  display: flex;
  justify-content: center;
  align-items:center;
}


.box-1{
  height:60px;
  width: 60px;
  background-color: aliceblue;
  background-image: url(hero-button-img.jpg);
  background-size: cover;
  border-radius: 50%;
}

.box-2{
  height: 30px;
  width: 30px;
  z-index: 2;
  margin-left: 60px;
  position: absolute;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.watch-box-2 {
  height: 40px;
  width: 45%;
  /* background-color: rgb(193, 193, 206); */
  background-color: hsl(0, 100%, 95%);
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  
}




  
  /*-----------------------------------*\
    #what we serve 
  \*-----------------------------------*/
  
  
  .what-serve{
    height: 500px;
    width: 100%;
    /* background-color: rgb(51, 86, 87); */
    background-color:  hsl(0, 100%, 95%);;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .serve-container{
    height: 400px;
    width: 80%;
    background-color: hsl(0, 100%, 95%);;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
  }

  .serve-box{
   height: 290px;
   width: 280px;
   /* background-color: rgb(170, 191, 125); */
   background-color:  hsl(0, 100%, 95%);
   display: flex;
   justify-content: center;
   align-items: center;
   flex-direction: column;
   /* border: 2px solid black; */
   box-shadow: 0 2px 10px hsla(209, 40%, 14%, 10%);
   gap:10px;
   border-radius: 30px;
  }

  /* 3rd box  */
  #serve-2{
   background-color: hsl(0, 0%, 85%); ;
  } 

  #serve-3 {
    margin-top: 70px;
    background-color: hsl(356, 23%, 71%);;
  }

  #serve-4{
    background-color:  hsl(0, 100%, 98%);;
  }


  .serve-heading{
   height:  50px;
   width: 80%;
   background-color:  hsl(0, 100%, 95%);
   color: hsl(249, 63%, 54%);
   display: flex;
   align-items: center;
   /* padding-left: 10px; */
  }

  .serve-topic{
    height: 100px;
    width: 80%;
    /* background-color: rgb(171, 112, 112); */
    background-color:  hsl(0, 100%, 95%);
    font-size: 2.2rem;;
  }

  
  .serve-para{
    height: 60px;
    width: 80%;
    /* background-color: rgb(112, 84, 84); */
    background-color:  hsl(0, 100%, 95%);
    display: flex;
    align-items: center;
  }

 .trio-img {
  height: 90px;
  width: 80%;
  background-color: hsl(356, 23%, 71%);;;
 } 

 #img1 {
  background-color: hsl(0, 0%, 85%); ;
 }
 
 .trio-span-1{
    height: 80px;
    width: 80px;
    background-color: hsl(0, 0%, 85%); ;
    background-image: url(service-icon-1.svg);
    background-size: contain;
   }

   .trio-span-2{
     height: 80px;
     width: 80px;
     background-color: hsl(356, 23%, 71%);;
     background-image: url(service-icon-2.svg);
     background-size: contain; 
   }
   
   #trio-head-2{
     background-color: hsl(356, 23%, 71%);;
    }

   .trio-span-3{
    height: 80px;
    width: 80px;
    background-image: url(service-icon-3.svg);
    background-size: contain;
  }
  #img3{
    background-color:  hsl(0, 100%, 98%);;
  }

  .trio-head {
    height: 30px;
    width: 80%;
    font-size: 1.3rem;
    font-weight: 700;
  }

  #trio-head-1{
    background-color: hsl(0, 0%, 85%); ;
  }

  #trio-para1 {
    background-color: hsl(0, 0%, 85%); ;
  }

   .trio-para{
     height: 45px;
     width: 80%;

   }


  
  
  /*-----------------------------------*\
    # DESTINATION 
  \*-----------------------------------*/
  
  .destination {
    height: 1400px;
    width: 100%;
    /* background-color: rgb(105, 105, 147); */
    background-color:   hsl(0, 100%, 95%);;;
    display: flex;
    justify-content: center;
    gap: 10px;
    
   }

   .dest-container{
    height: 1300px;
    width: 80%;
    /* background-color: rgb(75, 75, 164); */
    background-color:   hsl(0, 100%, 95%);;;
    display: flex;
    /* justify-content: center; */
    align-items: center;  
    flex-direction: column;
    margin-top: 40px;
  }

    .top-dest{
      height: 40px;
      width: 80%;
      display: flex;
      justify-content: center;
      align-items: center;
      color: hsl(249, 95%, 63%);
      font-size: large; 
      background-color:  hsl(0, 100%, 95%);;
      /* background-color: green; */
      margin-top: 20px;
    }

     .explore-dest{
      height: 90px;
      width: 80%;
      display: flex;
      justify-content: center;
      align-items: center;
      background-color:  hsl(0, 100%, 95%);;
      font-size: 2.2rem;
      font-weight: 600; 
    }


    .dest-contain{
      height: 1000px;
      width: 80%;
      background-color: hsl(0, 100%, 95%);;
      display: grid;
      grid-template-columns: repeat(3, 1fr); /* 3 columns by default */
      gap: 10px;
      margin: 20px 
    }
      
    

       .dest-box{
        height: 440px;
        width: 95%;
        /* background-color: green; */
        background-color: hsl(0, 100%, 95%);;

        margin: 20px auto;
        border-radius: 20px;
        display: flex;
        /* justify-content: center; */
        align-items: center;
        flex-direction: column;
        gap: 20px;
        margin-top: 10px;
       }
  

       .dest-bx-1{
        height:240px ;
        width: 80%;
        background-color: antiquewhite;
        border-radius: 10px;
        background-image: url(destination-1.jpg);
        background-size: cover;
        margin-top: 15px;
       }
   
        
       .dest-bx-head {
        height: 40px;
        width: 80%;
        background-color: hsl(0, 100%, 95%);;
        /* background-color: blue;  */
      }

       .dest-bx-head h3 {
        background-color: hsl(0, 100%, 95%);;
       }

       
       .dest-bx-info{
        height: 20px;
        width: 80%;
        background-color: hsl(0, 100%, 95%);;       
       }
       .dest-bx-info p {
        background-color: hsl(0, 100%, 95%);;       
        
       }

       .dest-bx-rating{
        height: 40px;
        width: 80%;
        display: flex;
        /* justify-content: center; */
        align-items: center;
        gap: 20px;
        background-color: hsl(0, 100%, 95%);;
       }

       .star-box{
           height: 40px;
           width: 65px;
           background-color: yellow;
           display: flex;
           justify-content: center;
           align-items: center;
           /* border: 2px solid black;     */
       }

       .star-1{
        background-color: yellow;
        margin: 10px;
        display: flex;
        /* justify-content: center; */
        align-items: center;
       }

       .star-2{
        background-color: yellow;
        color: rgb(42, 37, 37);
       }
  
       .review{
        background-color: hsl(0, 100%, 95%);; ;
       }

       /* main-box images */

       
       .dest-bx-2{
        height:240px ;
        width: 80%;
        background-color: antiquewhite;
        border-radius: 10px;
        background-image: url(destination-2.jpg);
        background-size: cover;
        margin-top: 15px;
       }

       
       .dest-bx-3{
        height:240px ;
        width: 80%;
        background-color: antiquewhite;
        border-radius: 10px;
        background-image: url(destination-3.jpg);
        background-size: cover;
        margin-top: 15px;
       }

       .dest-bx-4{
        height:240px ;
        width: 80%;
        background-color: antiquewhite;
        border-radius: 10px;
        background-image: url(destination-4.jpg);
        background-size: cover;
        margin-top: 15px;
       }

       
       .dest-bx-5{
        height:240px ;
        width: 80%;
        background-color: antiquewhite;
        border-radius: 10px;
        background-image: url(destination-5.jpg);
        background-size: cover;
        margin-top: 15px;
       }

         
       .dest-bx-6{
        height:240px ;
        width: 80%;
        background-color: antiquewhite;
        border-radius: 10px;
        background-image: url(destination-6.jpg);
        background-size: cover;
        margin-top: 15px;
       }

       .view-dest {
        height: 60px;
        width: 300px;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color:  hsl(249, 95%, 63%); 
        border-radius: 30px;
        
       }

       .view-dest  a {
        list-style: none;
        text-decoration: none;
        background-color: hsl(249, 95%, 63%); ;
        color: aliceblue; 
      }


 /*-----------------------------------*\
        #OUR EXPERIENCE
 \*-----------------------------------*/

   .experience{
        height: 800px;
        width: 100%;
        /* background-color: green; */
        background-color: hsl(0, 100%, 95%);
        display: flex;
        justify-content: center;
        align-items: center;
      }


      .exp-container{
        height: 700px;
        width: 80%;
        /* background-color: lightgreen; */
        background-color: hsl(0, 100%, 95%);
        display: flex;
        justify-content: center;
        align-items: center;
      }

     .exp1{
      
      height: 600px;
      width: 50%;
      /* background-color: beige; */
      background-color: hsl(0, 100%, 95%);

      display: flex;
      justify-content: center;
      align-items: center;
      margin-top: 40px;
     }
    
     .exp2{
      height: 600px;
      width: 50%;
      background-color: hsl(0, 100%, 95%);
      /* background-color: rgb(113, 113, 80); */
     }
   
     .exp1-img-box{
      height: 550px;
      width: 80%;
      /* background-color: blue; */
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: hsl(0, 100%, 95%);

     }

  .exp1-extra-img{
   /* background-color: aquamarine; */
   background-color: hsl(0, 100%, 95%);

   display: flex;
   justify-content: center;
   align-items: center;
  }

  .exp1-extra-img img {
    /* background-color: rgb(68, 106, 68); */
    background-color: hsl(0, 100%, 95%);

  }

  /* .support {
    height: 180px;
    width: 120px;
    background-color: grey;
    position: fixed;
     margin-right: 300px;
     margin-top: 240px; 
    border-radius: 30px;
    background-color: aliceblue;
    align-self: flex-end;
    /* margin-right: 300px; */
    /* z-index: 2; */
/* }  */

/*  
  .support img{
    border-radius: 30px; 
    background-color: aliceblue;
  } */

  .exp2{
    height: 600px;
    width: 50%;
    /* background-color: rgb(113, 113, 80); */
    background-color: hsl(0, 100%, 95%);

    display: flex;
    justify-content: center;
    align-items: center;
   }

.exp2-container{
  height: 500px;
  width: 80%;
  /* background-color: rgb(55, 81, 72); */
  background-color: hsl(0, 100%, 95%);
  
  margin-top: 40px;
}

.exp2-title{
  height: 30px;
  width: 100%;
  color: hsl(249, 95%, 63%); ; ;
  background-color: hsl(0, 100%, 95%);

}

.exp2-head{
 height: 100px;
 width: 100% ;
 font-size: 1.6rem;
 background-color: hsl(0, 100%, 95%);
}

.exp2-head h3{
  background-color: hsl(0, 100%, 95%);
}

.exp2-para{
  height: 80px;
  width: 100%;
  background-color: hsl(0, 100%, 95%);
}
.exp2-para p {
  background-color: hsl(0, 100%, 95%);
}

.exp2-box{
  height: 290px ;
  width: 100%;
  /* background-color: grey; */
  background-color: hsl(0, 100%, 95%);

  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

.exp-box{
  height: 230px;
  width: 30%;
  background-color: hsl(0, 100%, 95%);

}

.exp-box h3 {
  font-size: 1.9rem;
  color: hsl(249, 95%, 63%);
  background-color: hsl(0, 100%, 95%);

}

.exp-box p {
 margin-top: 5px;
 background-color: hsl(0, 100%, 95%);

}


  /*-----------------------------------*\
    # PHOTO GALLERY
  \*-----------------------------------*/
  
  .photo-section{
     height: 1000px;
     width: 100%;
     background-color: hsl(0, 100%, 95%);
     /* background-color: burlywood; */
     display: flex;
     justify-content: center;
     align-items: center; 
   }
  
   .gallery-container{
    height: 900px;
    width: 80%;
    /* background-color: blueviolet; */
    background-color: hsl(0, 100%, 95%);

    display: flex;
    /* justify-content: center; */
    align-items: center;
    flex-direction: column;
    gap: 10px;
   }


   .gallery-box{
    height: 780px;
    background-color: blue;
    width: 90%; 
    display: grid;
    grid-template-columns: repeat(3,1fr);
    background-color: hsl(0, 100%, 95%);

   
   }

   .gall-box{
    height: 350px;
    width: 300px;
    background-color: yellow;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    margin: 20px;
   }
  
  /*-----------------------------------*\
    # PREPARE yourself
  \*-----------------------------------*/
  
  .prepare-section{
    height: 550px;
    width: 100%;
    /* background-color: rgb(173, 106, 19); */
    background-color: hsl(0, 100%, 95%);
    border-radius: 2px solid black;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .prepare-container{
    height: 400px;
    width: 80%;
    background-image:  url(cta-bg.jpg);
    background-size: contain;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 15px;
    border-radius: 20px;
    border: 5px solid black;
  }

  .pre-head{
    font-size: 1.8rem;
    background-image:  url(cta-bg.jpg);
    background-size: contain;
  }
  
  .pre-head h2 {
    background-image:  url(cta-bg.jpg);
    background-size: contain;
  }

  .pre-head-img{
    height: 2.2rem;
  }

  .pre-text{
    font-size: 1.2rem;
    
  }

  .pre-text p {
    background-image:  url(cta-bg.jpg);
    background-size: contain;
  }

  .pre-start{
    height: 60px;
    width: 200px;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: hsl(249, 63%, 54%);
    color: white;
  }

  .pre-start a {
    color: white;
    list-style: none;
    text-decoration: none;
    background-color: hsl(249, 63%, 54%);
  }



  
  
  
  /*-----------------------------------*\
    #FOOTER
  \*-----------------------------------*/
  
   .footer{
    height: 400px;
    width: 100%;
    /* background-color: green; */
    background-color: hsl(0, 100%, 95%);
    display: flex ;
    justify-content: center;
    align-items: center;
    flex-direction: column;
   }  
  
   .footer-container{
    height: 300px;
    width: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
    /* background-color: blue; */
    background-color: hsl(0, 100%, 95%);

   }
  


   .foot1{
    height: 280px;
    width: 70%;
    background-color: hsl(0, 100%, 95%);
    /* background-color: pink; */
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
   }

 .foot-m{
   height: 250px;
   width: 32%;
   background-color:hsl(0, 100%, 95%);
   display: flex;
   /* justify-content: center; */
   /* align-items: center; */
   flex-direction: column;
   gap: 15px;
 }

 .foot-m-logo{
   height: 25px;
   width: 130px;
   background-color:hsl(0, 100%, 95%); ;
   background-image: url(logo.svg);
   background-size: cover;
 }

 .foot-m-p p {
  background-color:hsl(0, 100%, 95%); ;
 }

 .foot-bx{
  height: 250px;
  width: 20%;
  background-color: hsl(0, 100%, 95%);    
}

.foot-ul  {
 height: 250px;
 width: 100%;
 background-color: hsl(0, 100%, 95%);    
}

.foot-ul li {
  background-color: hsl(0, 100%, 95%);        
  width: 100%;
  list-style: none;
  color: black;
}

.foot-ul a {
  background-color: hsl(0, 100%, 95%);    
  width: 100%;
  color: rgb(93, 81, 81);
}

.foot-li{
  width: 100%;
  margin-top: 10px;
}

.foot-li a {
 text-decoration: none;
 width: 100%;
 height: 20px;
 background-color: hsl(0, 100%, 95%);    
}

.foot-li-head {
  font-weight: 800;
}

.foot-li :hover{
  border-bottom: 2px solid  hsl(249, 63%, 54%);;
}



.side-social-icons2{
  height: 50px;
  width: 60%;
  /* background-color:  hsl(249, 63%, 54%); */
  background-color: hsl(0, 100%, 95%);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px; 
  border-radius: 10px;
}

.side-icons2{
 height: 20px;
 width: 20px; 
 background-color: white;
 display: flex;
 justify-content: center;
 align-items: center;
 border-radius: 10px;
}

.my-icon {
  color: hsl(249, 63%, 54%); /* Default color */
  transition: color 0.3s ease; /* Smooth transition */
}

.my-icon:hover {
  color: rgb(206, 198, 198) /* Color on hover, e.g., red */
}

.foot2{
  height: 280px;
  width: 30%;
  /* background-color: blueviolet; */
  background-color: hsl(0, 100%, 95%);
  display: flex;
  justify-content: center;
  align-items: center;
}

.get-in-touch {
  height: 250px;
  width: 80%;
  background-color:hsl(0, 100%, 95%);
  display: flex;
  /* justify-content: center; */
  align-items: center;
  flex-direction: column;
  gap: 15px;
}

.foot-ul2  {
  height: 20px;
  width: 100%;
  background-color: hsl(0, 100%, 95%);    
 }
 
 .foot-ul2 li {
  list-style: none;
 background-color:hsl(0, 100%, 95%);
 }

.foot-m-p2 p {
 background-color:hsl(0, 100%, 95%);
}

.email{
  height: 40px;
  width: 80%;
  /* background-color: blue ; */
  background-color:hsl(0, 100%, 95%);
  border: 2px solid black;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

input {
  border: 2px solid hsl(0, 100%, 95%);;
  background-color:hsl(0, 100%, 95%);
  font-size: large;
  margin-left: 10px;
}
.email-input{
  width: 80%;

}

.arrow-right{
  height: 30px ;
  width: 40px;
  display: flex;
  justify-content: center;
  background-color:hsl(0, 100%, 95%);
  border-radius: 50%; 
  margin-left: auto;
}

.copyright{
  height:80px;
  width: 100%;
  background-color:hsl(0, 100%, 95%);
  display: flex;
  justify-content: center;
  align-items: center;
}

.made-by{
   display: flex;
   justify-content: center;
   align-items: center;
   width: 80%;
   gap: 5px;
  background-color:hsl(0, 100%, 95%);
  border-top: 4px solid rgb(162, 150, 150);

}

.made-by .third-child{
 margin-left: auto;
 margin-right: 5px;
}

.made-by p {
  background-color:hsl(0, 100%, 95%);
}

.osama{
  color: hsl(249, 63%, 54%); /* Default color */

}
 

   
  /*-----------------------------------*\
    #MEDIA QUERIES
  \*-----------------------------------*/


  @media (max-width: 600px) {
    .dest-contain {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  /* When screen is less than 400px, make 1 column */
  @media (max-width: 400px) {
    .dest-contain {
      grid-template-columns: 1fr;
    }
  }


  /* media for 1450px */

  /* hero section */
  @media (max-width: 1450px){
     #mainlogo{
      display: block;
     }
     #showbtn{
      display: block;
      margin-left: 60%;
     }

     .nav-1-item{
      display: none;
     }

     .hero-section {
      height: 1400px; 
      align-items: center;
      justify-content: center;
     }

   .hero-container {
    height: 1300px;
     flex-direction: column;
     gap: 40px;  
   }

   .hero-banner {
    height: 600px;
   }

   /* heor section =  hero text  */

   .hero-text {
   width: 80%;
   }

   .hero-heading {
    justify-content: center;
   }

  }

  /* media queires for 1160px */

  /* what we serve */

  @media (max-width: 1160px){

   
.what-serve {
 height: 750px;
}

.serve-container {
  height: 700px;
  display: grid;
  grid-template-columns: repeat(2,1fr);
}

.serve-box {
  margin: 20px auto;
}

#serve-3{
  margin-top: 0px;
}

  }


  /* media query for 1250px */


@media (max-width:1250px){
  .destination {
   height:  1800px; 
  }

  .dest-container{
    height: 1700px;
  }

  .dest-contain{
    height: 1400px;
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 3 columns by default */
    gap: 5px;
    margin: 10px 
  }

   .view-dest {
    margin-top: 40px;
   }

}


/* media queiry for 1140px */

@media (max-width:1140px){
   
  .experience {
    height: 1200px;
  }

  .exp-container {
    height: 1100px;
    flex-direction: column-reverse;
    gap: 40px;
  }

   .exp1 {
    height: 300px;
    width: 80%;
   }

   .exp1-img-box {
    height: 200px;
    width: 80%;
   }

   .exp2 {
    width: 100%;
    height: 400px;
   }


}

/* media query for 1400 */

 @media(max-width:1400px){
  .photo-section{
    height: 1500px;
  }

  .gallery-container{
    height: 1460px;
  }

  .gallery-box{
    height: 1300px;
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 3 columns by default */
    gap: 5px;
    
  }

  .gall-box{
    margin: 10px auto; 
  }


} 

/* media queries for 1487 */

@media (max-width: 1487px){
 
  .footer {
    height: 900px;
  }

  .footer-container {
    height: 850px;
    flex-direction: column;
    align-items: flex-start;
  }

  .foot1 {
   width: 100%;
    height: 590px;
   display: grid;
   grid-template-columns: repeat(2,1fr);
  }

  .foot-m  {
    width: 90%;
    margin: 10px auto;
    
  }

  .foot-bx {
    width:80%;
    margin: 20px;
  }

  .side-social-icons2{
    width: 80%;
  }


  .foot2 {
    width: 60%;
    margin-left: 20px;
  }

  .get-in-touch {
    width: 100%;
    align-items: flex-start;
  }

}

/* media quries for mobile version */

/* media for 724px */

@media(max-width:724px){
  .hero-text{
   height:900px;
   gap: 40px;
  }

  .hero-img{
    height: 400px;
  }
  
  .hero-banner {
    height: 300px;
  }

  .hero-heading {
    height: 350px;
    width: 100%;
  }

  .hero-para {
    height: 100px;
    width: 100%;
  }

  .plan-watch{
    height: 200px;
    width:100%;
    flex-direction: column;
  }

  .plan-text {
    width: 100%;
  }

}

/* what we serve */

@media(max-width: 741px){
  .what-serve {
    height: 1300px;
    /* justify-content: flex-start; */
    /* align-items: flex-start; */
  }

  .serve-container {
    height: 1290px;
    width: 60%;
    display: grid;
    grid-template-columns: repeat(1,10px);
    justify-content: flex-start;
    align-items: center;
    gap: 1px;
    align-items: center;
  }

  .serve-box {
    margin: 10px;
  }


}

/* search destination */

@media(max-width:828px){
  .destination {
    height: 3400px;
  }

  .dest-container{
   height: 3300px;
  }

  .dest-contain{
    height:3000px;
    width: 100%;
    grid-template-columns: repeat(1, 1fr); /* 3 columns by default */
    gap: 5px;
    margin: 10px 
  }

}

/* experiecne */

@media(max-width:570px){

 .exp2-container {
  height: 500px;
 }

 .exp2{
  height: 700px;
 }
 

  .exp2-head {
   height:150px;
  }

  .exp2-para {
    height: 120px;
  }

  .exp2-box {
    flex-direction: column;
    height: 320px; 
  }

  .exp-box {
    width: 100%;
  }

}

/* gallery */

@media(max-width:854px){
  .photo-section {
    height: 2700px;
  }

  .gallery-container {
    height: 2600px;
  }

  .gallery-box{
    height: 2500px;
    grid-template-columns: repeat(1,1fr);
  }
} 

/* prepare yourself */

@media(max-width:474px){
   .prepare-section {
    height: 800px;
   }
    .prepare-container {
      height: 700px;
      gap: 40px;
    }

}

/* fooeter */

@media(max-width:586px){
   .footer{
    height: 1450px;
   }

   .footer-container {
    height: 1400px;
  
   }

   .foot1{
    height: 1200px;
    display: grid;
    grid-template-columns: repeat(1,1fr);
    gap: 1px;
  }
  
  .foot2{
    width: 80%;
  }
  .get-in-touch {
    width: 100%;
  }
}

/* navbar */

@media(max-width:845px){

  #mainlogo{
    margin-right: 0px;
    margin-left: 80px;
  }

  #showbtn{
    margin-right: 80px;
  }
}

@media (max-width:474px) {
  #mainlogo{
    margin-right: 0px;
    margin-left: 100px;
  }

  #showbtn{
    margin-right: 100px;
  }

  .nav-1{
    width: 40%;
  }
}


/* copyright */

