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%;
    }
  }
  /*SERVICES*/
/* Services Section */
.services-section {
    padding: 80px 20px;
    background: ( white);
    color: #fff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-align: center;
  }
  
  .section-title {
    font-size: 35px;
    font-weight: bold;
    margin-bottom: 40px;
    text-transform: uppercase;
    color: black;
    border-bottom: 2px solid #00cc66;
    display: inline-block;
    padding-bottom: 10px;
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
  }
  
  .service-card {
    background-color: #006633;
    border-radius: 10px;
    padding: 30px 20px;
    transition: 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  }
  
  .service-card i {
    font-size: 30px;
    margin-bottom: 15px;
    color: #00ff99;
  }
  
  .service-card h4 {
    font-size: 16px;
    font-weight: 600;
  }
  
  .service-card:hover {
    background-color: #00994d;
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 255, 153, 0.3);
  }
  
  /* Responsive Tweaks */
  @media (max-width: 600px) {
    .section-title {
      font-size: 24px;
    }
  
    .service-card h4 {
      font-size: 14px;
    }
  }
  /*NEWS TICKER*/
  .news-ticker {
    width: 100%;
    background: black;
    color: #fff;
    overflow: hidden;
    position: relative;
    padding: 70px;
    height: 50px;
    display: flex;
    align-items: center;
  }
  
  .news-text {
    white-space: nowrap;
    position: absolute;
    will-change: transform;
    animation: scroll-left 15s linear infinite;
    font-size: 30px;
    padding-left: 100%;
  }
  @keyframes scroll-left {
    0% {
      transform: translateX(100%);
    }
    100% {
      transform: translateX(-100%);
    }
  }
  /*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;
    }
  }
  
  
    
    
