/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: black;
    background-color: #fff;
    line-height: 1.6;
  }
  
  /* Top Header */
  .container-head {
    padding: 15px;
    line-height: 25px;
    background-color: green;
    color: white;
  }
  
  .container-head a {
    margin: 0 15px;
    color: white;
    text-decoration: none;
  }
  
  .social-icons {
    float: right;
    list-style: none;
    display: flex;
    gap: 10px;
  }
  
  .social-icons a {
    color: white;
    font-size: 20px;
    transition: 0.3s;
  }
  
  .social-icons a:hover {
    color: #00ff99;
  }
  
  /* Logo + Company */
  .logo-header {
  max-height: 80px;
  width: auto;
}

.company-name {
  font-size: 1.5rem;
  font-weight: bold;
  color: #008000;
}
  
  /* Navbar */
  .navbar {
    padding: 15px 0;
  }
  
  .nav-link {
    color: white !important;
    font-weight: 500;
    margin: 0 10px;
  }
  
  .nav-link:hover {
    color: #00cc66 !important;
  }
  
  /* Services Section */
  .services-section {
    padding: 80px 20px;
    background: white;
    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;
    color: white;
    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);
  }
  
  /* News Ticker */
  .news-ticker {
    width: 100%;
    background: black;
    color: #fff;
    overflow: hidden;
    height: 50px;
    display: flex;
    align-items: center;
  }
  
  .news-text {
    white-space: nowrap;
    animation: scroll-left 15s linear infinite;
    font-size: 18px;
    padding-left: 100%;
  }
  
  @keyframes scroll-left {
    from { transform: translateX(100%); }
    to { transform: translateX(-100%); }
  }
  
  /* Footer */
  .footer-section {
    background-color: green;
    color: #fff;
    padding: 50px 20px;
  }
  
  .footer-content p {
    font-size: 1rem;
    max-width: 800px;
    margin: 0 auto 20px;
    color: #ddd;
  }
  
  .seperator-in-footer {
    display: block;
    width: 80px;
    height: 3px;
    background-color: #00b894;
    margin: 30px auto;
  }
  
  .social-icon ul {
    display: flex;
    justify-content: center;
    gap: 15px;
    list-style: none;
  }
  
  .social-icon a {
    font-size: 20px;
    color: #fff;
    background: #333;
    padding: 10px;
    border-radius: 50%;
    transition: 0.3s;
  }
  
  .social-icon a:hover {
    background: #00b894;
  }
  
  .footer-section .copyright {
    font-size: 0.9rem;
    color: #ccc;
    margin-top: 20px;
  }
  