/*HEADER SECTION STYLES STARTS*/
.navbar {
   background-color: #003b0a; /* Dark Green */
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 10px 20px;
   
 }
 
 .logo img {
   height: 50px;
 }
 
 
 .menu-toggle {
   background: none;
   border: none;
   cursor: pointer;
   display: none;
   padding: 0;
 }
 
 .bar {
   display: block;
   width: 25px;
   height: 3px;
   background-color: #fff;
   margin: 5px 0;
   transition: all 0.3s ease;
 }
 
 .nav-links {
   list-style: none;
   padding: 0;
   margin: 0;
   display: flex;
 }
 
 .nav-links li {
   margin: 0 15px;
 }
 
 .nav-links a {
   text-decoration: none;
   color: #ffffff;
   transition: color 0.3s;
   font-family: sans-serif;
   font-size: 14px;
 }
 
 .nav-links a:hover {
   color: #00a859; /* Green */
   background-color: #797575;
   border-radius: 2px;
 
 }
 
 
 .contact-button {
   background-color: #00a859;
   color: #fff !important; /* Override */
   padding: 10px 20px;
   border-radius: 5px;
   white-space: nowrap; /* Prevent text wrapping */
 
 }
 .contact-btn:hover {
   background-color: #33691E;
 }
 
 /* Responsive adjustments */
 @media (max-width: 768px) {
   .menu-toggle {
       display: block;
   }
   .nav-links a{
   text-decoration: none;
   color: #ffffff;
   transition: color 0.3s;
   font-family: sans-serif;
   font-size: 15px;
   }
   .nav-links {
       display: none;
       flex-direction: column;
       background-color: #003b0a;
       position: absolute;
       top: 67px;
       left: 0;
       width: 100%;
       text-align: center;
      padding: 20px 0;
      z-index:10;
 
   }
   .nav-links li{
       margin: 10px 0;
   }
   .nav-links.active{
       display:flex;
   }
 
   .menu-toggle.active .bar:nth-child(1) {
       transform: translateY(8px) rotate(45deg);
   }
 
    .menu-toggle.active .bar:nth-child(2) {
       opacity: 0;
   }
 
   .menu-toggle.active .bar:nth-child(3) {
       transform: translateY(-8px) rotate(-45deg);
   }
 }
 
 /*HEADER SECTION STYLES ENDS*/
 
 /*FOOTER SECTION STYLES STARTS*/
 
 footer {
   background-color: #031b03;
   color: white;
 }
 
 
 .footer-content {
   display: flex;
   justify-content: space-around;
   flex-wrap: wrap; /* Allows content to wrap on smaller screens */
 }
 
 
 .footer-section {
   margin: 20px;
   flex: 1; /* Allows each section to grow and occupy available space */
   min-width: 200px; /* Minimum width for each section */
 }
 
 
 .footer-section h4 {
  margin-bottom: 15px;
  color: #fff;
 }
 
 
 .footer-section ul {
  list-style: none;
  padding: 0;
 }
 
 
 .footer-section ul li {
   margin-bottom: 8px;
 }
 
 
 .footer-section ul li a {
   color: #ccc;
   text-decoration: none;
   transition: color 0.3s ease;
 }
 
 
 .footer-section ul li a:hover {
   color: #fff;
 }
 
 
 .footer-section p,
 .footer-section .social-links a {
   color: #ccc;
   margin-bottom: 10px;
   display: block;
   text-decoration: none;
 }
 
 
 .footer-section .social-links a:hover {
   color: #fff;
 }
 .footer-section .social-links a i {
 font-size: 24px;
 transition: transform 0.3s ease;
 }
 .footer-section .social-links a i:hover {
 transform: scale(1.1); /* Slightly enlarge on hover*/
 }
 
 
 .footer-logo {
   max-height: 50px;
   border-radius:20px ;
 }
 
 
 .social-links {
   display: flex;
   gap: 10px;
 }
 
 
 .footer-bottom {
    text-align: center;
    padding: 2px 0;
    background-color: #ffffff;
    color: #000000;
 }
 
 /*FOOTER SECTION STYLES ENDS*/


/* Hero Section Styles */
.hero {
   background-image: url('images/hero4-bg.jpg');
   background-size: cover;
   background-position: center;
   color: white;
   text-align: center;
   padding: 100px 0;
 }
 
 
 .hero-content {
   background-color: rgba(0, 0, 0, 0.5);
   padding: 50px;
   border-radius: 10px;
   display: inline-block;
 }
 
 
 
 
 .hero h1 {
   font-size: 3em;
   margin-bottom: 20px;
 }
 
 
 .hero p {
   font-size: 1.2em;
   margin-bottom: 30px;
 }


body {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    line-height: 1.6;
 }
 
 
 .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
 }


 
 /* Image Styles */
 
 /* Services Section */
 .services {
  background-color: #fff;
}


.services h2 {
   text-align: center;
   margin-bottom: 30px;
}


.service-timeline {
  position: relative;
  padding-left: 50px; /* Spacing for the timeline */
}


.timeline-item {
   display: flex;
   align-items: flex-start; /* Align items at the start of the flex container */
   margin-bottom: 30px; /* Space between each service timeline */
}


.timeline-circle {
   width: 40px;
   height: 40px;
   background-color: #558B2F;
   color: white;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   font-weight: bold;
   margin-right: 20px;
    z-index: 1;
}


.timeline-content {
   background-color: #f4f4f4;
   padding: 20px;
   border-radius: 8px;
   box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
   flex: 1; /* Makes the content take up remaining space */
}


.timeline-content h3 {
   margin-bottom: 10px;
   color: #558B2F;
}


/* Vertical Line for Timeline */
.service-timeline::before {
  content: '';
  position: absolute;
  left: 20px; /* Align with timeline circles*/
   top: 0;
   height: 100%;
   border-left: 2px dashed #558B2F;
   z-index: 0;
}


