/*HEADER SECTION STYLES STARTS*/
.navbar {
  background-color: #003b0a; /* Dark Green */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  height: 50px;
}

.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: 15px;
}

.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 0;
   background-color: #ffffff;
   color: #000000;
}

/*FOOTER SECTION STYLES ENDS*/

/* HERO SECTION STYLES */
 .hero {
  background-image: url('images/hero2-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;
 }
 



/* About Us Section */
.about-us {
    padding: 50px 0;
    background-color: #ffffff; /* 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: 80%;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Subtle shadow */
  }

/* Responsive Design */
@media (max-width: 768px) {

 
  .about-content {
       flex-direction: column;
       text-align: center;
    }


   .about-image{
       text-align: center;
   }
   .about-image img {
       max-width: 75%;
   }
  }
 
 /* Vision Section */
.vision {
    padding: 50px 0;
    background-color: #ffffff; /* A very light green */
  }
  
  .vision-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 */
  }
  
  .vision-text {
    flex: 1;
  }
  
  .vision h2 {
    text-align: left;
    margin-bottom: 30px;
    font-size: 2em;
    color: #333; /* Dark gray for contrast */
  }
  
  .vision p {
    font-size: 1.1em;
    line-height: 1.6;
    color: #555; /* Slightly lighter gray */
  }
  
  .vision-image {
    flex: 1;
    text-align: right;
  }
  
  .vision-image img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Subtle shadow */
  }
  .vmv {
    padding: 50px 0;
    background-color: #f0f0f0;
 }
 
 
 .vmv h2 {
    text-align: center;
    margin-bottom: 30px;
 }
 
 
 .vmv-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
 }
 
 
 .vmv-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
 }
 
 
 .vmv-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
 }
 
 
 .vmv-card h3 {
    padding: 15px;
    text-align: center;
    margin-bottom: 0;
 }
 
 
 .vmv-card p {
    padding: 0 15px 15px 15px; /* Adding some padding to the paragraph */
    font-size: 0.9em;
    color: #000000;
 }
 
 .ourvalues {
  padding-right: 10px;
}

.vmv-text{
  padding-right: auto;
  padding-left: auto;
  margin-right: 15px;
  margin-left: 15px;
  margin-bottom: 15px;
}

.our-value-heading{
  text-decoration: solid;
  font-weight: 700;
}

/*our team styles*/ 

.text-blk {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  line-height: 25px;
}

.responsive-cell-block {
  min-height: 75px;
}

.responsive-container-block {
  min-height: 75px;
  height: fit-content;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
  justify-content:center;
  column-gap: 50px;
}

.outer-container {
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: #f0f0f0;
}

.inner-container {
  max-width: 1320px;
  flex-direction: column;
  align-items: center;
  margin-top: 50px;
  margin-right: auto;
  margin-bottom: 50px;
  margin-left: auto;
}

.section-head-text {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 5px;
  margin-left: 0px;
  font-size: 33px;
  font-weight: 700;
  line-height: 48px;
  color: rgb(0, 136, 177);
  margin: 0 0 10px 0;
}

.section-subhead-text {
  font-size: 22px;
  color: rgb(82, 80, 80);
  line-height: 35px;
  /*max-width: 470px;*/ 
  text-align: center;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 60px;
  margin-left: 0px;
}

.img-wrapper {
  width: 100%;
}

.team-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.social-media-links {
  width: 125px;
  display: flex;
  justify-content: space-between;
}

.social-media-links a {
  color: #666;
}

.social-media-links a:hover{
  color:#031b03;
}

.name {
  font-size: 25px;
  font-weight: 700;
  color: rgb(102, 102, 102);
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 5px;
  margin-left: 0px;
}

.position {
  font-size: 25px;
  font-weight: 700;
  color: rgb(0, 136, 177);
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 50px;
  margin-left: 0px;
}

.team-img {
  width: 100%;
  height: 100%;
}

.team-card-container {
  width: 280px;
  margin: 0 0 30px 0;
}

@media (max-width: 500px) {
  .outer-container {
  /* padding: 0px 0px 0px 0px;*/
    width: 100%;
  }

  .section-head-text {
    text-align: center;
  }
}
/*OUR TEAM SECTION STYLES ENDS*/


/*FOUNDERS NOTE SECTION STYLES STARTS*/
.f-note-section {
  width: 100%;
   display: flex;
  justify-content: center; 
}

.f-note-container {
  display: flex;
  background-color: #ffffff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  max-width: 1200px;
  width: 100%; /* Takes up full width of the section*/
  padding: 30px; /* Keep padding inside */
  box-sizing: border-box;
  margin: 35px; /* Remove container margins */
}


.f-note-image {
  max-width: 300px;
  height: 400px;
  margin-right: 20px;
  border-radius: 8px;
  box-sizing: border-box;
  margin-top: 38px;
}

.f-note-text {
  flex: 1;
  box-sizing: border-box;
}

.f-note-title {
  font-size: 2em;
  color: #333;
  margin-bottom: 15px;
  box-sizing: border-box;
}

.f-note-paragraph {
  font-size: 1em;
  line-height: 1.6;
  color: #555;
  box-sizing: border-box;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .f-note-container {
       flex-direction: column;
      width: 100%; /* Set full width for the responsive behavior */
  }
.f-note-image {
      max-width: 100%;
      margin-bottom: 20px;
      margin-right: 0;
      box-sizing: border-box;
}
}
/*FOUNDERS NOTE SECTION STYLES ENDS*/
