*{
    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*/
/*main item*/
.section1{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}
.maindiv1{
    width: 80%;
    padding: 2rem;
    background-color: white;
    border-radius: 0.7rem;
    margin-top: 6rem;
}

  /*Footer Section*/

footer{
    width: auto;
    height: auto;
    padding: 1rem;
    display: flex;
    gap: 10px;
    border-top: 2px solid white;
  }
  .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 ;
  
  }