* {
    padding: 0;
    margin: 0;
  }
  body {
    margin: 0;
    padding: 0;
    overflow-x: hidden; 
    background: linear-gradient(to right, #a8c8d8, #e0e6ed, #ffffff, #e0e6ed, #a8c8d8);
    font-family: Trebuchet MS, sans-serif;
   
  }



  /* ---------------------header----------------------------- */
  header {
    background-color: #000000;
    color: #fff;
    padding: 10px 0;
    top: 0;
    width: 100%;
    z-index: 1000;
    position:fixed;
  }
  
  .navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
  }
  
  .logo-left, .logo-right {
    width: 200px; 
    margin: 0; 
    padding-right:20px;
  }
  
  nav {
    flex-grow: 1;
    display: flex;
    justify-content: flex-end;
    padding-right: 20px;
  }
  
  .menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 60px;
    font-weight: 600;
    font-family: Trebuchet MS, sans-serif;
  }
  
  .menu li {
    display: inline;
  }
  
  .menu li a {
    text-decoration: none;
    color: #ffffff;
    font-size: 16px;
    transition: color 0.3s;
  }
  
  .menu-toggle {
    display: none; /* Hidden by default */
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
  }
  
  
  
  .menu li a:hover {
    color: #4dc1e7; /* Text color on hover */
  }


/* ___________________________ABOUT US___________________________ */


  #about-us {
    padding: 50px 0;
    text-align: center;
    padding-top: 140px;
  }
  
  .about-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: justify
  }
  
  
  .about-container p {
    color: #000000;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  .about{
    padding-bottom: 30px;
  }
  .about h2{
    font-size: 39px;
  }
  .about h2 span{
    text-align: center;
    color: #25b4e8;
    font-size: 39px;
  
  }
  .end{
  width: 100%;
  height: 13px;
  color: #6aadc5;
  background-color: #25b4e8;
  border: none;
  }


  /* ---------------------Footer-------------------------------------- */

footer {
  background-color: #020202;

  color:white;
  text-align: center;
}

.icons {
  
  background-color:#181616;
  padding-bottom: 5px;
padding-top: 5px;
align-items:center;
}

.icons a {
  margin: 10px 10px;
  
}

.text {
  display: flex;
  justify-content: space-around;
  padding-bottom: 20px;
  padding-top: 30px;
  align-items:justify;
  
}

.column {
  width: 30%; /* Adjust width as needed */
  text-align: left;
  line-height:30px;
  font-size:15px;
  font-family: Trebuchet MS, sans-serif;
}

.top{
  position: fixed;
  bottom: 2.1rem;
  right: 2.1rem;
}
.top i{
  color: #25b4e8;
  background:  #25b4e8;
  font-size: 35px;
  padding: 7px;
  border-radius: 2rem;
}
/* --------Responsiveness------------------------------------- */
  @media (max-width: 768px) {

/* ------------header----------------------------- */



main {
  padding-top: 140px; /* Adjust based on header height for smaller screens */
}
header {
  padding: 5px 0;
  /* background-color: rgba(0, 0, 0, 0.8); Less opaque background color */
  background-color:black;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;/
}

.navbar-container {
  flex-direction: column;
  align-items: flex-start;
  padding: 0px 30px; /* Adjust padding to reduce overall size */
}

.logo-left, .logo-right {
  width: 120px; /* Reduce the width of the logos */
  margin-bottom: 5px;
  
  /* Increase margin-bottom for more spacing */
}

.logo-right {
  width: 120px; 
  margin-bottom: 5px;
  padding-left: 15px;
  
  /* Increase margin-bottom for more spacing */
}

nav {
  flex-direction: column;
  align-items: flex-start; /* Align the menu items to the right */
  width: 100%;
  
}

.menu {
  display: none;
  flex-direction: column;
  align-items: flex-end; /* Align menu items to the right */
  width: 100%;
  gap: 30px;
}



.menu li {
  width: 100%;
  border-top: 1px solid #fff;
  text-align: left;
  padding: 5px;
  padding-top: 20px; /* Adjust padding to reduce overall size */
  padding-left: 150px; /* Add padding from the left */
}

.menu li:first-child {
  border-top: none;
}

.menu-toggle {
  padding-right: 15px;
  padding-left: 15px; /* Adjust the padding-right */
  display: inline-block;
  align-self: flex-end;
}


.show-menu {
  display: flex;
  padding-left: 22px;
  padding-bottom: 30px;
}

/* _______________________________about us_______________________ */

    #about-us {
        padding-top: 35px;
        /* padding-bottom: 40px;  */
      }
      
      .about-container {
        max-width: 82%; 
        margin: 0 auto;
      }
      
      .about h2 {
        font-size: 25px;
      }
      
      .about h2 span {
        font-size: 25px;
      }
      .about-container p {
        font-size: 14px; 
        line-height: 1.5; 
        color:black;
        margin-bottom: 15px; 
        font-family: Trebuchet MS, sans-serif;
      }
      
      .end {
        width: 100%;
        height: 10px; 
      }
      
      /* -----------------footer----------------------- */

      .footer-visible{
        max-width:100%;
      }
        footer .text {
          flex-direction: column;
          max-width:80%;
          align-items: center;
          text-align: center;
          
        }
      
        footer .column {
          margin: 5px 0;
          padding: 10px;
          width: 80%;
          font-size:11px;
          padding-left:70px;
          text-align: center;
          line-height:20px;
          
        }
      
        footer .icons img {
          width: 25px;
          margin: 5px;
        }
    
  }