header{
    display: block;
}
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
div{
  display: block;
  unicode-bidi: isolate;
}
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.5;
     color: black;
     background-color: #fff;
}
.container-head{
    padding: 40px;
    line-height: 35px;
}
.bg-green{
    background-color: green;
}
div{
  display: block;
  unicode-bidi: isolate;
}
header .text-left0, .text-left1, .text-left2 {
 margin: 0px 40px;
 color: white;

 }
header a{
    text-decoration: none;
    padding: 20px;
}
a{
    background-color: transparent;
}

.social-icons{
    float: right;
    list-style: none;
    padding: 0;
    margin: 0;
    overflow: hidden;
}
.social-icons li{
  float: left; 
  margin-right: 10px; 
}
.social-icons a {
 text-decoration: none;
 color: #fff; 
 font-size: 24px; 
 } 
 .social-icons li a:hover {
  background-color: #00b894;
  color: white;
  transform: scale(1.1);
  border-color: #00b894;
}
 .row {
width: 100%;
overflow: hidden;  
padding: 10px 0;
}

.headtop {
    background-color: #f5f5f5;
    padding: 20px 0;
    border-bottom: 2px solid #ccc;
  }
  @media screen and (max-width: 480px) {
    .container-head a {
      font-size: 12px;
    }
    .social-icons a {
      justify-content: center;
    }
  
    .headtop h1 {
      font-size: 20px;
    }
  
    .headtop h3 {
      font-size: 16px;
    }
  }
  
  .logo-header {
    height: auto; 
    width: 160PX;
    margin-right: 15px;
  }
  .company-name {
    font-size: 40px;
    font-weight: 600;
    color: #2e8b57;
    margin: 0;
    white-space: nowrap;
  }
  
  @media (max-width: 768px) {
    .logo-header {
      height: 40px; 
      margin-right: 10px;
    }
  
    .company-name {
      font-size: 16px;  
      white-space: normal; 
    }
  }
  
  @media (max-width: 480px) {
    .col-12 {
      flex-direction: column;   
      text-align: center;
    }
  
    .logo-header {
      margin: 0 0 8px 0; 
    }
  
    .company-name {
      font-size: 14px;
    }
  }
  .row::after {
    content: "";
    display: table;
    clear: both;
  }   

  /* Navbar */
.navbar {
    background-color: green;
    padding: 30px 0;
  }
  
  .navbar-nav {
    float: left;
    list-style: none;
    padding: 10px 15px;
    margin: 0;
    display: block;
    justify-content: space-around;
  }
  
  .nav-item {
    float: left;
    font-size: 15px;
    padding: 5px 30px;
    position: relative;
  }
  
  .nav-link {
    display: block;
    padding: 10px 15px;
    color: white;
    text-decoration: none;
  }
  
  .nav-link:hover,
  .dropdown-item:hover {
    background-color: #495057;
  }
  
  .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    z-index: 1000;
    background-color: #343a40;
    border: none;
    padding: 0;
  }
  
  .dropdown-item {
    padding: 10px 15px;
    display: block;
    color: white;
    text-decoration: none;
    white-space: nowrap;
  }
  
  .dropdown-menu.show {
    display: block;
  }
  
  @media screen and (max-width: 768px) {
    .navbar-nav {
      flex-direction: column;
      align-items: stretch;
    }
  
    .dropdown-menu {
      position: static;
      width: 100%;
    }
  }
  /*About us*/
  .about-section {
    background-color: #f4fdf4;
    padding: 60px 20px;
    font-family: 'Segoe UI', sans-serif;
    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: 22px;
    line-height: 1.7;
    margin-bottom: 20px;
  }
  
  .about-content h3 {
    margin-top: 30px;
    font-size: 22px;
    color: #005522;
  }
  
  .approach-list {
    margin-top: 15px;
    padding-left: 20px;
    list-style-type: disc;
    color: #222;
  }
  
  .approach-list li {
    margin-bottom: 10px;
    font-size: 22px;
    line-height: 1.6;
  }
  
  .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;
  }
  
  .mission h3,
  .vision h3 {
    color: black;
    margin-bottom: 10px;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .mission-vision {
      flex-direction: column;
    }
  
    .section-title {
      font-size: 28px;
    }
  
    .about-content p {
      font-size: 15px;
    }
  }
  
  /*Footer*/
  .footer-section {
    background-color: green;
    color: #fff;
    padding: 50px 20px 30px;
    font-family: 'Segoe UI', sans-serif;
  }
  
  .footer-about-container {
    margin-bottom: 30px;
  }
  
  .footer-content p {
    font-size: 1rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    color: #ccc;
  }
  
  .seperator-in-footer {
    display: block;
    width: 80px;
    height: 3px;
    background-color: #00b894;
    margin: 30px auto;
  }
  
  .social-icon {
    margin: 20px 0;
  }
  
  .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: #aaa;
    margin-top: 20px;
  }
  
  .footer-section .copyright a {
    color: #00b894;
    text-decoration: none;
  }
  
  .footer-section .copyright a:hover {
    text-decoration: underline;
  }
  
  /* Responsive */
  @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;
    }
  
    .footer-section {
      text-align: center;
    }
  }
  
  
    
    
