body {
margin:0;
font-family:Arial, sans-serif;
background:#0b0f0c;
color:#e0ffe0;
}

header {
background:#0f3d2e;
padding:15px 30px;
display:flex;
justify-content:space-between;
align-items:center;
position:sticky;
top:0;
}

nav a {
color:#aaffaa;
margin-left:20px;
text-decoration:none;
font-weight:bold;
}

nav a:hover {
color:white;
}

.hero {
background:url("https://images.unsplash.com/photo-1582515073490-dc0c47ad2c02") center/cover;
padding:120px 20px;
text-align:center;
}

.hero h1 {
font-size:45px;
color:#aaffaa;
}

.section {
padding:60px 20px;
text-align:center;
}

.image {
width:80%;
border-radius:15px;
margin-top:20px;
}

.gmp {
background:#003820;
padding:70px 20px;
border-top:3px solid #00ff99;
border-bottom:3px solid #00ff99;
}

ul {
max-width:600px;
margin:auto;
text-align:left;
}

.grid {
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:20px;
margin-top:30px;
}

.card, .product {
background:#112a1a;
padding:20px;
border-radius:15px;
transition:0.3s;
}

.card:hover, .product:hover {
transform:scale(1.05);
background:#1f5c3c;
}

.whatsapp {
position:fixed;
right:20px;
bottom:20px;
background:#25d366;
color:white;
font-size:30px;
padding:15px;
border-radius:50%;
text-decoration:none;
}

footer {
background:#062918;
padding:15px;
text-align:center;
}
.hero {
  background: linear-gradient(rgba(240, 236, 236, 0.6), rgba(0,0,0,0.6)),
  url("images/2.png") center/cover no-repeat;
}

.hero {
  animation: zoom 20s infinite alternate;
}

@keyframes zoom {
  from { background-size: 100%; }
  to { background-size: 110%; }
}

.info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.card-box {
  background: #f0fff4; /* light green */
  color: #064420;
  padding: 30px 25px;
  border-radius: 18px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: 0.4s ease;
  position: relative;
  overflow: hidden;
}

.card-box h2 {
  margin-bottom: 15px;
  color: #0b6b3a;
}

/* hover effect */
.card-box:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
  background: #d1fae5;
}

/* decorative glow line */
.card-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #00ff99, #00cc66);
  transition: 0.4s;
}

.card-box:hover::before {
  left: 0;
}

.gmp {
  background: url("images/gmp.jpg") center/cover no-repeat;
  padding: 100px 20px;
  position: relative;
  text-align: center;
 /* overflow: hidden;*/
}

/* dark overlay */
.gmp::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0,40,20,0.85), rgba(0,20,10,0.9));
}

.gmp-overlay {
  position: relative;
  max-width: 900px;
  margin: auto;
  padding: 50px 40px;
  border-radius: 25px;
  background: rgba(0, 80, 40, 0.6);
  backdrop-filter: blur(6px);
  box-shadow: 0 0 30px rgba(0,255,150,0.3);
  transition: 0.5s ease;
}



/* hover animation */
.gmp-overlay:hover {
  transform: scale(1.03);
  box-shadow: 0 0 60px rgba(0,255,180,0.6);
}

/* heading */
.gmp h2 {
  font-size: 40px;
  color: #9effc1;
  margin-bottom: 25px;
  text-shadow: 0 0 15px rgba(0,255,150,0.6);
}

/* highlighted GMP text */
.gmp-highlight {
  font-size: 20px;
  color: #ffffff;
  background: linear-gradient(90deg, #00ff99, #00cc66);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
  font-weight: bold;
  margin-bottom: 25px;
}

/* normal paragraph */
.gmp-text {
  font-size: 17px;
  line-height: 1.7;
  color: #e0ffe8;
}

/* glowing border animation */
.gmp-overlay::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 25px;
  border: 2px solid rgba(0,255,150,0.5);
  animation: glow 3s infinite alternate;
}

@keyframes glow {
  from {
    box-shadow: 0 0 10px rgba(0,255,150,0.4);
  }
  to {
    box-shadow: 0 0 25px rgba(0,255,150,0.9);
  }
}

.gmp-benefits {
  padding: 70px 20px;
  text-align: center;
  background: linear-gradient(135deg, #43856f, #034d2f);
}

.benefit-title {
  font-size: 32px;
  color: #9effc1;
  margin-bottom: 40px;
  text-shadow: 0 0 10px rgba(0,255,150,0.6);
}

/* grid */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
}

/* card */
.benefit-card {
  background: rgba(0, 80, 40, 0.6);
  padding: 25px 20px;
  border-radius: 18px;
  box-shadow: 0 0 20px rgba(0,255,150,0.25);
  transition: 0.4s ease;
  animation: fadeUp 1s ease forwards;
  opacity: 0;
}

/* card heading */
.benefit-card h4 {
  font-size: 22px;
  color: #00ff99;
  margin-bottom: 10px;
}

/* card text */
.benefit-card p {
  font-size: 16px;
  color: #e0ffe8;
  line-height: 1.6;
}

/* hover effect */
.benefit-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 0 40px rgba(0,255,180,0.6);
  background: rgba(0, 120, 60, 0.8);
}

/* bottom text */
.benefit-footer {
  margin-top: 40px;
  font-size: 18px;
  color: #c8ffe0;
  font-style: italic;
}

/* animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.contact-section {
  padding: 60px 20px;
  background: linear-gradient(90deg, #0c9c63, #034423);
  text-align: center;
}

.contact-section h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #c2f705;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  max-width: 1000px;
  margin: auto;
}

.contact-card {
  background: linear-gradient(90deg, #269166, #0b492a);
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.contact-card h3 {
  color: #dfee09;
  margin-bottom: 10px;
}

.contact-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 15px 30px rgba(46,125,50,0.3);
  background: #105e57;
}

.map-card {
  margin-top: 40px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.map-card:hover {
  transform: scale(1.02);
}

.map-card iframe {
  width: 100%;
  height: 350px;
  border: 0;
}

/*gallery*/

.gallery-section {
  padding: 60px 20px;
  background: #f1f8e9;
  text-align: center;
}

.gallery-section h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #2e7d32;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: auto;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 4px solid transparent;
  background: linear-gradient(white, white) padding-box,
              linear-gradient(135deg, #66bb6a, #2e7d32) border-box;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.15);
}

.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(46,125,50,0.4);
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(46,125,50,0.7);
  color: #fff;
  font-size: 1.3rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item:hover .overlay {
  opacity: 1;
}


.whatsapp-card {
  background: #e8f5e9;
}

.whatsapp-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 18px;
  background: #25D366;
  color: white;
  text-decoration: none;
  border-radius: 25px;
  font-weight: bold;
  transition: 0.3s;
}

.whatsapp-btn:hover {
  background: #1ebe5d;
  transform: scale(1.05);
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: white;
  font-size: 28px;
  padding: 14px 16px;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  transition: 0.3s;
  z-index: 999;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background: #1ebe5d;
}

.gallery-section {
  padding: 60px 20px;
  background: #f1f8e9;
  text-align: center;
}

.gallery-section h2 {
  color: #2e7d32;
  font-size: 2.5rem;
  margin-bottom: 30px;
}

.slider {
  position: relative;
  max-width: 800px;
  margin: auto;
  overflow: hidden;
  border-radius: 20px;
  border: 5px solid #2e7d32;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.slides {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

.slide {
  width: 100%;
  flex-shrink: 0;
  height: 400px;
  object-fit: cover;
}

/* buttons */
.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(46,125,50,0.7);
  color: white;
  border: none;
  font-size: 25px;
  padding: 10px 14px;
  cursor: pointer;
  border-radius: 50%;
  transition: 0.3s;
}

.prev:hover, .next:hover {
  background: #1b5e20;
}

.prev { left: 10px; }
.next { right: 10px; }

/* responsive */
@media (max-width: 600px) {
  .slide {
    height: 250px;
  }
}

/* stagger animation */
.benefit-card:nth-child(1) { animation-delay: 0.1s; }
.benefit-card:nth-child(2) { animation-delay: 0.2s; }
.benefit-card:nth-child(3) { animation-delay: 0.3s; }
.benefit-card:nth-child(4) { animation-delay: 0.4s; }
.benefit-card:nth-child(5) { animation-delay: 0.5s; }
.benefit-card:nth-child(6) { animation-delay: 0.6s; }
