
@keyframes leafSway {
  0%,100% { transform: rotate(0deg); }
  50% { transform: rotate(6deg); }
}
@keyframes floatItem {
  0% { transform: translateY(0) rotate(0deg); opacity:0.5; }
  50% { transform: translateY(-20px) rotate(5deg); opacity:1; }
  100% { transform: translateY(0) rotate(-5deg); opacity:0.5; }
}
@keyframes seedSprout {
  0% { transform: translateY(30px) scale(0.8); opacity:0; }
  50% { transform: translateY(0) scale(1); opacity:1; }
  100% { transform: translateY(-10px) scale(1.1); opacity:1; }
}

.palm-leaf { animation: leafSway 4s ease-in-out infinite; transform-origin: center bottom; }
.floating-item { position:absolute; font-size:2rem; opacity:0.6; animation: floatItem 6s ease-in-out infinite; }
.sprouting-seed { animation: seedSprout 4s ease-in-out infinite alternate; }
/* palm */
/* event */
@keyframes floatLeaf {
  0% { transform: translateY(0) rotate(0deg); opacity:0.4; }
  50% { transform: translateY(-30px) rotate(20deg); opacity:0.7; }
  100% { transform: translateY(0) rotate(-10deg); opacity:0.4; }
}

@keyframes fallSeed {
  0% { transform: translateY(-100px) rotate(0deg); opacity:0; }
  20% { opacity:1; }
  100% { transform: translateY(600px) rotate(360deg); opacity:0; }
}

.floating {
  position: absolute;
  font-size: 2rem;
  opacity: 0.4;
  animation: floatLeaf 5s ease-in-out infinite;
}

.leaf1 { top: 10%; left: 5%; animation-delay: 0s; }
.leaf2 { top: 30%; right: 10%; animation-delay: 2s; }
.leaf3 { top: 60%; left: 20%; animation-delay: 4s; }

.seed-fall {
  position: absolute;
  top: -100px;
  font-size: 1.8rem;
  animation: fallSeed 8s linear infinite;
}

.seed1 { left: 15%; animation-delay: 1s; }
.seed2 { left: 45%; animation-delay: 3s; }
.seed3 { left: 70%; animation-delay: 5s; }
.seed4 { left: 85%; animation-delay: 2s; }

.leaf-move {
  animation: pulse 3s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}
/* end event */
.gradient-heading {
  background: linear-gradient(90deg, #43a047, #1b5e20);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.position-relative:hover .overlay {
  opacity: 1;
}
.about-text:hover {
  transform: translateY(-5px);
  transition: 0.6s;
}


.swiper {
    width: 90%;
    max-width: 900px;
    padding-top: 50px;
    padding-bottom: 50px;
}
.swiper-slide {
    background-position: center;
    background-size: cover;
    width: 300px;
    height: 400px;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    overflow: hidden;
}
.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gradient-heading {
   background: linear-gradient(to right, #e2d110, #2cf633);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
}

/* Round awards carousel */
.awards-carousel .award-item {
  padding: 10px;
}

.awards-carousel .award-item img {
  width: 140px;              /* size of the circle */
  height: 140px;             /* keep square for perfect circle */
  border-radius: 50%;        /* make it round */
  object-fit: cover;         /* crop nicely inside the circle */
  box-shadow: 0 6px 18px rgba(0,0,0,0.12); /* soft shadow */
  border: 4px solid #fff;    /* optional white ring */
  display: block;
  margin: 0 auto;
  transition: transform .25s ease, box-shadow .25s ease;
}

.awards-carousel .award-item img:hover {
  transform: scale(1.04);
  box-shadow: 0 10px 24px rgba(0,0,0,0.16);
}

/* Tidy slick dots under the row */
.awards-carousel .slick-dots {
  bottom: -30px;
}

/* blog */
  .blog-section {
    max-width: 1100px;
    margin: 60px auto;
    padding: 0 15px;
  }

  .blog-row {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 40px;
    background: #f8f9f7;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  }

  .blog-image {
    flex: 1;
    min-width: 280px;
  }

  .blog-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
  }

  .blog-content {
    flex: 2;
  }

  .blog-content h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    color: #2e7d32;
  }

  .blog-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: #3e2723;
  }

  /* 📱 Responsive Design */
  @media (max-width: 768px) {
    .blog-row {
      flex-direction: column;
      text-align: center;
    }
    .blog-image, .blog-content {
      flex: 100%;
    }
    .blog-content h3 {
      font-size: 1.4rem;
    }
  }
/* blog */
