
  /* Header Styles */
  .header2 {
    color: var(--text-light);
  }
  
  .header2 .logo img {
    height: 45px;
    display: block;
    transition: opacity 0.3s ease;
    cursor: pointer;
    margin-bottom: 20px;
  }
  
  .navbar {
    position: relative;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: transparent;
    padding: 40px 30px;
    z-index: 1000;
    transition: background-color 0.3s ease;
  }
  
  .navbar.scrolled {
    background-color: rgba(0, 37, 79, 0.9);
    padding: 20px 30px 0px;
    position: relative;
  }
  
  .nav-links {
    display: flex;
    gap: 20px;
    list-style: none;
    text-transform: uppercase;
  }
  
  .nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 15px;
    padding: 5px 10px;
    transition: border-bottom 0.3s ease;
    border-bottom: 2px solid transparent; 
  }
  
  .nav-links a:hover {
    color: var(--hover-color);
    border-bottom: 2px solid var(--hover-color);
  }
  
  .contactus {
    font-weight: 600;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    fill: var(--secondary-color);
    color: var(--secondary-color) !important;
    padding: 10px;
    background-color: var(--accent-color);
    border-radius: 50px;
  }
  
  .hamburger {
    display: none;
    font-size: 24px;
    color: var(--text-light);
    cursor: pointer;
  }
  /* Section Styles */
  .section {
    padding: 30px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer {
    background-color: var(--footer-background);
    color: var(--footer-text-color);
    padding: 40px 20px;
    font-family: "Montserrat", sans-serif;
  }
  
  .footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
  }
  
  .footer-left,
  .footer-center,
  .footer-right {
    flex: 1;
    text-align: center;
  }
  
  .footer-logo {
    max-width: 200px;
    margin-bottom: 20px;
  }
  
  .footer-description {
    font-size: 1rem;
    margin-bottom: 15px;
    color: var(--footer-text-color);
  }
  
  .social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
  }
  
  .social-icon {
    color: var(--footer-text-color);
    font-size: 1.5rem;
    transition: color 0.3s ease;
  }
  
  .social-icon:hover {
    color: var(--footer-link-hover);
  }
  
  .footer-center h3,
  .footer-right h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: bold;
  }
  
  .footer-center p,
  .footer-center a {
    color: var(--footer-text-color);
    font-size: 0.9rem;
  }
  
  .footer-center a {
    color: var(--footer-link-hover);
    text-decoration: none;
  }
  
  .footer-center a:hover {
    text-decoration: underline;
  }
  
  .footer-nav {
    list-style: none;
    padding: 0;
    font-size: 0.9rem;
    text-align: left;
  }
  
  .footer-nav li {
    margin-bottom: 10px;
  }
  
  .footer-nav a {
    color: var(--footer-text-color);
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .footer-nav a:hover {
    color: var(--footer-link-hover);
  }
  
  .footer-bottom {
    text-align: center;
    color: var(--footer-link-hover);
  }
  
  .footer-bottom p {
    color: var(--footer-text-color);
    font-size: 0.9rem;
  }
  
  .footer-center p,
  .footer-right p {
    text-align: left;
  }
  .footer-hr {
    border: 0;
    border-top: 1px solid var(--footer-link-hover); 
    margin: 10px auto; 
    width: 80%;        
    opacity: 0.5;  
  }

  
  @media (max-width: 768px) {
    .nav-links {
      display: none;
      flex-direction: column;
      background-color: var(--primary-color);
      position: absolute;
      top: 60px;
      right: 0;
      width: 100%;
      text-align: center;
    }
  
    .nav-links.open {
      display: flex;
      padding: 25px;
    }
  
    .hamburger {
      display: block;
      margin-bottom: 18px;
    }
    .footer-container {
      flex-direction: column;
      text-align: center;
    }
  
    .footer-left,
    .footer-center,
    .footer-right {
      max-width: 100%;
      margin-bottom: 20px;
    }
    .footer-hr {
      width: 100%;        
    }  
    .flex-right{
      width: 40%;
    }
  }
  @media (max-width: 480px) {
    .footer-logo {
      max-width: 120px;
    }
  
    .footer-description {
      font-size: 0.9rem;
    }
  
    .footer-center h3,
    .footer-right h3 {
      font-size: 1.1rem;
    }
}