@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200&display=swap');

html {
  
  height: 100%;
  
}
* {
  padding: 0;
  margin: 0;
  text-decoration: none;
  list-style: none;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;


}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
}
/* NAVBAR styles */

@keyframes slideInDown {
    from {
      transform: translateY(-100%);
    }
    to {
      transform: translateY(0);
    }
  }
  
  
  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    animation: slideInDown 1.5s ease-out; /* Apply the animation */
    color: #fff;
    z-index: 1000; /* Make sure the navbar appears above other content */
    display: flex;
    justify-content:center;
    align-items: center;
    padding-right: 10%;
    padding-left: 10%;
    background-color: rgba(255, 255, 255, 0.5);
  
  }
  
  .nav-links a {
    color:#204C73;
  }
  

  .nav-logo img{
    width:35%;
    padding-left:8%;
  }
  
  /* NAVBAR MENU */
  .menu {
    
    display: flex;
    gap: 1em;
    font-size: 25px;
    
  }
  .menu li {
    padding: 5px 14px;
  }
  
  .menu li a{
    position: relative;
    color: #204C73;
    font-size: 20px;
    font-weight: 500;
    padding: 6px 0;
    text-decoration: none;
  }
  .menu li a:before{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: #1383A9;
    border-radius: 12px;
    transition: all 0.4s ease;
  }
  .menu li a:hover:before{
    width: 100%;
  }
  .menu li.center a:before{
    left: 50%;
    transform: translateX(-50%);
  }
  .menu li.upward a:before{
    width: 100%;
    bottom: -5px;
    opacity: 0;
  }
  .menu li.upward a:hover:before{
    bottom: 0px;
    opacity: 1;
  }
  .menu li.forward a:before{
    width: 100%;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
  }
  .menu li.forward a:hover:before{
    transform: scaleX(1);
    transform-origin: left;
  }
  
  
  input[type=checkbox] {
    display: none;
  } 
  
  /* HAMBURGER MENU */
  .hamburger {
    display: none;
    font-size: 24px;
    user-select: none;
    color: #204C73;
  }
  
  /* APPLYING MEDIA QUERIES */
  @media (max-width: 768px) {
    .navbar{
      padding-right: 5%;
      padding-left: 2%;
    }
   .menu {
      display:none;
      position: absolute;
      background-color:#fff;
      right: 0;
      left: 0;
      text-align: center;
      padding: 16px 0;
    }
  
    .menu li:hover {
      display: inline-block;
      background-color:#fff;
      transition: 0.3s ease;
    }
  
    .menu li + li {
      margin-top: 12px;
    }
  
    input[type=checkbox]:checked ~ .menu {
      display: block;
    }
  
    .hamburger {
      display: block;
    }
  
    .dropdown {
      left: 50%;
      top: 30px;
      transform: translateX(35%);
    }
  
    .dropdown li:hover {
      background-color: #fff;
    }
  }
  
  





  /* footer styles
   */

footer {
    border-top: 1px solid black;
    padding-top: 40px;
    padding: 5% 12% 0% 12%;
    bottom: 0;
    text-align: center;
  }
  
  .footer-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
  }
  
  .footer-column {
    flex: 1;
    margin-right: 10px;
    
  }
  footer h2{
    color: #555;
    font-weight: bolder;
  }
  .about,
  .helpful-links,
  .contact-us {
    background-color: #fff;
    
   
    text-align: left;
    
  }
  
  .about{
   
    line-height: 2rem; /* You can adjust the value as needed */
  }
  .about p{
  margin-top: 5%;
  
  }
  .about img {
    max-width: 50%;
    height: auto;
  }
  
  .footer-links {
    margin-top: 10%;
    display: flex;
    flex-direction: row; /* Arrange items in a row */
    flex-wrap: wrap; /* Allow items to wrap to the next row if needed */
   
  }
  
  .footer-links li {
    flex: 0 0 50%; /* Each list item takes up 50% of the available width */
    list-style: none;
    padding: 5px 0; /* Adjust spacing between items */
    color: #555;
    font-size: 1rem;
  }
  
  .footer-links a{
    color: #000;
  }
  ul {
    list-style: none;
    padding: 0;
  }
  
  ul li {
    margin-bottom: 10px;
    
  }
  .contact-us p{
    margin-top: 10%; 
    margin-bottom: 10%; 
  }
  .contact-us .row{
    flex-direction: row; /* Arrange items in a row */
    flex-wrap: wrap; /* Allow items to wrap to the next row if needed */
    
  
  }
  @media (max-width: 768px) {
    .footer-grid {
      flex-direction: column;
    }
  
    .footer-column {
      flex: 1;
      padding-top: 5%;
      margin-right: 0;
    }
   
  }