/*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 0;
   background-color: #ffffff;
   color: #000000;
}

/*FOOTER SECTION STYLES ENDS*/


/* Hero Section Styles */
.hero {
    background-image: url('images/hero7-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;
   }
 /* Global Market Section Styles */
.global-market-section {
    background-color: #f9f9f9;
    padding: 20px;
    text-align: center;
    position: relative; /* Add relative positioning for heading */
 }
 
 .market-content-wrapper {
  display: flex;
  flex-wrap: wrap; /* Allow items to wrap on smaller screens */
  justify-content: center; /* Center items horizontally */
  max-width: 1200px; /* Max width for the content */
  margin: 0 auto;
 }
 
 /* Main Heading Styles */
 .global-heading {
  font-size: 29px;
  text-align: center;
  margin-bottom: 60px;
  color: #333;
  width: 100%;  /* Spans the entire section */
  position: absolute; /* Position absolutely within the section */
  top: 10px;
    left: 50%;
    transform: translateX(-50%);
 }
 
 
 /* Image Styles */
 .market-image-container {
    flex: 1; /* Image takes available space */
    min-width: 300px;
    padding: 10px;
    display: flex; /* To center the image horizontally and vertically */
    align-items: top; /* Center vertically */
    justify-content: center; /* Center horizontally */
    animation: imageSlide 1s ease-in-out;
    margin-top: 65px; /* Space for the heading */
  }
 
 
  .market-image {
      max-width: 100%;
      height: 800px;
      border-radius: 8px;
       /* Slight shadow for depth */
  }
 
  /* Text Styles */
  .market-text-container {
    flex: 1; /* Text takes available space */
    min-width: 300px; /* Minimum width for text */
    height: 760px;
    padding: 20px;
    text-align: left;
    animation: textSlide 1s ease-in-out;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    border-radius: 8px;
    margin: 10px;
    margin-top: 75px; /* Space for the heading */
  }
 
  .market-subsection {
      margin-bottom: 20px;
      padding: 10px; /* Add some padding around the sections */
       border: 1px solid #eee;  /* Lighter border */
       border-radius: 6px;
       background-color: #fefefe;
  }
 
 
  .market-subheading {
    color: #555;
    margin-bottom: 10px;
  }
 
  .market-paragraph {
      color: #666;
      margin-bottom: 15px;
      line-height: 1.6;
  }
 
 
  /* Animations */
 @keyframes imageSlide {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
 }
 
 @keyframes textSlide {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
 }
 
 
  /* Responsive Design */
 @media (max-width: 768px) {
  .market-content-wrapper {
      flex-direction: column; /* Stack items on smaller screens */
      align-items: center; /* Center items horizontally */
    }
 
   .market-image-container {
    min-width: auto; /* Reset minimum width */
    margin-top: 65px;
   }
 
   .market-text-container {
    min-width: auto;
        margin-top: 65px; /* Space for the heading */
        
   }
 
    .market-image {
      max-width: 80%; /* Adjust image size for smaller screens */
    }
 }.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: space-evenly;
  }
  
  .outer-container {
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: rgb(244, 252, 255);
  }
  
  .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: 35px;
    font-weight: 700;
    line-height: 48px;
    color: rgb(0, 135, 177);
    margin: 0 0 10px 0;
  }
  
  .section-subhead-text {
    font-size: 25px;
    color: rgb(153, 153, 153);
    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;
  }
  
  .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, 135, 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 40px 0;
  }
  
  @media (max-width: 500px) {
    .outer-container {
      padding: 10px 20px 10px 20px;
    }
  
    .section-head-text {
      text-align: center;
    }
  }  
  
   /* Tea Section */
.tea{
  padding: 50px 0;
  background-color: #e8f5e9; /* A very light green */
}

.tea-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 */
}

.tea-text {
  flex: 1;
}

.tea h2 {
  text-align: left;
  margin-bottom: 30px;
  font-size: 2em;
  color: #333; /* Dark gray for contrast */
}

.tea p {
  font-size: 1.1em;
  line-height: 1.6;
  color: #555; /* Slightly lighter gray */
}

.tea-image {
  flex: 1;
  text-align: right;
}

.tea-image img {
  max-width: 100%;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Subtle shadow */
}


  /* Responsive Design tea*/
 @media (max-width: 768px) {

 
  .tea-content {
       flex-direction: column;
       text-align: center;
    }


   .tea-image{
       text-align: center;
   }
   .tea-image img {
       max-width: 80%; 
      }