@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');
*{
  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 effect*/
#top{
    position: relative;
    width: 100%;
    height: 40rem;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}
#top::before{
    content:'';
    position: absolute;
    bottom: 0;
    left: 0;
    height:200px;
    width: 100%;
    background:linear-gradient(to top,#fff,transparent);
    z-index: 100;
}
#man{
    top: inherit;
    bottom: 0;
}
section img{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}
#text{
    position: relative;
    color:white;
    font-size: 10rem;
}
@media (max-width:600px){
  #top{
    height: 22rem;
  }
  #man{
    display: none;
  }
  #text{
    font-size: 3.5rem;
  }
}


/*second section*/
.second-section{
    position: relative;
    width: auto;
    height: auto;
    background-color: #fff;
    margin: auto;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cardholder1{
    width: auto;
    height: auto;
    padding: 2rem;
    display: flex;
    gap:2rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.card1{
    width: auto;
    height: auto;
    border-radius: 2.2rem;
    background: linear-gradient(315deg, #ffffff, #e1e1e1);
    box-shadow:  -13px -13px 13px #9e9e9e,
             13px 13px 13px #ffffff;
    transition: 0.05s;
}
.card1:hover{
  transform: scale(1.02,1.02);
  cursor: pointer;
}
.cardholder1 img{
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 2.2rem;
}



/*third section*/
.third-section{
  width: auto;
  height: 40rem;
}
.third-section-div1{
  width: 100%;
  height: 100%;
  background-image: url(Images/bg2.webp);
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.6;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hedingholder{
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
}
.hedingholder h2{
  font-size: 3rem;
  color: white;
  font-family: serif;
}
.hedingholder h4{
  font-size: 1.5rem;
  font-family: serif;
  color: white;
}
.btn{
  font-size: 1.1rem;
  position: relative;
  bottom: -1.3rem;
  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;
}

/*fourth section*/
.fourth-section{
  width: auto;
  height: auto;
}
.fourth-section-div1{
  width: auto;
  height: auto;
  padding: 2rem;
 
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.contentholder1{
  width: auto;
  height: auto;
  padding: 2rem;
}

.contentholder1 h2{
  font-size: 4rem;
  color: black;
  font-family: serif;
  text-align: center;
}
.contentholder1 h4{
  font-size: 1.5rem;
  font-family: serif;
  color: black;
  text-align: center;
}
@media (max-width:600px)
{
  .contentholder1 h2{
    font-size: 2rem;
  }
  .contentholder1 h4{
    font-size: 1rem;
  }
}
/*fifth section*/
.fifth-section{
  width: auto;
  height: auto;
  padding: 1rem;
  display: flex;
  justify-content: center;
  background-color: white;
}
.contentholder2{
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
}
.contentholder2 h2{
    Font-size: 3rem;
    padding: 1rem;
}
.cardholder5{
  width: 100%;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
}
.card4{
  width: 20rem;
  height: 28rem;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: 0.5s;
  overflow-y: hidden;
  overflow-x: hidden;
}
.card4:hover, .card4:hover .testimonial{
  transform: scale(1.05,1.05);
  bottom: 92%;
}
.card4 img{
  width: 100%;
  height: 100%;
  position: relative;
  border-radius: 0.5rem;
}
.card4 a{
  text-decoration: none;
  color: black;
}
.testimonial{
  width: auto;
  height: 100%;
  position: relative;
  bottom: 17.5%;
  background-color: #25c5f5bd;
  transition: 0.5s linear;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.testimonial h1{
  font-size: 2.5rem;
  color: white;
  text-align: center;
}
.testimonial-profile{
  max-width: auto;
  height: auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
}
.testimonial-profile img{
  max-width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background-color: blue;
}
@media (max-width:600px){
  .card4{
    width: 10rem;
    height: 18rem;
    margin-top: 0.5rem;
  }
  .contentholder2 h2{
    font-size:2rem;
  }
  .testimonial{
    padding: 0.5rem;
    gap: 5px;
    bottom: 15%;
  }
  .testimonial h1{
    font-size: 1.5rem;
  }
  .testimonial p{
    font-size: 0.7rem;
  }
  .testimonial-profile h3{
    font-size: 0.8rem;
  }
  .card4:hover .testimonial{
    bottom: 100%;
  }
}



/*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 ;

} 
  
  
  
  
  
  
  
  
  