
body {
  margin: 0;
  font-family: 'Ubuntu', sans-serif;
  box-sizing: border-box;
}

/* Navbar */

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: whitesmoke;
  background-color: #006b4b;
  padding: 10px 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-size: 1.5em;
  font-weight: bold;
}

.nav-links {
  display: flex;
  gap: 20px;
  align-items: center;
}

.nav-links a, .dropbtn {
  color: white;
  text-decoration: none;
  padding: 10px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 1em;
}

.nav-links a:hover, .dropbtn:hover {
  /* background: #0369a1; */
  color: #33cc99;
  border-radius: 5px;
}

.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  background: #009970;
  min-width: 160px;
  top: 100%;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  color: white;
  padding: 10px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  display: block;
    color: #33cc99;

}

.dropdown:hover .dropdown-content {
  display: block;
}

.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: #006b4b;
    position: absolute;
    top: 60px;
    left: 0;
  }

  .nav-links.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

}



.blog-search-filter {
  background: linear-gradient(to right, #e0fbe5, #ffffff);
  padding: 40px 20px;
  text-align: center;
}

.blog-search-filter h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #117a4a;
}

.search-filter-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.search-filter-box input,
.search-filter-box select {
  padding: 12px 15px;
  font-size: 1rem;
  width: 250px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.search-filter-box button {
  background-color: #1a8a52;
  color: white;
  padding: 12px 20px;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.search-filter-box button:hover {
  background-color: #146c3c;
}

@media (max-width: 768px) {
  .search-filter-box {
    flex-direction: column;
    align-items: center;
  }

  .search-filter-box input,
  .search-filter-box select {
    width: 90%;
  }
}

a{
    text-decoration: none;
}

/* blog_section---------------------------------------------- */

    

    .filter-section {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 30px;
      justify-content: center;
    }

    input[type="text"], select {
      padding: 10px;
      border-radius: 8px;
      border: 1px solid #ccc;
      font-size: 16px;
      width: 250px;
    }

    #blogGrid {
      display: flex;
      flex-wrap: wrap;
      gap: 25px;
      justify-content: center;
    }

    .blog-card {
      width: 300px;
      border-radius: 12px;
      overflow: hidden;
      text-decoration: none;
      color: inherit;
      background: #fff;
      box-shadow: 0 4px 8px rgba(0,0,0,0.06);
      transition: transform 0.2s, box-shadow 0.3s;
      cursor: pointer;
    }

    .blog-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 18px rgba(0,0,0,0.12);
    }

    .blog-card img {
      width: 100%;
      height: 180px;
      object-fit: cover;
    }

    .blog-card-content {
      padding: 15px;
    }

    .blog-card-content h3 {
      margin: 0 0 10px;
      color: #006e6d;
      font-size: 20px;
    }

    .blog-card-content p {
      font-size: 14.5px;
      color: #555;
    }

    .read-more {
      display: inline-block;
      margin-top: 12px;
      padding: 8px 14px;
      background: #00a19a;
      color: #fff;
      border-radius: 5px;
      font-size: 14px;
      text-decoration: none;
      transition: background 0.3s ease;
    }

    .read-more:hover {
      background: #007d76;
    }

    @media (max-width: 768px) {
      #blogGrid {
        flex-direction: column;
        align-items: center;
      }

      .blog-card {
        width: 90%;
      }

      .filter-section {
        flex-direction: column;
        align-items: center;
      }
    }



/* footer================================================ */

.footer {
  background: #007e5a;
  color: white;
  padding: 40px 20px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.footer-content {
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.footer-about h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.footer-about p {
  font-size: 1rem;
  line-height: 1.5;
  max-width: 400px;
}

.footer-social h4 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.social-icons a {
  /* color: white; */
  /* color: whitesmoke; */
   color: #c5ed85; 
  font-size: 1.5rem;
  margin-right: 20px;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #dce9c8; /* lighter green on hover */
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 30px;
  padding-top: 15px;
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
  }

  .footer-about p, 
  .footer-about h3,
  .footer-social h4 {
    text-align: center;
  }

  .social-icons a {
    margin-right: 15px;
  }
}




/* Footer Section */
/* .footer {
  background: linear-gradient(to right, #0f172a, #1e293b);
  color: #f1f5f9;
  padding: 60px 20px 20px;
  font-size: 0.95rem;
} */

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 30px;
  max-width: 100%;
  margin: auto;
}

/* .footer h3, .footer h4 {
  color: #04bb75;
  margin-bottom: 15px;
} */

.footer p, .footer a {
  color: #e2e8f0;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin: 8px 0;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #334155;
  margin-top: 30px;
  font-size: 0.85rem;
  color: #94a3b8;
}









