

body, html {
    margin: 0;
    padding: 0;
    font-family: 'Satoshi', sans-serif;;
    overflow-x: hidden;
  }

  h1 {
    font-family: 'Baskervville', serif
  }
  a {
    text-decoration: none;
    color: #262626;
  }
  .h1 {
    font-size: 5rem;
    font-weight: lighter;
    margin: 40px auto 20px;
    text-align: center;
      max-width: 50vw;
  }

  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 50px;
    background-color: white;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 50;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    height: 90px;
  }
  .hamburger-container {
    position: relative;
    display: flex;
    align-items: center;
  }
  .logo {
    font-size: 1.5rem;
    font-weight: bold;
    display: flex;
    gap: 4px;
  }
  
  .nav-links {
    display: flex;
    list-style-type: none;
  }
  
  .nav-links li {
    margin: 0 20px;
  }
  
  .nav-links li a {
    text-decoration: none;
    color: black;
    font-size: 1rem;
  }
  
  .cta-button {
    background-color: #46B97D;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 25px;
    font-size: 1rem;
   
  }
  .btn {
    margin-top: 100px;
    display: inline-block;
  }
  
  .cta-button:hover {
    background-color: #228B22;
  }
  .cancel-button {
    display: none;
    color: black;
    border: none;
    cursor: pointer;
    right: 0;
    top: 0;
    z-index: 2;
    font-size: 2rem;
  }
  .hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
  }
  .hamburger img {
    width: 40px;
  }

  .hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 4px;
    transition: 0.4s;
  }
  /* hero section */
  .admin-hero {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 90vw;
    /* max-width: 1200px; */
    margin: 50px auto;
    padding:  50px;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
  }
  .admin-hero h1,
  .admin-hero p,
  .admin-hero button,
  .admin-hero img {
      /* opacity: 0; Start with invisible elements */
      transform: translateY(50px); /* Move elements down for sliding effect */
      margin: 20px 0; /* Margin for spacing */
  }

  
  .admin-hero p {
    text-align: center;
    color: #004B52;
    width: 50%;
    margin: auto;
    padding-bottom: 50px;
    font-size: 18px;
  }
  .admin-hero button {
    padding: 12px 20px;
    border-radius: 24px;
    margin-bottom: 100px;
    border: none;
    background-color: #46B97D;
    color: white;
  }
  .admin-hero img {
    width: 80%;
    border-radius: 24px;
    border: 4px solid #f5f5f5;
  }

  /* slider */

  .adminslider {
    padding: 100px 0;
    margin-bottom: 100px;
}
.adminslider > h1 {
    font-size: 4rem;
    color: #004B52;
    /* text-align: center; */
    font-weight: normal;
    width: 50%;
}
.adminslidercontainer {
  display: flex;
  overflow: hidden;
  position: relative;
  max-width: 90%;
  margin: 0 auto;
  gap: 20px;
}
.adminsliderflex {
  display: flex;
  align-items: center;
  /* justify-content: center; */
  flex-shrink: 0;
  width: 80%;
  transition: transform 0.5s ease;
  background-color: #F5F5F5;
  border-radius: 48px;
  margin: 0 10px;
  padding: 30px;
  gap: 5rem;
}
.adminsliderflex > img {
  object-fit: cover;
  width: 40%;
  border-radius: 24px;
}
.adminsliderflex  h1 {
 color: #46B97D;
 font-size: 3rem;
 font-weight: normal;

}
.adminslidercontent {
    width: 50%;
    color: #595959;
    /* border: 2px solid black; */
}
.adminslidercontent p {
    width: 80%;
    /* border: 2px solid black; */
}

/* admins why */

.adminswhy h1 {
    margin-bottom: 70px;
}

.whyflex {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    width: 80vw;
    margin: auto;
}
.whycontainer {
    background-color: #f5f5f5;
    border-radius: 24px;
    color: #004B52;
    padding: 20px;
    flex: 1;
    height: 350px;

}
.whycontainer img {
    margin-bottom: 100px;
}
/* ready */
.ready {
    background-color: #f5f5f5;
    padding: 20px 0;
    margin-top: 150px;
}

.votercontainer1 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 80%;
    /* max-width: 1200px; */
    background-color: #91FDC5;
    margin: 50px auto;
    padding:  50px;
    border-radius: 24px;
    position: relative;
  }
  .votercontainer1 h1 {
    font-size: 3.5rem;
    color: #004B52;

  }
  .votergroup2img {
   position: absolute;
   width: 100%;
   bottom: 0;
   left: 0;
   object-fit: contain;
  }
  
  .votercontainer1 p {
    text-align: center;
    color: #004B52;
    max-width: 60%;
  margin: 20px auto;
    /* padding-bottom: 100px; */
  }
  .votercontainer1 button {
    padding: 10px 15px;
    border-radius: 24px;
    margin-bottom: 100px;
    border: 1px solid #D0D5DD;
  font-size: larger;
  }
  /* Faq styles */
.faq-container {
    display: flex;
    padding: 50px;
    justify-content: space-around;
  }
  
  .faq-left {
    max-width: 30%;
  }
  
  .faq-left h2 {
    color: #69a691;
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
  
  .faq-left h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    text-align: left;
  }
  
  .faq-left p {
    font-size: 1rem;
    line-height: 1.5;
    color: #063d33;
  }
  
  .faq-left a {
    color: #063d33;
    text-decoration: none;
  }
  
  .faq-right {
    /* max-width: 50%;
    min-width: 50%; */
    width: 50%;
  }
  
  .faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid #ddd;
  }
  
  .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.1rem;
    padding: 15px 0;
 
  }
  
  .faq-question .icon {
    font-size: 1.5rem;
  }
  
  .faq-answer {
    display: none;
    padding: 10px 0;
    font-size: 1rem;
    color: #555;
  }
  
  .see-more a {
    color: #28A745;
    font-weight: bold;
    text-decoration: none;
    font-size: 1.1rem;
  }
  
  /* footer */
  .footer {
    background-color: #F5F5F5;
    height: 30vh;
    display: flex;
    justify-content: space-between;
    padding: 50px 10rem;
    align-items: center;
  }
  .footer-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  .logo2 {
    font-size: 1.5rem;
      font-weight: bold;
      display: flex;
      gap: 8px;
      
  }
  .footer-icon {
    display: flex;
    gap: 20px;
  }
  .footer-link {
    display: flex;
    flex-direction: column;
    gap: 20px;
    
  }
  .footer-link a {
    text-decoration: none;
    color: #595959;
    font-weight: 700;
  }
  .legal {
    background-color: #F5F5F5;
    padding: 50px 10rem;
    
  
  }
  .legal-text {
    display: flex;
    justify-content: space-between;
    width: 80vw;
    margin: auto;
    border-top: 1px solid black;
  }
  .legal-flex {
    display: flex;
    /* justify-content: space-between; */
    align-items: center;
    gap: 10px;
  }

  @media (max-width: 768px) {
      .h1 {
        font-size: 3rem;
      }
      .navbar {
        position: relative;
        padding: 0px 20px;
      }
      .nav-links {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -100%;
        height: 100%;
        width: 60%;
        background-color: white;
        transition: right 0.3s ease-in-out;
        padding-top: 60px;
        align-items: flex-start;
        text-align: left;
      }
      .nav-links.active {
        right: 0;
      }
      .nav-links li {
        margin: 20px 0;
        color: white;
      }
    
      #btn {
        display: none;
      }
    
      .hamburger {
        display: block;
      }
      .hamburger-container .cancel-button.active {
        display: block;
      }
    
      .hamburger-container .hamburger.active {
        display: none;
      }
      /* Toggle the menu */
      .menu.active {
        display: flex;
      }
    
      

      .admin-hero {
        max-width: 70vw;
        margin: 0px auto;
        /* background-color: red; */
      }
      .admin-hero h1 {
        min-width: 90vw;
       
        
      }
      .admin-hero p {
        min-width: 70vw;
        font-size: larger;
     
      }
      .admin-hero button {
        font-size: larger;
      }
      .admin-hero img {
        min-width: 90vw;
      }
      /* slider */
      .adminslider h1 {
        min-width: 90vw;
        font-size: 3rem;
      }
      .adminslidercontainer {
        display: flex;
        flex-direction: column;
        gap: 10px;
      }
      .adminsliderflex {
        flex-direction: column;
        align-items: center;
      justify-content: center;
      gap: 2px;
      min-width: 90vw;
      padding: 0px 5px;
      border-radius: 16px;
      margin: auto;
      padding-bottom: 20px;
      }
      .adminsliderflex > img {
        width: 100%;
      /* height: auto; */
      /* background-color: red; */
      padding: 0;
      margin: 10px auto;
      border-radius: 8px;
      }
      .adminslidercontent {
        width: 80%;
        /* margin: auto; */
      }
      .adminslidercontent h1 {
        font-size: 32px;
        min-width: 70%;
      }
      .adminslidercontent > div > p {
        /* background-color: red; */
        min-width: 100%;
      }

      /* admins why */
      .adminswhy h1 {
        min-width: 90%;
        margin-top: -40px;
      }
      .whyflex {
        flex-direction: column;
        width: 95vw;
      }
      .whycontainer {
        width: 80vw;
    
    }
/* ready */
.votercontainer1 {
  width: 70vw;
}
      .votercontainer1 h1 {
        font-size: 3rem;
        min-width: 80vw;
        text-align: center;
        /* background-color: red; */
        margin: auto;
      }
      .votercontainer1 p {
        max-width: 90%;
        margin: 10px auto 50px;
      }
      .votercontainer1 button {
        font-size: larger;
      }

    /* faqs */
    .faq-container {
      display: flex;
      flex-direction: column;
      width: 80vw;
    }
    .faq-item {
      width: 80%;
    }
    .faq-left {
      max-width: 80vw;
    }
    .faq-left h1 {
      min-width: 100%;
    }
    .faq-right {
      width: 100vw;
    }
    /* footer */
    .footer {
      flex-direction: column;
      align-items: start;
      padding: 50px 30px;
      gap: 50px;
    }

 .legal {
      padding: 10px 0px;
    }
}








.sltnsection {
  background-color: #F5F5F5;
  padding-bottom: 20px;
}

.section-container {
  display: flex;
  align-items: center;
  gap: 5rem;
  width: 80%;
  max-width: 1200px;
  justify-content: space-between;
  margin: 150px auto 150px;
  /* background-color: red; */
  min-height: 80vh;
  position: relative;
  /* overflow: hidden; */
  /* margin-bottom: 20px; */
}

.text-content {
  flex: 1;
  text-align: left;
}

.text-content h1 {
  font-size: 4rem;
  margin-bottom: 1rem;
  color: #063d33;
  text-align: left;
  /* font-weight: bolder; */
  /* font-weight: 1; */
  
}

.text-content p {
  font-size: 1.2rem;
  color: #46B97D;
  margin-bottom: 2rem;
}

.arrow-buttons {
  display: flex;
  gap: 1rem;
}

.arrow-buttons button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid #46B97D;
  color: #46B97D;
  background-color: transparent;
  cursor: pointer;
  transition: background-color 0.3s;
  size: 30px;
}

.arrow-buttons button:hover {
  background-color: #46B97D;
  color: white;
}

.infocards-container {
  display: flex;
  flex: 1;
  position: relative;
  /* gap: 2400px; */
  /* overflow: hidden; */
  justify-content: space-between;
  background-color: red;
  /* width: 100vw; */
  /* overflow-x: hidden; */
  /* overflow-y:visible; */
  /* width: 400px; */
  height: 400px;
  /* align-items: start; */
}

.infocard {
  /* min-width: 400px; */
  max-width: 400px;
  /* margin-right: 30px; */
  background-color: white;
  padding: 50px 20px;
  color: #004B52;
  border-radius: 24px;
  /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); */
  height: 350px;
  position: absolute;
  top: 0;
  /* bottom: 20; */
  /* opacity: 0; */
  /* transform: translateX(100%); */
  transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* background-color: rebeccapurple; */
  border: 2px solid black;
  /* visibility: visible; Initially hidden */
    transform: translateX(100%);
    margin-right: 2000px;
}

.infocard.active {
  opacity: 1;
  /* transform: translateX(0); */
  visibility: visible;
  transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out, visibility 0s;
  /* margin-right: 200px; */
}

.infocard:first-child {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  /* margin-right: 200px; */
}


.infocard img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}

.infocard h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.infocard p {
  text-align: left;
  margin-bottom: 1rem;
}

.learn-more {
  color: #46B97D;
  font-weight: bold;
  text-decoration: none;
}