/* ===================================
   Global Reset & Base Styles
====================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #fff;
  color: #333;
}

/* ===================================
   Navbar
====================================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  background-color: white;
  color: #001f3f;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 30px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.logo img {
  height: 70px;
}


.menu-toggle {
  display: none;
  font-size: 28px;
  color: #001f3f;
  cursor: pointer;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
  align-items: center;
}


.nav-links li a {
  color: #001f3f;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 8px 12px;
  transition: color 0.3s ease, border-color 0.3s ease;
  border-bottom: 2px solid transparent;
}

.nav-links li a:hover,
.nav-links li a.active {
  color: #ff7f00;
  border-bottom: 2px solid #ff7f00;
}

.nav-links li a.btn-link {
  background-color: #ff7f00;
  color: white !important;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: 600;  
  transition: background-color 0.3s ease;
}

.nav-links li a.btn-link:hover {
  background-color: #e86e00;
}

/* Responsive Navbar */
  @media (min-width: 769px) and (max-width : 1010px){
    .nav-links{
      gap: 0px;
      text-align: center;
    }
  }
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 20px;
  }

  .menu-toggle {
    display: block;
    position: absolute;
    top: 20px;
    right: 20px;
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
    background-color: white;
    padding: 10px 0;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease-out;
  }

  .nav-links.active {
    max-height: 500px;
  }

  .nav-links li {
    width: 100%;
    text-align: center;
    padding: 12px 0;
  }

  .nav-links.active li {
    opacity: 1;
    transform: translateY(0);
  }

  .nav-links li a {
    width: 100%;
    color: #001f3f;
  }
  .nav-links li a.btn-link {
    width: auto;
    margin: auto;
  }
}
  
  /* About Home Section  */
  .about-home {
    width: 100%;
    height: 500px;
    background: url('/images/About-home-image.png') center/cover no-repeat;
  }
  
  /* About Us Section */
  .about-us {
    background-color: #f7f9fa;
    padding: 80px 20px;
  }
  
  .about-heading {
    text-align: center;
    font-size: 2.8rem;
    color: #001f3f;
    font-weight: bold;
    margin-bottom: 30px;
    text-transform: uppercase;
  }
  
  .about-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
    gap: 20px;
  }
  
  .about-content {
    flex: 1 1 55%;
    margin-left: 60px;
    max-width: 650px;
  }
  
  
  .about-content h2 {
    font-size: 2.3rem;
    font-weight: bold;
    margin-bottom: 50px;
    color: #ff7f00; 
  }
  
  .about-content p {
    font-size: 1.2rem;
    color: #001f3f;
    line-height: 1.8;
  }
  
  .about-image {
    flex: 1 1 40%;
  }
  
  .about-image img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    max-width: 500px;
    height: 600px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1)
  }
  
  /* ============== Mission Section ============== */
  .mission {
    background-color: #ff7f00;
    padding: 80px 20px;
    color: white;
    text-align: center;
  }
  
  
  .mission-heading {
    font-size: 2.5rem;
    font-weight: bold;
    color: #001f3f;
    margin-bottom: 40px;
    text-transform: uppercase;
  }
  
  
  
  .mission-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
  }
  .mission-card {
    background-color: white;
    color: #001f3f;
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
    padding: 30px 25px;
    flex: 1 1 300px;
    max-width: 350px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
  }

  .mission-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  }
  .mission-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #001f3f  ;
  }

  .mission-card p {
    font-size: 1rem;
    line-height: 1.6;
  }
  
  /* ============== Responsive Design ============== */
  @media (max-width: 768px) {
    .about-row{
      flex-direction: column;
      text-align: center;
    }
  
    .about-content{
      flex: 1 1 100%;
      text-align: left;
    }

    .about-content h2 {
      font-size: 1.8rem;
    }
  
    .about-image img {
      max-width: 100%;
    }
    .mission-heading {
      font-size: 2rem;
    }
  
    .mission-card {
      max-width: 100%;
    }
  }
  
  /* Footer Section */
  .site-footer {
    background-color: #001f3f;
    color: white;
    padding: 40px 20px 20px;
    font-size: 1.25rem;
  }
  
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .footer-column {
    flex: 1 1 50px;
  }
  
  .footer-column h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #ff7f00;
  }
  
  .footer-column ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-column ul li {
    margin-bottom: 10px;
  }
  
  .footer-column ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
  }
  
  .footer-column ul li a:hover {
    color: #ff7f00;
  }
  
  .footer-column p {
    margin: 8px 0;
  }
  
  .social-icons a {
    margin-right: 10px;
    display: inline-block;
  }
  
  .social-icons img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
    transition: filter 0.3s;
  }
  
  .social-icons a:hover img {
    filter: brightness(0.8) invert(0.8) sepia(1) saturate(5) hue-rotate(20deg);
  }
  
  .footer-bottom {
    text-align: center;
    margin-top: 30px;
    font-size: 1.2rem;
    color: #ccc;
    border-top: 1px solid #444;
    padding-top: 15px;
  }
  .footer-bottom-dev {
    margin-top: 20px;
    text-align: right;
    font-size: 1rem;
    color: #ccc;
    /* font-weight: bold; */
  }
  .footer-bottom-dev b{
    text-decoration: underline;
  }
  
  /* Footer Responsive */
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      text-align: center;
    }
  
    .footer-column {
      margin-bottom: 30px;
    }
  
    .social-icons a {
      margin: 0 8px;
    }
}
/* Section spacing improvement */
@media (max-width: 480px) {
    section {
      padding-bottom: 40px;
    }
  }
  
  /* Adjust nav link layout on small screens */
  @media (max-width: 768px) {
    .nav-links li {
      width: 100%;
      padding: 12px 0;
    }
  }