/*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: 150px; /* 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/hero5-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;
}

/*
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  margin-top: 50px;
}
*/

.content-section {
  padding: 20px;
  margin: 0 10px;
  /* Removed border */
}

body {
  font-family: sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
  line-height: 1.6;
}



/*
.container {

  border-radius: 10px;
  width: 100%; /* Set container width to 100% */ /*
  max-width: 1200px;
  margin: 0 auto; /* Center the container horizontally */ /*
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-top: 50px;
}*/

.investment-plan {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInMoveUp 0.8s ease forwards;
}

.plan-image {
  flex: 1;
  padding: 10px;
  overflow: hidden;
  transform: scale(0.9);
  opacity: 0;
  animation: fadeInImage 0.7s ease forwards 0.3s;
}

.plan-image img {
  width: 100%;
  border-radius: 5px;
  display: block;
   max-height: 300px; /* increased height */
  object-fit: cover;
  }

.plan-details {
  flex: 2;
  padding: 10px;
  letter-spacing: 0.5px;
  line-height: 1.6;
}

.plan-details h2 {
  text-align: left;
  color: #2e7d32
}


.plan-details ul {
  list-style-type: disc;
  padding-left: 20px;
}

.investment-table {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #f0fdf4;
  overflow-x: auto;
  opacity: 0;
  transform: translateX(-30px);
  animation: fadeInMoveLeft 0.8s ease forwards;
}


.table-image {
  width: 100%;
  overflow: hidden;
  opacity: 0;
  animation: fadeInTableImage 0.7s ease forwards 0.3s;
}

.table-image img {
  width: 100%;
  display: block;
   height: 175px;
  object-fit: cover;
}

.investment-table table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.investment-table th,
.investment-table td {
  border: 8px solid #ddd;
  padding: 8px;
  text-align: left;
  letter-spacing: 0.5px;
  line-height: 1.6;
  padding-right: 0px;
}

.investment-table th {
  background-color: #003b0a;
  color: white;
}

 .investment-table tbody tr:nth-child(even){
  background-color: #e8f5e9;
  }
 
@keyframes fadeInMoveUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeInMoveLeft {
  from {
    transform: translateX(-30px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

 @keyframes fadeInImage {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
  @keyframes fadeInTableImage {
   from {
      opacity: 0;
    }
  to {
   opacity: 1;
     }
}
  @media (max-width: 768px) {
    .container {
      width: 100%;
        margin: 10px auto; /* Center the container horizontally*/
    }
    .investment-plan {
      flex-direction: column;
    }
  .plan-image img,
   .table-image img{
      width: 100%;
  }
    .investment-table table {
      overflow-x: scroll;
    }
}