/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell,
      'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
  }
  
  /* ======================
     HEADER
  ====================== */
  .container-head {
    padding: 10px 15px;
    line-height: 1.6;
  }
  
  .bg-green {
    background-color: green;
  }
  
  .container-head a {
    margin: 0 10px;
    color: white;
    text-decoration: none;
    font-size: 14px;
  }
  
  .container-head a:hover {
    text-decoration: underline;
  }
  
  .social-icons {
    list-style: none;
    display: flex;
    gap: 10px;
  }
  
  .social-icons a {
    color: #fff;
    font-size: 18px;
    transition: transform 0.2s;
  }
  
  .social-icons a:hover {
    color: #00b894;
    transform: scale(1.2);
  }
  
  /* Header Logo & Company Name */
 .logo-header {
  max-height: 80px;
  width: auto;
}

.company-name {
  font-size: 1.5rem;
  font-weight: bold;
  color: #008000;
}
  /* ======================
     NAVBAR
  ====================== */
  .nav-link {
    color: #fff !important;
    margin: 0 10px;
    font-weight: 500;
    transition: background-color 0.3s, border-radius 0.3s;
  }
  
  .nav-link:hover {
    background-color: #495057;
    border-radius: 4px;
  }
  
  /* ======================
     ABOUT SECTION
  ====================== */
  .about-section {
    background-color: #f4fdf4;
    padding: 60px 20px;
    color: #333;
  }
  
  .section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 30px;
    color: black;
    position: relative;
  }
  
  .section-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background-color: #00cc66;
    margin: 10px auto 0;
  }
  
  .about-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
  }
  
  .about-content h3 {
    margin-top: 30px;
    font-size: 22px;
    color: #005522;
  }
  
  /* Approach List */
  .approach-list {
    margin-top: 15px;
    padding-left: 20px;
    list-style-type: disc;
    color: #222;
  }
  
  .approach-list li {
    margin-bottom: 10px;
    font-size: 18px;
    line-height: 1.6;
  }
  
  /* Mission & Vision */
  .mission-vision {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 30px;
  }
  
  .mission,
  .vision {
    flex: 1 1 300px;
    background-color: green;
    padding: 25px;
    border-radius: 10px;
    color: antiquewhite; /* moved from inline */
  }
  
  .mission h3,
  .vision h3 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 22px;
  }
  
  /* Responsive for About */
  @media (max-width: 768px) {
    .mission-vision {
      flex-direction: column;
    }
  
    .section-title {
      font-size: 28px;
    }
  
    .about-content p {
      font-size: 16px;
    }
  
    .approach-list li {
      font-size: 16px;
    }
  }
  
  /* ======================
     FOOTER
  ====================== */
  .footer-section {
    background-color: green;
    color: #fff;
    padding: 50px 20px 30px;
    font-family: 'Segoe UI', sans-serif;
    text-align: center;
  }
  
  .footer-content p {
    font-size: 1rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    color: #ddd;
  }
  
  .seperator-in-footer {
    display: block;
    width: 80px;
    height: 3px;
    background-color: #00b894;
    margin: 30px auto;
  }
  
  .social-icon ul {
    padding-left: 0;
    margin: 0 auto;
    display: inline-flex;
    list-style: none;
    gap: 15px;
  }
  
  .social-icon ul li a {
    font-size: 20px;
    color: #fff;
    background: #333;
    padding: 10px;
    border-radius: 50%;
    transition: 0.3s ease;
  }
  
  .social-icon ul li a:hover {
    background: #00b894;
    color: #fff;
  }
  
  .footer-section .copyright {
    font-size: 0.95rem;
    color: #ccc;
    margin-top: 20px;
  }
  
  .footer-section .copyright a {
    color: #00b894;
    text-decoration: none;
  }
  
  .footer-section .copyright a:hover {
    text-decoration: underline;
  }
  
  /* Responsive Footer */
  @media (max-width: 768px) {
    .footer-content p {
      font-size: 0.95rem;
      padding: 0 10px;
    }
  
    .social-icon ul {
      flex-wrap: wrap;
      justify-content: center;
    }
  
    .social-icon ul li a {
      font-size: 18px;
      padding: 8px;
    }
  }
  