 nav {
      position: absolute;
      top: 0;
      width: 100%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 40px;
      z-index: 10;
      background: #fff;
      backdrop-filter: blur(5px);
      flex-wrap: wrap;
      
    }

    .logo {
      display: flex;
      align-items: center;
      color: #3f8233;
      font-size: 1.5rem;
      font-weight: bold;
      gap: 10px;
      font-family: 'Segoe UI', sans-serif;
      text-decoration: none;
    }

    .logo img {
      height: 59px;   /* Adjust logo size */
      margin-right: auto;
    }

    .menu-toggle {
      display: none;
      font-size: 1.8rem;
      color: white;
      background: none;
      border: none;
      cursor: pointer;
    }

    nav ul {
      display: flex;
      list-style: none;
      gap: 25px;
    }

    nav ul li a {
      color: #3f8233;
      text-decoration: none;
      font-size: 1.2rem;
      font-weight: 500;
      transition: color 0.3s;
      
    }

    nav ul li a:hover {
      color: #c2ffb4;
    }
  @media (max-width: 768px) {
  .menu-toggle {
    display: block;
    margin-left: auto; /* keeps it to the right */
    margin-top: -80px;  /* move it upward - adjust as needed */
  }

  nav ul {
    flex-direction: column;
    width: 100%;
    display: none;
    background: rgba(0, 0, 0, 0.7);
    padding: 20px;
    margin-top: 10px;
  }

  nav ul.show {
    display: flex;
  }
} /* Hero Section */
    .hero {
      background: url('./images/home-banner.png') no-repeat center center/cover;
      position: relative;
      color: white;
      min-height: 100vh;   /* Full height of the viewport */
      width: 100%;         /* Full width */
      display: flex;
      align-items: flex-end;   /* Push content to the bottom */
      padding: 0 20px 80px 20px;  /* Bottom spacing */
    }

    .hero::after {
      content: "";
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background: rgba(0, 0, 0, 0.4);
    }

    .hero-content {
      position: relative;
      z-index: 1;
      animation: fadeUp 1.2s ease-in-out;
    }
    .hero h1 {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;   /* Regular weight */
  letter-spacing: 1px;
}


    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(50px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .badge-custom {
      background-color: #063A0E;
      color: white;
      font-size: 14px;
      padding: 8px 15px;
      border-radius: 25px;
    }

    .cta-box {
      background: #fff;
      color: #333;
      border-radius: 15px;
      padding: 25px;
      box-shadow: 0 8px 20px rgba(0,0,0,0.2);
      margin-top: 25px;
    }

    .cta-box p {
      font-size: 15px;
      margin-bottom: 15px;
    }

    .cta-btn {
      background: #063A0E;
      color: #fff;
      border: none;
      padding: 10px 25px;
      border-radius: 25px;
      transition: 0.3s;
    }

    .cta-btn:hover {
      background: #063A0E;
    }

    .hero img {
      max-width: 100%;
      border-radius: 15px;
    }

    .hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
}

.hero-slide {
  height: 100vh;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-slide .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.hero-content {
  position: relative;
  z-index: 2;
  animation: fadeUp 1.2s ease-in-out;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
} .about-section {
      padding: 80px 0;
      background: #e1f5e5;
    }

    .about-tag {
      display: inline-block;
      background: #E6F4EA;
      color: #04520F;
      font-weight: 600;
      padding: 6px 18px;
      border-radius: 20px;
      margin-bottom: 15px;
      font-size: 0.9rem;
    }

    .services-list {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 8px 20px;
      margin-bottom: 30px;
    }

    .services-list li {
      list-style: none;
      color: #04520F;
      font-weight: 500;
    }

    .services-list li::before {
      content: "» ";
      color: #28a745;
      font-weight: bold;
    }

    .contact-btn {
      background: #04520F;
      color: #fff;
      padding: 12px 28px;
      border-radius: 30px;
      border: none;
      font-size: 1rem;
      font-weight: 600;
      transition: 0.3s;
    }
    .contact-btn:hover {
      background: #028a3d;
    }

    .phone-info {
      display: inline-flex;
      align-items: center;
      margin-left: 20px;
      font-weight: 500;
      color: #333;
    }

    .phone-info i {
      background: #E6F4EA;
      color: #04520F;
      padding: 8px;
      border-radius: 50%;
      margin-right: 10px;
    }

    /* Right side images */
    .about-images {
      position: relative;
    }

    .about-images img {
      border-radius: 20px;
      width: 100%;
      object-fit: cover;
    }

    .experience-badge {
      position: absolute;
      bottom: -20px;
      right: -20px;
      background: #7ED957;
      color: #fff;
      font-weight: 700;
      padding: 20px;
      border-radius: 15px;
      font-size: 1.1rem;
      text-align: center;
      box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    }

    .experience-badge span {
      display: block;
      font-size: 2rem;
    }

    @media (max-width: 768px) {
      .about-section h2 {
        font-size: 2rem;
      }
      .services-list {
        grid-template-columns: 1fr;
      }
      .experience-badge {
        bottom: -15px;
        right: -10px;
        padding: 15px;
      }
    }
    .product-section {
      background-color: #e1f5e5;
      padding: 110px 0;
      position: relative;
      overflow: hidden;
    }
    .section-product{
      background-color: #ffffff;
      padding: 110px 0;
      position: relative;
      overflow: hidden;
    }

    /* Floating Decorative Icons */
    .floating-icon {
      position: absolute;
      font-size: 2.8rem;
      color: rgba(63, 163, 77, 0.12);
      animation: float 6s ease-in-out infinite;
      z-index: 0;
    }
    .floating-icon:nth-child(1) { top: 18%; left: 6%; animation-delay: 0s; }
    .floating-icon:nth-child(2) { top: 75%; left: 12%; animation-delay: 2s; }
    .floating-icon:nth-child(3) { top: 28%; right: 10%; animation-delay: 4s; }
    .floating-icon:nth-child(4) { bottom: 15%; right: 18%; animation-delay: 1s; }

    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-25px); }
    }

    /* Section Heading */
    .section-subtitle {
      display: inline-block;
      background: #E6F4EA;
      color: #04520F;
      font-weight: 600;
      padding: 8px 22px;
      border-radius: 30px;
      margin-bottom: 15px;
      font-size: 0.95rem;
      letter-spacing: 1px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    }

    .section-title {
      text-align: center;
      margin-bottom: 4rem;
      position: relative;
    }

    .section-title h2 {
      font-size: 3rem;
      font-weight: 800;
      color: #063A0E;
      margin-bottom: 15px;
      position: relative;
      display: inline-block;
    }

    .section-title h2::after {
      content: "";
      position: absolute;
      bottom: -8px; left: 50%;
      transform: translateX(-50%);
      width: 0; height: 4px;
      background: linear-gradient(135deg, #3fa34d, #04520F);
      border-radius: 4px;
      animation: underline 3s infinite;
    }

    @keyframes underline {
      0%, 100% { width: 0; }
      50% { width: 70px; }
    }

    .section-title p {
      font-size: 1.1rem;
      color: #555;
      max-width: 650px;
      margin: 0 auto;
      line-height: 1.7;
    }

    /* Card Style */
    .product-card {
      border-radius: 22px;
      overflow: hidden;
      background: rgba(255,255,255,0.95);
      backdrop-filter: blur(12px);
      box-shadow: 0 6px 28px rgba(0,0,0,0.08);
      transition: all 0.5s ease;
      height: 100%;
      position: relative;
      transform-style: preserve-3d;
    }

    .product-card::before {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: 22px;
      padding: 2px;
      background: linear-gradient(135deg, #215c29, #7dab83, #c1eac7);
      background-size: 300% 300%;
      animation: gradientBorder 6s ease infinite;
      /* -webkit-mask: linear-gradient(#f3dcdc 0 0) content-box, linear-gradient(#fff 0 0);
      -webkit-mask-composite: xor;
              mask-composite: exclude; */
      pointer-events: none;
    }

    @keyframes gradientBorder {
      0% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
    }

    .product-card:hover {
      transform: translateY(-12px) scale(1.04) rotateX(4deg);
      box-shadow: 0 18px 40px rgba(0,0,0,0.25);
    }

    .product-img-wrapper {
      position: relative;
      overflow: hidden;
    }

    .product-img {
      width: 100%;
      height: 270px;
      object-fit: cover;
      transition: transform 0.7s ease;
    }

    .product-card:hover .product-img {
      transform: scale(1.18) rotate(2deg);
    }

    .img-overlay {
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: linear-gradient(to top, rgba(0,0,0,0.45), transparent);
      opacity: 0;
      transition: opacity 0.5s ease;
    }
    .product-card:hover .img-overlay {
      opacity: 1;
    }

    .card-body {
      padding: 2rem;
      text-align: left;
      position: relative;
      z-index: 2;
    }

    .service-label {
      font-size: 0.8rem;
      font-weight: 600;
      color: #6c757d;
      margin-bottom: 10px;
      text-transform: uppercase;
      letter-spacing: 1.5px;
    }

    
    .card-body h5 i {
      color: #3fa34d;
      font-size: 1.5rem;
      transition: transform 0.4s ease, color 0.4s ease;
    }

    .product-card:hover h5 i {
      transform: rotate(25deg) scale(1.2);
      color: #04520F;
    }

    .card-body p {
      font-size: 1rem;
      color: #555;
      margin-bottom: 25px;
      line-height: 1.65;
    }

    /* Button */
    .read-btn {
      display: inline-block;
      background: linear-gradient(135deg, #3fa34d, #04520F);
      color: #fff;
      font-weight: 600;
      padding: 10px 26px;
      border-radius: 30px;
      text-decoration: none;
      transition: all 0.35s ease;
      box-shadow: 0 4px 14px rgba(0,0,0,0.15);
      position: relative;
      overflow: hidden;
    }

    .read-btn::after {
      content: "";
      position: absolute;
      top: 0; left: -80px;
      width: 50px; height: 100%;
      background: rgba(255, 255, 255, 0.4);
      transform: skewX(-25deg);
      transition: left 0.6s;
    }

    .read-btn:hover::after {
      left: 120%;
    }

    .read-btn:hover {
      background: linear-gradient(135deg, #2d8538, #034010);
      transform: translateY(-3px) scale(1.06);
      box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    }

    /* Fade + Scale animation */
    [data-animate] {
      opacity: 0;
      transform: translateY(40px) scale(0.98);
      transition: all 0.9s ease;
    }
    [data-animate].active {
      opacity: 1;
      transform: translateY(0) scale(1);
    } .why-choose-section {
        font-family: Arial, sans-serif;
      padding: 80px 0;
      background: #e1f5e5;
    }

    .subtitle {
      display: inline-block;
      background: #E6F4EA;
      color: #04520F;
      font-weight: 600;
      padding: 6px 18px;
      border-radius: 20px;
      margin-bottom: 15px;
      font-size: 0.9rem;
    }

    .section-heading h2 {
      font-size: 2.5rem;
      font-weight: 700;
      color: #063A0E;
      margin-bottom: 15px;
    }

    .section-heading p {
      font-size: 1rem;
      color: #444;
      line-height: 1.6;
      max-width: 600px;
    }

    .why-list {
      margin-top: 40px;
      position: relative;
    }

    .why-item {
      margin-bottom: 40px;
      position: relative;
      padding-left: 80px;
    }

    .why-item:last-child {
      margin-bottom: 0;
    }

    .why-icon {
      position: absolute;
      left: 0;
      top: 0;
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background: #E6F4EA;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 28px;
      color: #2E7D32;
      border: 2px solid #2E7D32;
    }

    .why-item h5 {
      font-size: 1.25rem;
      font-weight: 600;
      color: #214D21;
      margin-bottom: 8px;
    }

    .why-item p {
      font-size: 0.95rem;
      color: #555;
      margin: 0;
    }

    .why-image img {
      border-radius: 15px;
      width: 100%;
      height: auto;
      object-fit: cover;
      box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    } .testimonial-section {
      padding: 70px 0;
      background-color: #e1f5e5;
      color: #fff;
    }

    .testimonial-heading {
      text-align: center;
      margin-bottom: 50px;
    }

    .testimonial-heading h2 {
      font-size: 2.5rem;
      font-weight: bold;
      color: #000000;
    }

    .testimonial-card {
      background: #5e925e;
      color: #333;
      border-radius: 15px;
      padding: 25px;
      transition: transform 0.3s ease-in-out;
    }

    .testimonial-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    }

    .testimonial-img {
      width: 70px;
      height: 70px;
      object-fit: cover;
      border-radius: 50%;
      border: 3px solid #006400;
    }

    .testimonial-name {
      font-weight: 600;
      margin-top: 10px;
      font-size: 1.1rem;
    }

    /* Move carousel controls to bottom center */
    .carousel-controls {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin-top: 20px;
    }

    .carousel-controls button {
      background: #fff;
      border: none;
      width: 45px;
      height: 45px;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      transition: 0.3s;
    }

    .carousel-controls button:hover {
      background: #006400;
    }

    .carousel-controls span {
      filter: invert(1);
    }.footer-section {
      background-color: #354939;
    }
    .footer-section h5 {
  font-size: 1.4rem;         /* Slightly bigger than default */
  letter-spacing: 1px;       /* Adds spacing between letters */
  color: #EEFDE9;            /* Matches your footer text color */
  margin-bottom: 1rem;       /* Extra space below heading */
  position: relative;        /* For underline effect */
  display: inline-block;
  text-transform: uppercase; /* Makes headings consistent */
}

.footer-section h5::after {
  content: "";
  display: block;
  width: 40px;              /* underline width */
  height: 2px;              /* underline thickness */
  background-color: #EEFDE9;
  margin-top: 6px;
  border-radius: 2px;
}

.footer-section p {
  font-size: 1rem;        /* Slightly smaller text for neat look */
  line-height: 1.6;         /* Better readability */
  color: #dcead7;           /* Softer white for less strain */
  margin-bottom: 0.6rem;    /* Balanced spacing between lines */
}

.footer-section p a {
  color: #EEFDE9;           /* Links stay readable */
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section p a:hover {
  color: #ffffff;           /* Brightens on hover */
  text-decoration: underline;
}

    .footer-link {
      color: #EEFDE9;
      text-decoration: none;
      display: block;
      margin-bottom: 8px;
      font-weight: 500;
    }
    .footer-link:hover {
      text-decoration: underline;
      color: #EEFDE9;
    }
    .footer-logo {
      font-family: 'Playfair Display', serif;
      font-weight: 700;
      font-size: 1.8rem;
      line-height: 1.2;
      color: #EEFDE9;
    }


/*about page*/

.about-hero {
    position: relative;
    background: url("./images/about-image.jpg") center/cover no-repeat;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    overflow: hidden;
    font-family: 'Playfair Display', serif;
  }

  .about-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55); /* dark overlay */
  }

  .about-hero-content {
    position: relative;
    z-index: 1;
  }

  .about-hero h1 {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 10px;
  }

  .about-hero p {
    font-size: 1.7rem;
    opacity: 0.9;
    color: white;
  }
  /* Call to Action button */
  .hero-btn {
    background: linear-gradient(135deg, #6ea68c, #28a745);
    border: none;
    padding: 11px 20px;
    font-size: 1rem;
    font-weight: 400;
    border-radius: 20px;
    color: #fff;
    transition: all 0.4s ease;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  }

  .hero-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.35);
  }

  @media (max-width: 768px) {
    .about-hero {
      height: 45vh;
    }
    .about-hero h1 {
      font-size: 2rem;
    }
    .about-hero p {
      font-size: 1rem;
    }
  }
   body {
      font-family: 'Poppins', sans-serif;
      margin: 0;
      padding: 0;
      overflow-x: hidden;
      background: linear-gradient(to bottom right, #f6fff8, #e0f2e9);
    }

    .hero-section {
      position: relative;
      text-align: center;
      padding: 120px 20px;
      overflow: hidden;
    }

    /* Floating tea product images */
    .hero-section img.tea {
      position: absolute;
      opacity: 0.9;
      z-index: -1;
      animation: float 12s ease-in-out infinite;
      border-radius: 15px;
    }

    .tea-left {
      top: 50%;
      left: -80px;
      width: 200px;
    }

    .tea-right {
      top: 15%;
      right: -80px;
      width: 180px;
      animation-delay: 2s;
    }

    .tea-bottom {
      bottom: 10%;
      right: 20%;
      width: 180px;
      animation-delay: 4s;
    }

    @keyframes float {
      0%   { transform: translateY(0px) rotate(0deg); }
      50%  { transform: translateY(-30px) rotate(5deg); }
      100% { transform: translateY(0px) rotate(0deg); }
    }

    .hero-logo {
      width: 140px;
      margin-bottom: 20px;
      border-radius: 50%;
      animation: fadeInDown 1.5s ease;
    }

    .hero-subtitle {
      color: #063A0E;
      font-weight: 600;
      letter-spacing: 2px;
      margin-bottom: 15px;
      animation: fadeIn 2s ease;
    }

    .hero-title {
      font-size: 2.5rem;
      font-weight: 700;
      background: linear-gradient(90deg, #2c6e2f, #62c46a);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      margin-bottom: 25px;
      line-height: 1.3;
      animation: fadeInUp 2s ease;
    }

    .hero-text {
      font-size: 1.05rem;
      color: #555;
      max-width: 720px;
      margin: 0 auto 35px auto;
      line-height: 1.7;
      animation: fadeInUp 2.5s ease;
    }

    .signature {
      font-family: 'Dancing Script', cursive;
      font-size: 2rem;
      color: #2c6e2f;
      margin-top: 30px;
      animation: fadeInUp 3s ease;
    }

    /* Animations */
    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @keyframes fadeInDown {
      from { opacity: 0; transform: translateY(-30px); }
      to { opacity: 1; transform: translateY(0); }
    } /* Section Background */
    .legacy-section {
      background: linear-gradient(135deg, #e8f5e9, #f1f8f4);
      padding: 80px 0;
      position: relative;
      overflow: hidden;
    }

    /* Decorative background shapes */
    .legacy-section::before,
    .legacy-section::after {
      content: '';
      position: absolute;
      width: 250px;
      height: 250px;
      border-radius: 50%;
      background: rgba(46, 125, 50, 0.08);
      z-index: 0;
    }
    .legacy-section::before {
      top: -100px;
      left: -100px;
    }
    .legacy-section::after {
      bottom: -100px;
      right: -100px;
    }

    /* Title */
    .legacy-section h2 {
      text-align: center;
      font-size: 3rem;
      font-weight: 800;
      color: #063A0E;
      margin-bottom: 70px;
      position: relative;
      z-index: 2;
    }
    .legacy-section h2::after {
      content: '';
      width: 80px;
      height: 4px;
      background: #2E7D32;
      display: block;
      margin: 15px auto 0;
      border-radius: 2px;
    }

    /* Timeline */
    .legacy-timeline {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      position: relative;
      max-width: 1300px;
      margin: auto;
      flex-wrap: nowrap;
      gap: 20px;
      z-index: 2;
    }

    /* Connecting Line */
    .legacy-timeline::before {
      content: '';
      position: absolute;
      top: 70px;
      left: 0;
      right: 0;
      height: 6px;
      background: linear-gradient(90deg, #a5d6a7, #66bb6a, #a5d6a7);
      background-size: 200% 100%;
      animation: moveLine 4s linear infinite;
      border-radius: 10px;
      z-index: 1;
    }

    @keyframes moveLine {
      0% { background-position: 200% 0; }
      100% { background-position: -200% 0; }
    }

    /* Timeline Item */
    .legacy-item {
      position: relative;
      text-align: center;
      flex: 1;
      min-width: 0;
      z-index: 3;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .legacy-item:hover {
      transform: translateY(-10px);
    }

    /* Icon Circle */
    .legacy-icon {
      width: 90px;
      height: 90px;
      margin: 0 auto 20px;
      border-radius: 50%;
      background: #fff;
      border: 4px solid #2E7D32;
      box-shadow: 0 6px 20px rgba(0,0,0,0.15);
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 32px;
      color: #2E7D32;
      transition: all 0.4s ease;
    }

    .legacy-item:hover .legacy-icon {
      background: #2E7D32;
      color: #fff;
      transform: scale(1.15) rotate(8deg);
      box-shadow: 0 8px 24px rgba(46, 125, 50, 0.4);
    }

    /* Headings */
    .legacy-item h4 {
      font-size: 1.4rem;
      font-weight: bold;
      color: #214D21;
      margin-bottom: 10px;
    }

    /* Text */
    .legacy-item p {
      font-size: 1rem;
      color: #555;
      line-height: 1.6;
      max-width: 260px;
      margin: 0 auto;
    }

    /* Connector Dot */
    .legacy-dot {
      position: absolute;
      top: 55px;
      left: 50%;
      transform: translateX(-50%);
      width: 22px;
      height: 22px;
      background: #2E7D32;
      border-radius: 50%;
      z-index: 4;
      box-shadow: 0 0 12px rgba(46,125,50,0.8);
      animation: pulse 1.8s infinite;
    }

    @keyframes pulse {
      0% { box-shadow: 0 0 0 0 rgba(46,125,50,0.6); }
      70% { box-shadow: 0 0 0 15px rgba(46,125,50,0); }
      100% { box-shadow: 0 0 0 0 rgba(46,125,50,0); }
    }

    /* Responsive */
    @media screen and (max-width: 992px) {
      .legacy-timeline {
        flex-direction: column;
        align-items: center;
      }
      .legacy-timeline::before {
        display: none;
      }
      .legacy-item {
        width: 100%;
        margin-bottom: 50px;
      }
      .legacy-dot {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        margin: 20px auto;
      }
    }section.awards {
      background: linear-gradient(135deg, #eaf7ef 0%, #fdfdfd 100%);
      padding: 100px 0;
      position: relative;
      overflow: hidden;
    }

    /* Decorative shapes */
    section.awards::before, section.awards::after {
      content: '';
      position: absolute;
      border-radius: 50%;
      background: rgba(25,135,84,0.08);
      z-index: 0;
    }
    section.awards::before {
      width: 400px; height: 400px;
      top: -100px; left: -150px;
    }
    section.awards::after {
      width: 300px; height: 300px;
      bottom: -100px; right: -100px;
    }

    .section-title {
      font-size: 2.8rem;
      font-weight: 700;
      margin-bottom: 70px;
      color: #063A0E;
      text-align: center;
      position: relative;
      z-index: 1;
      text-transform: uppercase;
      letter-spacing: 2px;
    }

    .section-title::after {
      content: '';
      width: 100px;
      height: 5px;
      background: linear-gradient(90deg, #198754, #28a745);
      display: block;
      margin: 18px auto 0;
      border-radius: 4px;
    }

    .card-custom {
      border: none;
      border-radius: 25px;
      background: rgba(255, 255, 255, 0.9);
      backdrop-filter: blur(12px);
      box-shadow: 0 8px 25px rgba(0,0,0,0.12);
      padding: 50px 25px;
      text-align: center;
      transition: all 0.5s ease;
      position: relative;
      overflow: hidden;
      z-index: 1;
    }

    .card-custom::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, rgba(25,135,84,0.15), transparent 70%);
      transform: scale(0);
      transition: transform 0.6s ease;
      z-index: 0;
    }

    .card-custom:hover::before {
      transform: scale(1);
    }

    .card-custom:hover {
      transform: translateY(-12px) scale(1.05);
      box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    }

    .icon-circle {
      width: 90px;
      height: 90px;
      border-radius: 50%;
      background: linear-gradient(135deg, #EEFDE9, #5aa540);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 25px;
      color: #fff;
      font-size: 2.2rem;
      box-shadow: 0 8px 20px rgba(0,0,0,0.25);
      transition: 0.5s ease;
      animation: floatIcon 3s ease-in-out infinite;
    }

    .card-custom:hover .icon-circle {
      transform: rotate(12deg) scale(1.2);
    }

    @keyframes floatIcon {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-8px); }
    }

    h5 {
      font-weight: 700;
      color: #063A0E;
      margin-bottom: 15px;
      font-size: 1.25rem;
      z-index: 1;
      position: relative;
    }

    p {
      color: #555;
      font-size: 1rem;
      z-index: 1;
      position: relative;
    }

    /* Scroll fade/slide animation */
    .fade-in {
      opacity: 0;
      transform: translateY(40px);
      transition: all 0.9s ease-out;
    }
    .fade-in.show {
      opacity: 1;
      transform: translateY(0);
    } .leadership-section {
      padding: 100px 0;
      background: linear-gradient(-45deg, #e8f5e9, #ffffff, #f1f8f6, #dff5e1);
      background-size: 400% 400%;
      animation: gradientBG 12s ease infinite;
      position: relative;
      overflow: hidden;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background: #f9fdf8;
    }

    @keyframes gradientBG {
      0% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
    }

    .leadership-section h2 {
      font-size: 3rem;
      font-weight: bold;
      text-align: center;
      margin-bottom: 70px;
      color: #063A0E;
      position: relative;
      z-index: 1;
    }

    .leadership-section h2::after {
      content: "";
      display: block;
      width: 120px;
      height: 5px;
      background: #28a745;
      margin: 20px auto 0;
      border-radius: 3px;
    }

    /* Glassmorphism Card */
    .leader-card {
      text-align: center;
      padding: 40px 25px;
      background: rgba(255, 255, 255, 0.7);
      border-radius: 25px;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
      backdrop-filter: blur(10px);
      transition: all 0.5s ease;
      position: relative;
      cursor: pointer;
      transform-style: preserve-3d;
    }

    .leader-card:hover {
      transform: translateY(-15px) scale(1.05) rotateX(5deg) rotateY(-5deg);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    }

    .leader-card img {
      width: 160px;
      height: 160px;
      object-fit: cover;
      border-radius: 50%;
      border: 6px solid rgba(40, 167, 69, 0.3);
      transition: all 0.4s ease;
      box-shadow: 0 0 20px rgba(40, 167, 69, 0.4);
    }

    .leader-card:hover img {
      transform: scale(1.08);
      border-color: #28a745;
      box-shadow: 0 0 30px rgba(40, 167, 69, 0.7);
    }

    .leader-card h5 {
      font-weight: bold;
      margin-top: 20px;
      color: #198754;
      font-size: 1.3rem;
    }

    .leader-role {
      display: inline-block;
      background: #d4edda;
      color: #155724;
      font-size: 0.85rem;
      padding: 6px 16px;
      border-radius: 50px;
      margin: 12px 0;
      font-weight: 500;
    }

    .leader-card p {
      font-size: 0.95rem;
      color: #444;
      margin-top: 8px;
    }

    /* Decorative line */
    .timeline-line {
      position: absolute;
      top: 0;
      left: 50%;
      width: 5px;
      height: 100%;
      background: #19875422;
      transform: translateX(-50%);
      z-index: 0;
    }

    /* Entrance Animation */
    .fade-up {
      opacity: 0;
      transform: translateY(50px);
      animation: fadeUp 1s ease forwards;
    }
    .fade-up:nth-child(1) { animation-delay: 0.3s; }
    .fade-up:nth-child(2) { animation-delay: 0.6s; }
    .fade-up:nth-child(3) { animation-delay: 0.9s; }
    .fade-up:nth-child(4) { animation-delay: 1.2s; }

    @keyframes fadeUp {
      to { opacity: 1; transform: translateY(0); }
    }

     .contact-card {
      border-radius: 15px;
      background: #fff;
      padding: 25px;
      transition: all 0.3s ease;
      border: 1px solid #e0f2e9;
      position: relative;
    }
    .contact-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 25px rgba(0,0,0,0.15);
      border-color: #28a745;
    }

    .contact-card h5 {
      color: #28a745;
      margin-bottom: 15px;
      font-weight: 600;
    }

    .contact-card p {
      margin-bottom: 8px;
      font-size: 0.95rem;
    }

    .contact-card strong {
      color: #155724;
    }


    /* Background subtle hover effect */
    .contact-card::after {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: 15px;
      background: linear-gradient(135deg, rgba(40,167,69,0.08), transparent);
      opacity: 0;
      transition: opacity 0.3s;
      z-index: 0;
    }
    .contact-card:hover::after {
      opacity: 1;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .contact-card {
        text-align: center;
      }
    }