*{
  margin: 0;
  padding: 0;
}
.loaderholder{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #25c5f5bd;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3000;
}
.loader {
  border: 4px solid #f3f3f3;
  border-top: 4px solid #5822c3;
  border-radius: 50%;
  width: 10rem;
  height: 10rem;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.body{
  margin: 0;
  padding: 0;
  background: #25c4f5c2;
  background-repeat: no-repeat;
  overflow-x: hidden;
}
.logo{
  width: 13%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: rgba(32, 185, 212, 0.596);
  z-index: 500;
}
.nav {
position: fixed;
right: 0;
  padding: 1rem;
  margin: 0;
  background-color: rgba(32, 185, 212, 0.596);
  width: auto;
  height: auto;
  border-radius: 0.5rem;
  display: flex;
  justify-content: right;
  align-items: center;
  z-index: 200;
  
}
li{
  display: inline;
  
}
ul{
  list-style: none;
}
li a{
color: white;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
li:last-child{
display: none;
color: white;
}
li:last-child:hover{
cursor: pointer;
}
li a:hover{
background-color: #25c4f5c2;
border-radius: 1rem;
}
.active{
padding: 14px 16px;
background-color: #25c4f5c2;
border-radius: 1rem;
}

.toggle-button{
position: relative;
top: 0;
float: right;
display: none;
flex-direction: column;
justify-content: space-around;
align-items: center;
width: 30px;
height: 21px;
}
.toggle-button:hover{
cursor: pointer;
}
.toggle-button .bar{
width: 100%;
height: 3px;
background-color: white;
border-radius: 1000px;
}


@media (max-width: 600px) {
  .logo{
    width: 20%;
  }
  .toggle-button{
  display: flex;
}

#nav{
 display: none;
 animation: mymove 1s ;
 animation-timing-function: ease-in-out;
}
@keyframes mymove {
  from {opacity: 0;}
  to {opacity: 1;}
}

.nav{
  flex-direction: column;
}
.nav ul{
  display: flex;
  flex-direction: column;
}
.nav ul li{
  margin-top: 0.5rem;
}
li a{
  padding: 3px 8px;
}
.active{
  padding: 3px 8px;
}
}
/*navbar end*/

/*parallax*/

.parallax{
  position: relative;
    width: auto;
    height: 39rem;
    display: flex;
    justify-content: center;
    align-items: center;
  
}
#text{
    position: relative;
    color: #fff;
    font-size: 6rem;
}
.parallax img{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
@media (max-width:600px){
  .parallax{
    height: 20rem;
  }
}


/*second section*/
.second-section{
  position: relative;
    background-image: url(Images/bg8.webp);
    background-repeat: no-repeat;
    background-size: cover;
 width: auto;
 height: auto;
 padding: 2rem;
 display: flex;
 justify-content: center;
 align-items: center;
 justify-content: space-around;
}
.second-section-part1{
  position: relative;
    background-image: url(Images/bg8.webp);
    background-repeat: no-repeat;
    background-size: cover;
 width: auto;
 height: auto;
 padding: 2rem;
 display: flex;
 justify-content: center;
 align-items: center;
 justify-content: space-around;
}
.second-section-div{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 1rem;
    gap: 5px;
}
.second-section-div h1{
  font-size: 5rem;
}
.second-section-div img{
    width: 100%;
    height: 100%;
    border-radius: 0.8rem;
}
.second-section-div a{
  text-decoration: none;
}
.btn{
    font-size: 1.1rem;
    position: relative;
    width: 10rem;
    height: 3rem;
    background: rgb(88,34,195);
    background: linear-gradient(300deg, rgba(88,34,195,1) 26%, rgba(45,253,198,1) 78%);
    text-align: center;
    border-radius: 1.5rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
    transition: 0.2s;
  }
  .btn:hover{
    transform: scale(1.09,1.09);
    cursor: pointer;
  }

  @media (max-width:600px){
   .second-section{
    flex-wrap: wrap;
   }
   .second-section-part1{
    flex-wrap: wrap-reverse;
   }
   .second-section-div h1{
    font-size: 2rem;
   }
   
  }



  /*third section*/
  .third-section{
    padding: 1rem;
    width: auto;
    height: 39rem;
    background-color: #1a131f;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .third-section h1{
    font-size: 5rem;
    color: white;
  }
  .container-third-content{
    width: 90%;
    height: 90%;
    padding: 1rem;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .container-third-content a{
    text-decoration: none;
  }
  .card4{
    width: 30%;
    height: 30%;
    background-color: white;
    border-radius: 0.8rem;  
  }
  .card4 img{
    width: 100%;
    height: 100%;
    object-fit: cover ;
    border-radius: 0.8rem; 
  }
  .card4 p{
    font-weight: bold;
    font-size: 2rem;
    text-align: center;
    position: relative;
    bottom: 24%;
    display: none;
    color: black;
    
  }
  .card4:hover img{
    opacity: 0.3;
    cursor: pointer;
  }
  .card4:hover p{
    display: block;
  }
  .card4:nth-child(n+3) {
    display: none;
  }

   
 @media (max-width:600px){
  .card4 p{
    font-size: 1.5rem;
    bottom: 18%;
  }
  .card4{
    width: 100%;
  }
  .third-section h1{
    font-size: 3rem;
  }
  .container-third-content{
    flex-wrap: wrap;
  }
 }
 
 


/*Footer Section*/

footer{
  width: auto;
  height: auto;
  padding: 1rem;
  display: flex;
  gap: 10px;
}
.foo-card{
  width: 100%;
  height: auto;
 padding: 0.8rem;  
 border-right: 2px solid white;
}
.foo-card:first-child img{
  width: 100%;
}

.foo-card:nth-child(2) {
  display: flex;
  flex-direction: column;
}
.foo-card-package{
  display: flex;
  justify-content: start;
  width: auto;
  height: auto;
  align-items: start;
  background-color: grey;
  border-radius: 10px;
  margin-top: 0.4rem;
  gap: 10px;
  transition: 0.3s;
}
.foo-card-package:hover{
  transform: scale(1.07);
  cursor: pointer;
}
.foo-card-package img{
  width: 30%;
  border-radius: 10px;
}
.foo-card:last-child{
  border: none;
}
.contact{
  display: flex;
  gap: 0.4rem;
  margin-bottom: 1rem;
}
.social-icon{
  display: flex;
  gap: 1rem;
  font-size: 3rem;
}
.social-icon i:hover{
   transform: scale(1.1);
  cursor: pointer;
}
@media (max-width:600px) {
  footer{
    flex-direction: column;
    justify-content: center;
  align-items: center;
  }
  .foo-card{
    border-bottom: 2px solid white;
    border-right: none;
  }
}

/*copyrights*/
.copyrights{
  position: relative;
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 1rem;
  color: white;
  background:#20364d ;

}