/*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: 16px;
  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: 19px 0;
   background-color: #ffffff;
   color: #000000;
}

/*FOOTER SECTION STYLES ENDS*/

 
 
 /* Hero Section Styles */
.hero {
    background-image: url('images/hero10-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;
  }
 
 
  
  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;
   }
   


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

section {
    /*width: 80%;*/
    margin: 3rem auto;
}

h1 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 3rem;
    text-transform: capitalize;
}

.images-gallery {
    display: flex;
    flex-wrap: wrap;
}

.column img {
    width: 100%;
}

.column {
    width: 33.333333%;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
}

.column div {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

@media screen and (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }

    .column {
        width: 100%;
    }
}

@media screen and (max-width: 576px) {
    h1 {
        font-size: 2rem;
    }
}