/* Hero fade transition */
#heroImage {
  transition: opacity 1s ease;

.hero {
  position: relative;
  height: 60vh; /* smaller default */
  max-height: 600px; /* cap the height */
  min-height: 300px; /* avoid collapsing on small screens */
  overflow: hidden;
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* ensures no stretching */
  position: absolute;
  top: 0;
  left: 0;
  max-height: 100%; /* don’t overflow hero box */
  transition: opacity 1s ease-in-out;
}

/* Adjust hero height on mobile */
@media (max-width: 768px) {
  .hero {
    height: 45vh;
    max-height: 400px;
  }
}
/* Logo image */
.logo img {
  height: 60px; /* bigger on desktop */
  width: auto;
}

.brand-name {
  font-size: 1.8rem;
  font-weight: bold;
  color: white; /* stands out on dark header */
  margin-left: 10px;
}

/* Tablet adjustments */
@media (max-width: 1024px) {
  .logo img {
    height: 50px;
  }
  .brand-name {
    font-size: 1.6rem;
  }
}

/* Mobile adjustments */
@media (max-width: 640px) {
  .logo img {
    height: 40px;
  }
  .brand-name {
    font-size: 1.4rem;
  }
}
  
}

/* Responsive grid for collections */
@media (max-width: 1024px) {
  .col-3 { grid-column: span 6; } /* 2 per row on tablets */
}
@media (max-width: 640px) {
  .col-3 { grid-column: span 12; } /* 1 per row on phones */
}

/* Footer icons (if you want them styled as circles) */
.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-right: 8px;
  border-radius: 50%;
  background: #fff2;
  color: white;
  transition: background 0.3s;
}
.footer-socials {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.footer-socials a {
  display: inline-block;
}

.social-icon {
  width: 32px;   /* size of icon */
  height: 32px;
  transition: transform 0.3s ease;
}

.social-icon:hover {
  transform: scale(1.2); /* zoom on hover */
}


.gallery-btn {
  margin-top: 10px;
  padding: 8px 16px;
  background: darkgreen;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
}
.gallery-btn {
  margin-top: 12px;
  padding: 10px 20px;
  background: linear-gradient(135deg, darkgreen, #2ecc71);
  color: white;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.gallery-btn:hover {
  background: linear-gradient(135deg, #27ae60, black);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.gallery-btn:active {
  transform: translateY(0) scale(0.97);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

/* gallery button - modern pill */
.gallery-btn {
  display: inline-block;
  margin-top: 12px;
  padding: 10px 22px;
  background: linear-gradient(135deg, #0f6a2f, #2ecc71);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(11,26,16,0.18);
  transition: transform .22s ease, box-shadow .22s ease, filter .22s ease;
  text-decoration: none; /* if using <a> */
  text-align: center;
}

/* hover / active / focus */
.gallery-btn:hover {
  transform: translateY(-4px) scale(1.03);
  filter: brightness(1.03);
  box-shadow: 0 10px 28px rgba(11,26,16,0.23);
}
.gallery-btn:active { transform: translateY(0) scale(.99); }
.gallery-btn:focus {
  outline: 3px solid rgba(15,106,47,0.18);
  outline-offset: 3px;
}

.learn-more-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 25px;
  background: darkgreen;   /* button background */
  color: white;            /* button text color */
  font-weight: bold;
  border-radius: 50px;     /* pill shape */
  text-decoration: none;   /* remove underline */
  transition: background 0.3s ease, transform 0.2s ease;
}

.learn-more-btn:hover {
  background: black;       /* hover effect */
  transform: scale(1.05);  /* small zoom on hover */
}

/* Mobile first (default) */
.ngo-image {
  width: 90%;
  max-width: 350px;    
  height: 200px;        /* fixed height */
  object-fit: cover;    /* crop instead of squish */
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  display: block;
  margin: 0 auto;       /* center on mobile */
}

/* Tablet / Desktop */
@media (min-width: 768px) {
  .ngo-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .ngo-text {
    flex: 1;
    padding-right: 20px;
  }

  .ngo-image-container {
    flex: 1;
    display: flex;
    justify-content: center;
  }

  .ngo-image {
    width: 100%;
    max-width: 500px;
    height: 300px;      /* larger banner height on desktop */
    object-fit: cover;  /* keep it neat */
  }
}


.buy-btn {
  display: inline-block;
  margin: 10px 0 15px;
  padding: 10px 20px;
  background: darkgreen;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.buy-btn:hover {
  background: #0b6623; /* darker green */
}

.lightbox-content {
  text-align: center;
  max-width: 90%;
}

.lightbox-content img {
  max-width: 90%;
  max-height: 70vh;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.lightbox-caption {
  margin-top: 15px;
  font-size: 1rem;
  color: #fff;
  background: rgba(0, 0, 0, 0.6); /* dark transparent background */
  padding: 10px 15px;
  border-radius: 8px;
  display: inline-block;
}
.buy-btn {
  display: inline-block;
  margin: 10px 0 15px;
  padding: 10px 20px;
  background: darkgreen;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.buy-btn {
  display: block;           /* makes it appear under the image */
  width: 100%;              /* optional: full width under image */
  text-align: center;       /* center the text */
  margin: 10px 0 15px;
  padding: 10px 0;          /* vertical padding */
  background: darkgreen;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.buy-btn:hover {
  background: #0b6623;      /* darker green on hover */
}


.lightbox {
  display: none;
  position: fixed;
  top: 0; 
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  overflow-y: auto; /* allow scrolling if content is taller than viewport */
  padding: 40px 20px; /* spacing around content */
  box-sizing: border-box;
  z-index: 9999;
}

.lightbox-content {
  text-align: center;
  max-width: 90%;
  width: 600px; /* limit width on desktop */
  margin: 0 auto;
}

.lightbox img {
  width: 100%;
  height: auto; /* maintain aspect ratio */
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.lightbox-caption {
  margin-top: 10px;
  font-size: 1rem;
  color: #fff;
  background: rgba(17, 77, 2, 0.678); /* semi-transparent backlight */
  padding: 8px 15px;
  border-radius: 8px;
  display: inline-block;
  max-width: 100%;
  word-wrap: break-word;
}

/* Close button */
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2rem;
  color: white;
  text-decoration: none;
  font-weight: bold;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .lightbox-content {
    width: 90%;
  }

  .lightbox-caption {
    font-size: 0.9rem;
  }
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  background: #f5f5f5; /* subtle light background */
  color: #333;
}
header {
  background: linear-gradient(to right, darkgreen, #4caf50);
  color: #fff;
  padding: 40px 20px;
  text-align: center;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

header h1 {
  font-size: 2.5rem;
  margin: 0;
}

header p {
  font-size: 1.2rem;
  margin-top: 10px;
}
.gallery {
  padding: 40px 20px;
  text-align: center;
}

.gallery h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: darkgreen;
  border-bottom: 3px solid darkgreen;
  display: inline-block;
  padding-bottom: 5px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.gallery-item {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item p {
  padding: 10px;
  font-weight: bold;
  color: #333;
  margin: 0;
}
footer.footer-bottom {
  background: #222;
  color: #fff;
  padding: 20px 10px;
  text-align: center;
  font-size: 0.9rem;
}

footer .designer {
  color: #4caf50;
  font-weight: bold;
}
.lightbox-content {
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.lightbox:target .lightbox-content {
  transform: scale(1);
  opacity: 1;
}
.buy-btn {
  display: block;
  width: 90%;
  margin: 10px auto 15px auto;
  padding: 12px 0;
  background: darkgreen;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}


.buy-btn:hover {
  background: #0b6623;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  background: linear-gradient(120deg, #f0f8f5, #ffffff);
  color: #333;
}
.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
  box-shadow: 0 8px 20px rgba(0,128,0,0.3);
}
.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,128,0,0.3); /* greenish glow */
}
.back-home {
  text-align: center;
  margin: 40px 0 20px 0;
}

.back-home-btn {
  display: inline-block;
  padding: 12px 25px;
  background: darkgreen;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.back-home-btn:hover {
  background: #0b6623;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 15px rgba(0,128,0,0.3);
}
.ceo-section {
  max-width: 1000px;
  margin: 50px auto;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  background: #f0f8f5; /* subtle light background for distinction */
  border-radius: 15px;
  padding: 30px 20px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
}

.ceo-image {
  flex: 1 1 300px;
  min-width: 250px;
}

.ceo-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.ceo-image img:hover {
  transform: scale(1.05);
}

.ceo-text {
  flex: 2 1 400px;
  min-width: 300px;
}

.ceo-text h2 {
  font-size: 2rem;
  color: darkgreen;
  margin-bottom: 15px;
  position: relative;
}

.ceo-text h2::after {
  content: '';
  width: 60px;
  height: 4px;
  background: darkgreen;
  display: block;
  margin-top: 5px;
  border-radius: 2px;
}

.ceo-text p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}

/* Responsive */
@media (max-width: 768px) {
  .ceo-section {
    flex-direction: column;
    gap: 25px;
  }
}
.ceo-section {
  max-width: 1000px;
  margin: 50px auto;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  background: #f0f8f5; /* subtle light background for distinction */
  border-radius: 15px;
  padding: 30px 20px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
}

.ceo-image {
  flex: 1 1 300px;
  min-width: 250px;
}

.ceo-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}



.ceo-text {
  flex: 2 1 400px;
  min-width: 300px;
}

.ceo-text h2 {
  font-size: 2rem;
  color: darkgreen;
  margin-bottom: 15px;
  position: relative;
}

.ceo-text h2::after {
  content: '';
  width: 60px;
  height: 4px;
  background: darkgreen;
  display: block;
  margin-top: 5px;
  border-radius: 2px;
}

.ceo-text p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}

/* Responsive */
@media (max-width: 768px) {
  .ceo-section {
    flex-direction: column;
    gap: 25px;
  }
}
.about-image img {
  width: 100%;
  max-width: 400px; /* limits image size on desktop */
  height: auto;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

@media (max-width: 768px) {
  .about-image img {
    max-width: 100%; /* full width on mobile */
  }
}
.mission-vision {
  max-width: 1000px;
  margin: 50px auto;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.mission, .vision {
  flex: 1 1 400px;
  min-width: 300px;
  background: #f0f8f5; /* light background */
  padding: 25px 20px;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
  text-align: center;
}

.mission h2, .vision h2 {
  font-size: 1.8rem;
  color: darkgreen;
  margin-bottom: 15px;
  position: relative;
}

.mission h2::after, .vision h2::after {
  content: '';
  width: 60px;
  height: 4px;
  background: darkgreen;
  display: block;
  margin: 5px auto 0 auto;
  border-radius: 2px;
}

.mission p, .vision p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}

/* Responsive */
@media (max-width: 768px) {
  .mission-vision {
    flex-direction: column;
    gap: 25px;
  }
}
.hero {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, darkgreen, lightgreen);
  color: white;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.hero .dealers-in {
  font-size: 1.2rem;
  font-weight: bold;
  background: rgba(0, 0, 0, 0.4); /* subtle backlight */
  display: inline-block;
  padding: 8px 15px;
  border-radius: 8px;
}


