

/*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 STARTS*/

/*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;
   background-color: #ffffff;
   color: #000000;
}

/*FOOTER SECTION STYLES ENDS*/


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;
 }
 
 
 
 /* Hero Section Styles */
 .hero {
    background-image: url('images/hero-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;
 }
 
 
 .btn {
    display: inline-block;
    background-color: #558B2F;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
 }
 
 
 
 
 .btn:hover {
    background-color: #33691E;
 }
 
 
 
 /* About Us Section */
.about-us {
   padding: 50px 0;
   background-color: #e8f5e9; /* A very light green */
 }
 
 .about-content {
   display: flex;
   align-items: center;
   gap: 30px;
   max-width: 1200px;
   margin: 0 auto; /* Center the content */
   padding: 0 20px; /* Add padding for smaller screens */
 }
 
 .about-text {
   flex: 1;
 }
 
 .about-us h2 {
   text-align: left;
   margin-bottom: 30px;
   font-size: 2em;
   color: #333; /* Dark gray for contrast */
 }
 
 .about-us p {
   font-size: 1.1em;
   line-height: 1.6;
   color: #555; /* Slightly lighter gray */
 }
 
 .about-image {
   flex: 1;
   text-align: right;
 }
 
 .about-image img {
   max-width: 100%;
   border-radius: 8px;
   box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Subtle shadow */
 }


 
 
 /* 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;
}



 
 
 /* Products Section */
 .products {
    padding: 50px 0;
    background-color: #f0f0f0;
 }
 
 
 .products h2 {
    text-align: center;
    margin-bottom: 30px;
 }
 
 
 .product-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
 }
 
 
 .product-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
 }
 
 
 .product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
 }
 
 
 .product-card h3 {
    padding: 15px;
    text-align: center;
    margin-bottom: 0;
 }
 
 
 .product-card p {
    padding: 0 15px 15px 15px; /* Adding some padding to the paragraph */
    font-size: 0.9em;
    color: #666;
 }
 
 
  
 /* Responsive Design */
 @media (max-width: 768px) {

 
   .about-content {
        flex-direction: column;
        text-align: center;
     }
 
 
    .about-image{
        text-align: center;
    }
    .about-image img {
        max-width: 80%;
    }
  
 @media (max-width: 600px) {
     .hero h1 {
        font-size: 2.5em;
        margin-bottom: 20px;
     }
    .service-list {
         grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    .service-timeline {
         padding-left: 30px;
    }
 
 
     .service-timeline::before {
        left: 10px;
     }
      .timeline-circle {
       margin-right: 10px;
     }
    }
 
 
    .content-section {
        padding: 20px;
        margin: 0 10px;
        /* Removed border */
    }
    
    .heading-wrapper{
      text-align: center;
    }
    
    .heading-wrapper h3 {
        margin-bottom: 10px;
    }
    
    .content-wrapper {
        display: flex;
        align-items: flex-start; /* Align items to the top */
        gap: 20px;
        margin-top: 20px;
        flex-wrap: wrap; /* for responsiveness */
        justify-content: center;
    }
    
    .data-table {
        border-collapse: collapse;
        /* width: auto; */ /* Removed this to allow more flexible sizing */
        margin-right: 20px;
        
    }
    
    .data-table th,
    .data-table td {
        border: 2px solid #21cd1b;
        padding: 8px;
        text-align: left;
        font-size: 13px;
    }
    
    .data-table th {
        background-color: #059800;
        color: #FFFFFF;
    }
    
    .image-wrapper{
        flex: 1;
        max-width: 525px;
    }
    .section-image {
      width: 100%;
      height: 300px;
        border-radius: 10px;
    }
    
    /* Responsive adjustments for smaller screens */
    @media (max-width: 768px) {
        .content-wrapper {
             flex-direction: column; /* Stack table and image vertically */
        }
        .data-table {
             margin-right: 0;
        }
    }
    .desktop_2 * {
      font-family: Nunito, sans-serif;
      margin-top: 0px;
      margin-right: 0px;
      margin-bottom: 0px;
      margin-left: 0px;
    }
    
    .desktop_2 button {
      cursor: pointer;
    }
    
    .desktop_2 img {
      cursor: pointer;
    }
    
    .desktop_2 img:hover {
      transform: scale(1.02);
      transition-duration: 0.3s;
      transition-timing-function: ease-in-out;
      transition-delay: 0s;
      transition-property: all;
    }
    
    .desktop_2 .hdImg {
      display: none;
    }
    
    .desktop_2 .btn-box {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      display: none;
    }
    
    .desktop_2 .project:hover .btn-box {
      display: block;
    }
    
    .desktop_2 .Container {
      width: 890px;
      margin-top: 100px;
      margin-right: auto;
      margin-bottom: 50px;
      margin-left: auto;
    }
    
    .desktop_2 .portfolio {
      background-image: initial;
      background-position-x: initial;
      background-position-y: initial;
      background-size: initial;
      background-repeat-x: initial;
      background-repeat-y: initial;
      background-attachment: initial;
      background-origin: initial;
      background-clip: initial;
      background-color: white;
      position: relative;
      display: flex;
      flex-wrap: wrap;
      flex-direction: column;
    }
    
    .desktop_2 .project {
      position: relative;
      background-image: initial;
      background-position-x: initial;
      background-position-y: initial;
      background-size: initial;
      background-repeat-x: initial;
      background-repeat-y: initial;
      background-attachment: initial;
      background-origin: initial;
      background-clip: initial;
    }
    
    .desktop_2 .overlay {
      position: fixed;
      background-image: initial;
      background-position-x: initial;
      background-position-y: initial;
      background-size: initial;
      background-repeat-x: initial;
      background-repeat-y: initial;
      background-attachment: initial;
      background-origin: initial;
      background-clip: initial;
      background-color: rgba(71, 69, 69, 0.7);
      height: 100%;
      width: 100%;
      max-height: 100%;
      top: 0px;
      left: 0px;
      z-index: 100;
      display: none;
      padding-top: 20px;
      padding-right: 20px;
      padding-bottom: 20px;
      padding-left: 20px;
    }
    
    .desktop_2 .overlay-inner {
      top: 50%;
      right: 0px;
      bottom: 0px;
      left: 50%;
      transform: translate(-50%, -50%);
      background-image: initial;
      background-position-x: initial;
      background-position-y: initial;
      background-size: initial;
      background-repeat-x: initial;
      background-repeat-y: initial;
      background-attachment: initial;
      background-origin: initial;
      background-clip: initial;
      background-color: white;
      max-width: 700px;
      width: fit-content;
      padding-top: 35px;
      padding-right: 20px;
      padding-bottom: 20px;
      padding-left: 20px;
      position: relative;
      border-top-left-radius: 10px;
      border-top-right-radius: 10px;
      border-bottom-right-radius: 10px;
      border-bottom-left-radius: 10px;
      opacity: 1;
      max-width: 50%;
      max-height: 85%;
    }
    
    .desktop_2 .close {
      position: absolute;
      top: 9px;
      right: 15px;
      background-image: none;
      background-position-x: initial;
      background-position-y: initial;
      background-size: initial;
      background-repeat-x: initial;
      background-repeat-y: initial;
      background-attachment: initial;
      background-origin: initial;
      background-clip: initial;
      background-color: initial;
      outline-color: initial;
      outline-style: initial;
      outline-width: 0px;
      color: #474545;
      border-top-width: 0px;
      border-right-width: 0px;
      border-bottom-width: 0px;
      border-left-width: 0px;
      border-top-style: initial;
      border-right-style: initial;
      border-bottom-style: initial;
      border-left-style: initial;
      border-top-color: initial;
      border-right-color: initial;
      border-bottom-color: initial;
      border-left-color: initial;
      border-image-source: initial;
      border-image-slice: initial;
      border-image-width: initial;
      border-image-outset: initial;
      border-image-repeat: initial;
      text-transform: uppercase;
      letter-spacing: 2px;
    }
    
    .desktop_2 .overlay-inner .hdImgs {
      width: fit-content;
      height: calc(80% - 55px);
      display: flex;
    }
    
    .desktop_2 .overlay-inner img {
      max-height: 100%;
      max-width: 100%;
      transform: none;
    }
    
    .desktop_2 .bigImg {
      width: 665px;
      height: 440px;
      margin-top: 0px;
      margin-right: 10px;
      margin-bottom: 10px;
      margin-left: 0px;
      border-top-left-radius: 6px;
      border-top-right-radius: 6px;
      border-bottom-right-radius: 6px;
      border-bottom-left-radius: 6px;
    }
    
    .desktop_2 .project-image {
      height: 215px;
      width: 215px;
      margin-top: 0px;
      margin-right: 10px;
      margin-bottom: 10px;
      margin-left: 0px;
      border-top-left-radius: 6px;
      border-top-right-radius: 6px;
      border-bottom-right-radius: 6px;
      border-bottom-left-radius: 6px;
    }
    
    .desktop_2 .above {
      display: flex;
    }
    
    .desktop_2 .bottom {
      display: flex;
      justify-content: space-around;
    }
    
    @media (max-width: 1024px) {
      .desktop_2 .project-image {
        width: 165px;
        height: 165px;
      }
    
      .desktop_2 .Container {
        width: 690px;
        margin-top: 80px;
        margin-right: auto;
        margin-bottom: 50px;
        margin-left: auto;
      }
    
      .desktop_2 .bigImg {
        width: 515px;
        height: 340px;
      }
    }
    
    @media (max-width: 768px) {
      .desktop_2 .project {
        width: 220px;
        display: inline-block;
        margin-top: 0px;
        margin-right: 0px;
        margin-bottom: 0px;
        margin-left: 0px;
      }
    
      .desktop_2 .project-first {
        width: 450px;
      }
    
      .desktop_2 .above {
        flex-direction: column;
      }
    
      .desktop_2 .portfolio {
        justify-content: flex-start;
      }
    
      .desktop_2 .Container {
        width: 450px;
      }
    
      .desktop_2 .bigImg {
        width: 450px;
      }
    
      .desktop_2 .project-image {
        width: 220px;
        height: 200px;
        margin-top: 0px;
        margin-right: 0px;
        margin-bottom: 10px;
        margin-left: 0px;
        display: inline-block;
        padding-top: 0px;
        padding-right: 0px;
        padding-bottom: 0px;
        padding-left: 0px;
      }
    
      .desktop_2 .side {
        display: flex;
        width: 450px;
        justify-content: space-between;
      }
    
      .desktop_2 .bottom {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: stretch;
      }
    
      .desktop_2 .project-image.last {
        margin-top: 0px;
        margin-right: 0px;
        margin-bottom: 10px;
        margin-left: 5px;
      }
    
      .desktop_2 .project-image.last {
        margin-top: 0px;
        margin-right: 0px;
        margin-bottom: 10px;
        margin-left: 0px;
      }
    }
    
    @media (max-width: 500px) {
      .desktop_2 .bigImg {
        width: 250px;
        height: 200px;
      }
    
      .desktop_2 .project {
        width: 110px;
        margin-top: 0px;
        margin-right: 0px;
        margin-bottom: 20px;
        margin-left: 0px;
      }
    
      .desktop_2 .Container {
        width: 250px;
        margin-top: 80px;
        margin-right: auto;
        margin-bottom: 50px;
        margin-left: auto;
      }
    
      .desktop_2 .project-image {
        width: 110px;
        height: 110px;
      }
    
      .desktop_2 .side {
        flex-direction: row;
        width: 250px;
      }
    
      .desktop_2 .project-image.last {
        margin-top: 0px;
        margin-right: 0px;
        margin-bottom: 10px;
        margin-left: 0px;
      }
    
      .desktop_2 .project.last-project {
        margin-top: 0px;
        margin-right: 0px;
        margin-bottom: 0px;
        margin-left: 30px;
      }
    
      .desktop_2 .project-first {
        width: 250px;
      }
    
      .desktop_2 .overlay-inner {
        max-width: 90%;
      }
    }