@import url('https://fonts.googleapis.com/css2?family=Sofadi+One&display=swap');
/*----  font-family: "Sofadi One", system-ui;  -----*/
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Sofadi+One&display=swap');
/*----  font-family: "Roboto", sans-serif;  -----*/
@import url('https://fonts.googleapis.com/css2?family=Playpen+Sans:wght@100..800&display=swap');
/*---- font-family: "Playpen Sans", cursive;  -----*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,700;1,800;1,900&display=swap');
/*---- font-family: poppins;  -----*/


:root{
    --primary-color: #28bf96;
    --primary-color-dark: #209677;
    --text-dark: #111827;
    --text-light: #6b7280;
    --white: #ffffff;
  }
  
  
  *{
      margin: 0%;
      padding: 0%;
      box-sizing: border-box;
      font-family: poppins;
  }
  ::-webkit-scrollbar{
      display: none;
  }
  
  
  nav{
      position: fixed;
      top: 0;
      z-index: 100;
      width: 100%;
      height: 70px;
      background-color: rgba(255, 255, 255, 0.871);
      backdrop-filter: blur(4px);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 50px 0 50px;
      box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
  }
  
  nav .logo{
      font-size: 30px;
      font-weight: 800;
      color: var(--primary-color);
      letter-spacing: 1px;
  }
  
  .nav-menu{
      display: flex;
      list-style: none;
      transition: 0.3s ease-in-out;
  }
  
  .nav-menu li{
      margin: 0 5px;
      padding: 10px 20px;
  }
  
  .nav-menu a{
      text-decoration: none;
      font-size: 18px;
      color: var(--text-dark);
      font-weight: 500;
      border-radius: 8px;
      letter-spacing: 1px;
      transition: all 0.3s ease;
  }
  
  .nav-menu a:hover{
      color: var(--primary-color);
  }
  
  nav .menu-btn i{
      color: var(--primary-color-dark);
      font-size: 30px;
      cursor: pointer;
      display: none;
      transition: 0.3s ease-in-out;
  }
  
  #login_btn{
      background-color: #28bf96;
      border-radius: 6px;
      transition: all 0.3s ease;
  }
  #login_btn>a{
      color: var(--white);
      padding: 10px 20px;
      transition: all 0.3s ease;
  }
  #login_btn:hover{
      background-color: var(--primary-color-dark);
  }
  
  
  @media (max-width: 940px) {
      nav{
          padding: 0 20px 0 20px;
      }
      .nav-menu{
          position: fixed;
          top: 70px;
          left: 0;
          background-color: rgba(255, 255, 255, 0.926);
          height: 100vh;
          width: 100%;
          display: block;
          text-align: center;
          left: -100%;
      }   
      
      .nav-menu li{
          margin: 40px 0;
          width: 100%;
      }
  
      .nav-menu a{
          padding: 10px 100px;
          border: none;
      }
  
      .nav-menu a:hover{
          color: var(--primary-color);
          background: none;
      }
  
  
      nav .menu-btn i{
          display: block;
      }
  }
  

.about-us {
    padding-top: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f4f4f4;
}

.about-container {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 800px;
    text-align: center;
}

.about-container h2 {
    font-size: 2.5rem;
    color: #28bf96;
    margin-bottom: 1rem;
}

.about-container p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #666;
}

.about-content p {
    text-align: justify;
    margin-bottom: 15px;
    font-size: 1rem;
    color: #444;
}



/* Footer Section ========================================================== */

/* Footer */
.footer {
    background-color: #28bf96;
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer .container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-about, .footer-links, .footer-contact {
    flex: 1;
    min-width: 250px;
}

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

.footer p {
    font-size: 1rem;
    color: #f5f5f5;
    line-height: 1.6;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: #ffffffa0;
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid #f5f5f530;
    margin-top: 40px;
}

.footer-bottom p {
    color: #ffffffc0;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .footer .container {
        flex-direction: column;
        text-align: center;
    }
}
