* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Segoe UI', sans-serif;
    color: #333;
  }
  
  /* Green Theme */
 a {
  text-decoration: none;
}

/* Custom Green Theme */
.bg-green {
  background-color: #008000 !important; /* pure green */
}
  
  /* Logo + Company Name */
   .logo-header {
  max-height: 80px;
  width: auto;
}

.company-name {
  font-size: 1.5rem;
  font-weight: bold;
  color: #008000;
}

  
  /* Hero Banner */
  .moto {
    background-size: cover;
    background-position: center;
    padding: 80px 20px;
  }
  .moto h4 { font-size: 36px; font-weight: bold; }
  
  /* Contact Info Section */
  .contact-header { padding: 50px 20px; }
  .single-widget h4 { font-size: 18px; margin-top: 10px; }
  .single-widget small { font-size: 14px; color: #666; }
  
  /* Contact Section */
  .contact-section {
    background-size: cover;
    background-position: center;
  }
  .contact-form .form-control { padding: 12px; }
  
  /* Footer */
  .footer-section {
    background-color: #008000;
    color: #fff;
    padding: 40px 20px;
  }
  .footer-section p { color: #ddd; }
  .footer-section a { color: #00b894; text-decoration: none; }
  .footer-section a:hover { text-decoration: underline; }
  .seperator-in-footer {
    width: 80px;
    height: 3px;
    background: #00b894;
    margin: 20px auto;
  }
  