*{
    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 ease;
  }
  @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*/



/*second section*/
  .second-section{
    width: auto;
    height: auto;
    display: flex;
    justify-content: center;
    padding: 2rem;
  }
  form{
    position: relative;
    top: -50px;
    width: auto;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    background: rgb(88,34,195);
    background: linear-gradient(1501deg, #5822c3 26%, rgba(45,253,198,1) 78%);
    border-radius: 10px;
    padding: 1rem;
  }
  form h1{
     font-size: 2rem;
  }
  
  .formsections{
    display: flex;
    gap: 2rem;
    margin-top: 4vh;
  }
  .form-section1{
    display: flex;
    flex-direction: column;
    align-items: start;
    width: 100%;
    height: auto;
    padding: 1rem;
  }
  .form-section2{
    display: flex;
    flex-direction: column;
    align-items: start;
    width: 100%;
    height: auto;
    padding: 1rem;
  }
  .formsections input{
    width: 15rem;
    padding: 1rem;
    border-radius: 9999px;
    border: none;
    margin-top: 0.2rem;
  }
  .formsections label{
    margin-top: 0.5rem;
  }
  .btn1{
    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;
  }
  .btn1:hover{
    transform: scale(1.09,1.09);
    cursor: pointer;
  }
  .btn1 a{
    color: black;
    text-decoration: none;
  }
 @media (max-width:600px){
  .formsections input{
    width: 100%;
    padding: 0.3rem;
  }

  .formsections{
    flex-wrap: wrap;
    gap: 0;
    margin-top: 0;
  }
  .form-section2{
      padding-top: 0;
  }
  .form-section1{
    padding-bottom: 0;
  }
  .btn1{
    width: 7rem;
    height: 2rem;
  }
  .second-section{
    padding-bottom: 0.3rem;
  }
 }
 






  

/*second section end*/


/*third section*/
.third-section{
  position: relative;
  width: auto;
  height: auto;
  background-image: url(Images/background1.webp);
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
 padding: 1rem;
  
}
.third-section h1{
  font-size: 3rem;
  font-family: sans-serif;
  position: relative;
  color: black;
}

.cardholder{
  position: relative;
  margin-top: 3rem;
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6rem;
  padding: 1rem;
}



.flip-card {
  background-color: transparent;
  width: 20rem;
  height: 30rem;
  border: 1px solid #fdfcfc;
  perspective: 1000px; /* Remove this if you don't want the 3D effect */
  border-radius: 2rem;
  margin-top: 2rem;
}

/* This container is needed to position the front and back side */
.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Do an horizontal flip when you move the mouse over the flip box container */
.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

/* Position the front and back side */
.flip-card-front, .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden; /* Safari */
  backface-visibility: hidden;
  border-radius: 2rem;
}
.flip-card-front img{
  border-radius: 2rem;
}

/* Style the front side (fallback if image is missing) */


/* Style the back side */
.flip-card-back {
  background-color: rgba(30, 143, 255, 0.938);
  color: white;
  transform: rotateY(180deg);
  padding: 1rem;
}

.cardbtn{
  position: relative;
  top: 1rem;
  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;
}
.cardbtn:hover{
  transform: scale(1.09,1.09);
  cursor: pointer;
}
@media (max-width:600px){
  .flip-card{
    margin-top: 0rem;
  }
  .cardholder{
    gap: 2rem;
    flex-wrap: wrap;
  }
}




/*third section end*/

/*fourth section*/

.widget-section{
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 2rem;
}
.section-heading{
  font-size: 2rem;
  font-family: sans-serif;
  position: relative;
  color: black;
}

.cardholder2{
  width: 98%;
  height: auto;
  display: flex;
  margin: auto;
  margin-top: 1rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.section-fouth-card{

  width: 18rem;
  height: 100%;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
}
.section-fouth-card img{
    width: 100%;
    height: 100%;
    opacity: 0.9;
    cursor: pointer;
    border-radius: 0.5rem;
  }
  .expabout{ 
    display: flex;
    gap: 10px;
    flex-direction: column;
  }
.btn{
  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){
  .section-fouth-card{
    width: 10rem;
    margin-top: 1rem;
  }
  .btn{
    width: 7rem;
    height: 2rem;
  }
  .section-fouth-card:last-child h2{
      font-size: 1rem;
  }

  
}
/*fourth section end*/


/*fifth section*/
.fifth-section{
  width: auto;
  height: auto;
  background-image: url(Images/background1.webp);
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 2rem;
}
.fifth-section-heading{
  font-size: 2rem;
  font-family: sans-serif;
  position: relative;
  color: black;
  margin-bottom: 2rem;
}


.cardholder3{
  width: 100%;
  height: auto;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.fifth-section-card{
  width: 15rem;
  height: 15rem;
  border-radius: 26px;
box-shadow: inset 7px -7px 13px #dcc0e1,
            inset -7px 7px 13px #f8d8fd;
text-align: center;
padding: 0.5rem;
}
.fifth-section-card img{
  width: 8rem;
  height: 8rem;
}
.fifth-section-card h3{
  font-size: 1rem;
  font-family: sans-serif;
}
.fifth-section-card a{
    text-decoration: none;
}
.fifth-section-card-btn{
  font-size: 1.1rem;
  position: relative;
  bottom: -1.3rem;
  width: auto;
  height: auto;
  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;
  padding: 0.5rem 1rem;
}
.fifth-section-card-btn:hover{
  transform: scale(1.09,1.09);
  cursor: pointer;
}

@media (max-width:600px){
  .fifth-section-card{
    width: 6rem;
    height: 6rem;
    padding: 15px;
    margin-top: 10px;
  }
  .fifth-section-card img{
    width: 3rem;
    height: 3rem;
  }
  .fifth-section-card-btn{
    font-size: 1rem;
    width: 5rem;
    padding: 0 0.8rem;
  }
}


/*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 ;

}







