
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


:root {
    --main-color: #008e46;
    
  }

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    
   
  
}
body{
  overflow-x: hidden; /* Hide horizontal scrollbar */
}
.header{
    min-height: 100vh;
    width: 100%;
    position: relative;
    background-size: cover;
    background-position: center;
    

}
nav{
    display: flex;
    padding: 2% 6%;
    align-items: center;
    justify-content: space-between;
    background-color: #008e46;
    height: 100px;
    
    

}
nav a img{
    height: 120px;
    width: 180px;
}
nav  .fa-solid{
   display: none;
}
nav img{
    width: 150px;
}
.nav-links{
    flex: 1;
    text-align: right;
    
}
.nav-links ul{
  margin-right: 5px;
}
.nav-links ul li{
   list-style: none;
   display: inline-block;
   padding: 8px 8px;
   position: relative;
   margin-top:55px;
  
}
.nav-links ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 17px;
}
.nav-links ul li a.active{
    padding: 8px 24px;
    background-color: lightgreen;
}
.nav-links ul li ::after{
    content: '';
    width: 0%;
    height: 2px;
    background:#fff;
    display: block;
    margin: auto;
    transition: 0.5s;

}
.nav-links ul li :hover::after{
   width: 100%;
}
nav ul span.search{
    margin-left: 30px;
    
}
.search input, button{
    padding: 5px ;
    border-radius: 5px;
    border: none;
    margin-left: 4px;
}
.search button{
    font-size: 12px;
    font-weight: 600;
    color: #008e46;
    border: 1px solid white;
    transition: .5s;

    /* margin-left: 15px; */
}
.search button:hover{
  color: white;
  background-color: #008e46;
  border: 1px solid white;
}
.search button i{
    margin-right: px;
    font-size: 14px;
    padding: 0 4px;
    
}
input[type=text] {
    
    /* box-sizing: border-box;
    border: 2px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    background-color: white;
    background-image: url('searchicon.png');
    background-position: 10px 10px; 
    background-repeat: no-repeat; */
    /* padding: 12px 20px 12px 40px; */
  }

  /* silder show */
  
  
  .slider {
    position: relative;
    width: 100%;
    max-width: 1000px;
    height: 400px;
    margin: 25px auto;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  }
  
  .slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
  }
  
  .slides img {
    width: 100%;
    height: auto;
    background-image: cover;
    cursor: pointer;
  }
  
  .navigation {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
  }
  
  .navigation button {
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 50%;
    transition: background-color 0.3s;
  }
  
  .navigation button:hover {
    background-color: rgba(0, 0, 0, 0.8);
  }
  
  .dots {
    text-align: center;
    margin-top: 10px;
    font-size: 0px;
    
  }
  
  .dots button {
    height: px;
    margin: 5px;
    border: none;
    border-radius: 50%;
    background-color: #bbb;
    cursor: pointer;
    display: none;
    
  }
  
  .dots button.active {
    background-color: #717171;
  }
  

  


/* Hero Section */
.hero {
    background-color: #f9f9f9;
    width: 90%;
    margin: auto;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    width: 100%;
    padding: 20px;
  }
  
  /* Left Side: Content */
  .hero-text {
    flex: 1;
    max-width: 50%;
  }
  
  .hero-text h1 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #333;
  }
  
  .hero-text p {
    font-size: 1rem;
    margin-bottom: 25px;
    color: #555;
  }
  
  .cta {
    text-decoration: none;
    background: #008e46;
    color: white;
    font-size: 14px;
    padding: 8px 16px;
    border-radius: 5px;
  
    transition: background 0.3s ease;
  }
  
  .cta:hover {
    background: transparent;
    border: 1px solid #008e46;
    color: black;
  }
  
  /* Right Side: Image */
  .hero-image {
    flex: 1;
    max-width: 50%;
    text-align: center;
    margin-left: 90px;
  }
  
  .hero-image img {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 10px;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .hero-container {
      flex-direction: column;
      text-align: center;
    }
  
    .hero-text {
      max-width: 100%;
      margin-bottom: 20px;
    }
  
    .hero-image {
      max-width: 100%;
    }
  }
  

 


/* footer section start  */


.footer {
    /* background-color: #008e46; */
    color: black;
    padding: 20px 0;
    margin-top: 50px;
    transition: .5s;

  }
  .footer:hover{
    color: #fff;
    background-color: #008e46;
  }
  
  .footer-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 equal columns */
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .footer-column {
    text-align: left;
  }
  
  .footer-column h3 {
    font-size: 18px;
    margin-bottom: 10px;
    text-transform: uppercase;
  }
  
  .footer-column p,
  .footer-column ul {
    font-size: 14px;
    line-height: 1.6;
  }
  
  .footer-column ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-column ul li {
    margin-bottom: 8px;
  }
  
  .footer-column ul li a {
    color: #fff;
    text-decoration: none;
  }
  
  .footer-column ul li a:hover {
    text-decoration: underline;
  }
  
  .social-icons a {
    margin-right: 10px;
    display: inline-block;
  }
  
  .social-icons img {
    width: 24px;
    height: 24px;
  }
  
  .footer-bottom {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    border-top: 1px solid #444;
    padding-top: 10px;
  }
  
  /* Responsive Styles */
  @media (max-width: 768px) {
    .footer-row {
      grid-template-columns: repeat(2, 1fr); /* 2 columns on tablets */
      gap: 15px;
    }
  }
  
  @media (max-width: 480px) {

 
    .footer-row {
      grid-template-columns: 1fr; /* Single column on mobile */
    }
  
    .footer-column h3 {
      font-size: 16px;
    }
  
    .footer-column p,
    .footer-column ul li a {
      font-size: 12px;
    }
  
    .social-icons img {
      width: 20px;
      height: 20px;
    }
  }

  /* about us start  */
  /* styles.css */


.contact-section {
  display: flex;
  justify-content: space-between;
  padding: 50px;
  background: url('Images/WhatsApp\ Image\ 2024-12-05\ at\ 17.24.44_a1b37745.jpg') no-repeat center center/cover;
  color: black;
  flex-wrap: wrap;
  
}

.contact-info {
  width: 40%;
  background-color: white;
   padding: 50px ;
    height: 500px; 
    text-align: justify; border-radius: 5px;
}

.contact-info h2 {
  margin-bottom: 25px;
}

.info-item {
  display: flex;
  align-items: center;
  margin: 10px 0;
  margin-top:10pxpx;
}
.info-item a{
  text-decoration: none;
}

.info-item img {
  width: 40px;
  height: 40px;
  margin-right: 15px;
}

.contact-form {
  width: 50%;
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  height: 400px;
}

.contact-form h3 {
  margin-bottom: 20px;
  color: black;
}

.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.contact-form button {
  width: 100%;
  padding: 10px;
  background: #00bcd4;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.contact-form button:hover {
  background: #0097a7;
}

/* Media Queries for Responsiveness */

@media (max-width: 1024px) {
  .contact-section {
    padding: 30px;
  }
  .contact-info, .contact-form {
    width: 100%;
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .contact-section {
   
    align-items: center;
    padding: 20px;
    
  }
  .contact-info{
    height: auto;
  }


  .contact-info, .contact-form {
    width: 100%;
  }
  .contact-form{
    height: auto;
    margin-top: 40px;
  }
  footer{
   margin-top: 410px;
  }

  .contact-info h2 {
    text-align: center;
  }

  .info-item {
    justify-content: center;
  }

  .contact-form {
    padding: 20px;
    margin-top: 150px;
  }

  .contact-form button {
    padding: 12px;
  }
}

@media (max-width: 480px) {

  .contact-section{
   display: grid;
   grid-column: auto;
   width: 100%;
   
  }

  .contact-info{
    height: 100%;
    margin-top: 50px;

  }
  .contact-info h2 {
    font-size: 24px;
  }

  .contact-form input, .contact-form textarea {
    font-size: 14px;
  }
  .contact-form{
    height: auto;
    margin-top: 50px;
  }

  .contact-form button {
    padding: 15px;
    font-size: 16px;
  }
  
}

  


