/* Reset & Base Styles */
* html {
    scroll-behavior: smooth;
  }
  .navbar {
    background-color: #22c55e;
    padding: 10px 20px;
  }
  
  .nav-container {
    display:block ;
    align-items: center;
    justify-content: space-between;
  }
  
  .logo {
    height: 50px;
    width: auto;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
  }
  
  .nav-links li a {
    text-decoration: none;
    color: white;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 5px;
  }
  
  .nav-links li a:hover {
    background-color: #15803d;
    color: white;
  }
  
  
  .tagline {
    text-align: center; /* Center-align the tagline */
    font-size: 1.2rem;
    color: #555; /* Subtle color for the tagline */
    margin-top: 5px; /* Add spacing above the tagline */
  }
  .testimonials {
    background: #f7f7f7;
    padding: 4rem 2rem;
    text-align: center;
  }
  
  .testimonials h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #333;
  }
  
  .testimonial-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
  }
  
  .testimonial {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    max-width: 300px;
    flex: 1 1 250px;
  }
  
  .testimonial p {
    font-style: italic;
    color: #555;
    margin-bottom: 1rem;
  }
  
  .testimonial h4 {
    font-weight: bold;
    color: #333;
  }
  
  .gallery {
    padding: 4rem 2rem;
    background-color: #fff;
    text-align: center;
  }
  
  .gallery h2 {
      font-size: 2rem;
      color: #333;
      margin-bottom: 2rem;
  }
  
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
  }
  
  @media (max-width: 600px) {
    .gallery-grid {
      grid-template-columns: 1fr;
    }
  }
  
  .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
  }
  
  .gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
  }
  
  .gallery-item:hover img {
    transform: scale(1.1); /* Slight zoom effect on hover */
  }
  
  .hover-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.6); /* Semi-transparent black background */
    color: white;
    text-align: center;
    padding: 0.5rem;
    font-size: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .gallery-item:hover .hover-text {
    opacity: 1; /* Show text on hover */
  }
  .volunteer {
    background: #f0f9f1;
    padding: 4rem 2rem;
    text-align: center;
  }
  
  .volunteer h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2e7d32;
  }
  
  .volunteer p {
    max-width: 600px;
    margin: 0 auto 2rem;
    color: #444;
  }
  
  .volunteer form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .volunteer input,
  .volunteer textarea {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
  }
  
  .volunteer button {
    padding: 12px;
    background: #66bb6a;
    border: none;
    color: white;
    font-size: 1rem;
    border-radius: 8px;
    cursor: pointer;
  }
  
  #volunteer-confirmation {
    color: #2e7d32;
    font-weight: bold;
  }
  
  .hidden {
    display: none;
  }
  /* Base reset */
  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  /* Make images responsive */
  img {
    max-width: 100%;
    height: auto;
  }
  
  /* Container for spacing */
  .container {
    padding: 0 1rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  /* Responsive text */
  h1, h2, h3, p {
    line-height: 1.4;
  }
  
  h1, h2, h3, h4, h5, h6 {
    color: #4caf50;
  }
  
  /* Buttons full-width on small screens */
  button, .btn {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  @media (max-width: 768px) {
    .hero h1 {
      font-size: 2rem;
    }
  
    .hero p {
      font-size: 1rem;
    }
  
    .testimonial-cards {
      flex-direction: column;
      align-items: center;
    }
  
    .gallery-grid {
      grid-template-columns: 1fr;
    }
  
    nav ul {
      flex-direction: column;
      gap: 1rem;
    }
  
    .volunteer form {
      padding: 0 1rem;
    }
  }
  
  /* Hero Section */
  .hero {
    text-align: center;
    color: #fff;
    padding: 80px 20px;
    border-radius: 12px;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
      url('Image/20250513_175905.jpg') center/cover no-repeat;
    background-size: cover;
    background-position: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  }
  
  .hero h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
  }
  
  .hero p {
    font-size: 1.2rem;
  }
  
  /* Navigation Styles */
  nav {
    background: linear-gradient(to right, #4caf50, #388e3c); /* Gradient for nav */
    padding: 10px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Subtle shadow */
  }
  nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 0;
    padding: 0;
    overflow: hidden;
  }
  
  @media (max-width: 768px) {
    nav ul {
      flex-direction: column;
      align-items: center;
    }
  }
  
  nav a {
    color: #fff; /* White text */
    text-decoration: none;
    font-weight: bold;
    padding: 14px 16px;
    border-radius: 4px; /* Rounded corners for links */
    transition: background-color 0.3s ease; /* Smooth hover effect */
  }
  
  nav a:hover {
    background-color: #388e3c; /* Darker green on hover */
    text-decoration: none;
  }
  
  body {
    font-family: 'Segoe UI', sans-serif;
    font-size: 1rem; /* Base font size */
    line-height: 1.6;
    color: #333;
    background: #f8f8f8;
    margin: 0;
    padding: 0;
    padding: 20px;
  }
  /* Set the background color for the body */
body {
  background-color: #85bd89;
}
  nav {
    display: block;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }
  
  nav ul {
    display: flex;
    gap: 2rem;
    list-style: none;
    padding: 0;
  }
  
  @media (max-width: 600px) {
    nav ul {
      flex-direction: column;
      align-items: center;
    }
  }
  
  /* Layout */
  header, section, footer {
    max-width: 800px;
    margin: 0 auto 40px;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  }
  .contact-form {
    max-width: 100%;
    padding: 1rem;
    margin: 2rem auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .contact-form label {
    font-weight: bold;
  }
  
  .contact-form input,
  .contact-form textarea {
    font-size: 1rem;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 1rem;
    background: #f9f9f9; /* Light background */
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
  }
  
  contact-form input:focus,
  .contact-form textarea:focus {
    border-color: #4caf50;
    box-shadow: 0 0 5px rgba(76, 175, 80, 0.5); /* Glow effect */
  }
  
  .contact-form button {
    font-size: 1rem;
    padding: 10px;
    background: linear-gradient(to right, #4caf50, #388e3c); /* Gradient button */
    color: white;
    padding: 12px 16px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
  }
  
  contact-form button:hover {
    background: linear-gradient(to right, #388e3c, #2e7d32); /* Darker hover */
    transform: scale(1.05); /* Slight zoom on hover */
  }
  /* Shop Section */
  .shop-section {
    padding: 2em;
    text-align: center;
  }
  
  .shop-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }
  
  .product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5em;
  }
  
  .product-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(10, 34, 4, 0.85);
    padding: 1em;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .product-card:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  }
  
  .product-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
  }
  
  .product-card h3 {
    margin: 1em 0 0.5em;
    font-size: 1.5rem;
    color: #4caf50;
  }
  
  .product-card p {
    font-size: 1.2rem;
    color: #555;
  }
  
  .add-to-cart {
    margin-top: 1em;
    padding: 0.8em 1.5em;
    background-color: #4caf50;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .add-to-cart:hover {
    background-color: #388e3c;
  }
  
  /* Contact Section */
  .contact {
    padding: 4rem 2rem;
    background-color: #f9f9f9;
    border-top: 2px solid #4caf50;
  }
  
  .contact h2 {
    color: #4caf50;
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .contact p {
    font-size: 1.2rem;
    color: #555;
  }
  
  .social-links a {
    display: inline-block;
    transition: transform 0.3s ease;
  }
  
  .social-links a:hover {
    transform: scale(1.1);
  }
  
  .contact-form .form-control {
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 10px;
  }
  
  .contact-form .btn {
    background-color: #4caf50;
    color: white;
    border: none;
    transition: background-color 0.3s ease;
  }
  
  .contact-form .btn:hover {
    background-color: #388e3c;
  }
  /* Footer Styles */
.footer {
  background-color: #2ecc71;
  color: white;
  padding: 2rem 1rem;
  font-family: 'Segoe UI', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-about,
.footer-links,
.footer-contact,
.footer-newsletter {
  flex: 1 1 250px;
}

.footer h2, .footer h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.footer p {
  font-size: 1rem;
  line-height: 1.6;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 0.5rem;
}

.footer-links ul li a {
  color: white;
  text-decoration: none;
}

.footer-links ul li a:hover {
  text-decoration: underline;
}

.footer-socials a {
  margin-right: 10px;
  display: inline-block;
}

.footer-socials img {
  width: 30px;
  height: 30px;
}

.footer-newsletter form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-newsletter input {
  padding: 0.5rem;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
}

.footer-newsletter button {
  padding: 0.5rem;
  background-color: #27ae60;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.footer-newsletter button:hover {
  background-color: #1e8449;
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.9rem;
}

.footer-policy-links a {
  color: white;
  text-decoration: none;
  margin: 0 5px;
}

.footer-policy-links a:hover {
  text-decoration: underline;
}

/* Responsive Footer */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-about,
  .footer-links,
  .footer-contact,
  .footer-newsletter {
    flex: 1 1 100%;
  }
}
.footer-links {
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  color: #ffffff;
}

.footer-links a {
  color: #ffffff;
  margin: 0 10px;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-links {
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  color: #ffffff;
}

.footer-links a {
  color: #ffffff;
  margin: 0 10px;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}
/* Hero Section for the header*/
.hero {
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
              url('Image/20250513_175905.jpg') center/cover no-repeat;
  padding: 80px 20px;
  color: white;
  position: relative;
  text-align: center;
  overflow: hidden;
}

/* Animations */
.animated-hero h1,
.animated-hero .tagline,
.animated-hero .hero-buttons,
.animated-hero .scroll-indicator {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease-out forwards;
}

.animated-hero h1 {
  animation-delay: 0.2s;
}
.animated-hero .tagline {
  animation-delay: 0.4s;
}
.animated-hero .hero-buttons {
  animation-delay: 0.6s;
}
.animated-hero .scroll-indicator {
  animation-delay: 0.8s;
}

/* Keyframes */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scroll Indicator */
.scroll-indicator {
  font-size: 1.5rem;
  margin-top: 40px;
  opacity: 0.7;
  animation: bounce 2s infinite ease-in-out;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* Responsive padding */
@media (max-width: 768px) {
  .hero {
    padding: 80px 20px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero .tagline {
    font-size: 1.1rem;
  }
}

/* Advertising Section */
.advertising {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.advertising h1, .advertising h2 {
  color: #4caf50;
}

.advertising ul {
  list-style: disc;
  margin-left: 20px;
}

.advertising a {
  color: #388e3c;
  text-decoration: none;
}

.advertising a:hover {
  text-decoration: underline;
}

/* Cookie Banner */
#cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 1rem;
  z-index: 1000;
  text-align: center;
}

#cookie-banner p {
  margin: 0;
  font-size: 1rem;
}

#cookie-banner button {
  margin-left: 1rem;
  padding: 0.5rem 1rem;
  background: #4caf50;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

#cookie-banner button:hover {
  background: #388e3c;
}
lightbox {
  position: fixed;
  top : 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
.lightbox img {
  max-width: 90%;
  max-height: 90%;
}
.hover-animate {
  transition: color 0.3s ease, transform 0.3s ease;
}

.hover-animate:hover {
  color: #28a745; /* Green color on hover */
  transform: scale(1.1); /* Slight zoom effect */
}

