    body {
        font-family: 'Plus Jakarta Sans', sans-serif;
        background-color: #f8fafc;
    }

    .hero-gradient {
        background: linear-gradient(135deg, #006747 0%, #004d35 100%);
    }

    .glass-panel {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .slides-track {
        display: flex;
        transition: transform 0.45s cubic-bezier(.4, 0, .2, 1);
    }

    .slide {
        min-width: 100%;
    }

    .award-card {
        transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

    .award-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.10);
    }

    .dot {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        border: none;
        cursor: pointer;
        background: #d1d5db;
        padding: 0;
        transition: background 0.2s, transform 0.2s;
    }

    .dot.active {
        background: #4a7a4a;
        transform: scale(1.3);
    }


    /* Thumbnail container */
    .card-wrap {
        position: relative;
        overflow: hidden;
        border-radius: 12px;
        background: #fff;
        box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        cursor: pointer;
    }

    .card-wrap:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.13);
    }

    .thumb {
        position: relative;
        width: 100%;
        padding-top: 58%;
        overflow: hidden;
        background: #1a1a1a;
    }

    .thumb iframe {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        border: none;
        pointer-events: none;
    }

    .thumb-overlay {
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(0, 0, 0, 0.28);
        transition: background 0.3s;
        z-index: 2;
    }

    .card-wrap:hover .thumb-overlay {
        background: rgba(0, 0, 0, 0.1);
    }

    .play-btn {
        width: 52px;
        height: 52px;
        background: rgba(255, 255, 255, 0.92);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: transform 0.2s, background 0.2s;
    }

    .play-btn svg {
        margin-left: 4px;
    }

    .card-wrap:hover .play-btn {
        transform: scale(1.12);
        background: #fff;
    }

    /* Badge */
    .badge {
        position: absolute;
        bottom: 12px;
        left: 12px;
        z-index: 3;
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 0.12em;
        padding: 4px 10px;
        border-radius: 4px;
        background: #1a3d2b;
        color: #fff;
        text-transform: uppercase;
    }

    /* Underline accent */
    .title-underline {
        display: inline-block;
        border-bottom: 3px solid #b8860b;
        padding-bottom: 4px;
    }

    /* Scrollbar hidden */
    .no-scrollbar::-webkit-scrollbar {
        display: none;
    }

    .no-scrollbar {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    /* Nav buttons */
    .nav-btn {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        border: 1.5px solid #d1d1c7;
        background: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: background 0.2s, border-color 0.2s;
    }

    .nav-btn:hover {
        background: #1a3d2b;
        border-color: #1a3d2b;
        color: #fff;
    }

    .nav-btn:hover svg {
        stroke: #fff;
    }




.hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  /* padding: 80px 0; */
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--default-color);
}

.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 50%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero h2 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
}

.hero h2 span {
  color: var(--accent-color);
}

.hero p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 10px 0 0 0;
  font-size: 24px;
}

.hero .cta-btn {
  color: var(--default-color);
  border: 2px solid var(--accent-color);
  font-weight: 400;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 30px;
  border-radius: 50px;
  transition: 0.3s;
  flex-shrink: 0;
}

.hero .cta-btn:first-child {
  margin-right: 10px;
}

.hero .cta-btn:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

@media (max-width: 480px) {
  .hero .cta-btn {
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 32px;
  }

  .hero p {
    font-size: 18px;
  }
}


 .card-hover {
            transition: all 0.3s ease;
        }
        .card-hover:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 25px -12px rgba(0, 0, 0, 0.2);
        }
        .btn-hover {
            transition: all 0.3s ease;
        }
        .btn-hover:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        .coming-soon-badge {
            position: absolute;
            top: -10px;
            right: 20px;
            z-index: 30;
        }

    .media-section {
      background-color: #0f4a2e;
      background-image: radial-gradient(ellipse at 80% 50%, #1a6b45 0%, #0a3320 60%);
    }
    .feature-icon-wrap {
      width: 40px;
      height: 40px;
      background: rgba(200, 168, 75, 0.15);
      border: 1px solid rgba(200, 168, 75, 0.3);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .contact-btn {
      transition: background 0.2s ease, transform 0.15s ease;
    }
    .contact-btn:hover {
      background: #b8942e;
      transform: translateY(-1px);
    }
    .image-card {
      position: relative;
      border-radius: 20px;
      overflow: hidden;
    }
    .stat-badge {
      position: absolute;
      bottom: -1px;
      right: -1px;
      background: #c8a84b;
      border-radius: 16px 0 20px 0;
      padding: 18px 24px;
    }
    .title-underline::after {
      content: '';
      display: block;
      width: 48px;
      height: 3px;
      background: #c8a84b;
      border-radius: 2px;
      margin-top: 8px;
    }
    .card {
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    .card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 32px rgba(26, 107, 69, 0.12);
    }
    .store-btn {
      transition: background 0.15s ease, transform 0.15s ease;
    }
    .store-btn:hover {
      background: #2a2a3e;
      transform: scale(1.02);
    }

    /* Feature Image Styling */
    .feature-image {
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      width: 100%;
      min-height: 400px;
      z-index: 10;
    }

    .feature-image img {
      display: block;
      max-width: 100%;
      height: auto;
      z-index: 20;
      position: relative;
    }

    .feature-image > div {
      z-index: 1;
    }
        

/*** Footer ***/


.footer-shape::before {
	position: absolute;
	content: '';
	width: 80px;
	height: 100%;
	top: 0;
	left: -40px;
	background: var(--secondary);
	transform: skew(40deg);
}

.footer .btn.btn-link {
	display: block;
	margin-bottom: 5px;
	padding: 0;
	text-align: left;
	color: rgba(255, 255, 255, 0.5);
	font-weight: normal;
	text-transform: capitalize;
	transition: 0.3s;
}

.footer .btn.btn-link::before {
	position: relative;
	content: '\f105';
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	color: rgba(255, 255, 255, 0.5);
	margin-right: 10px;
}

.footer .btn.btn-link:hover {
	color: var(--primary);
	letter-spacing: 1px;
	box-shadow: none;
}

 .marquee-track {
    will-change: transform;
}
.marquee-wrapper::before,
.marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}
.marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #f9fafb, transparent);
}
.marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #f9fafb, transparent);
}
img {
    -webkit-user-drag: none;
    user-select: none;
}

            .testimonial-card {
      transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.2s ease;
    }
    .testimonial-card:hover {
      background: #1a6b45 !important;
      transform: translateY(-4px);
      box-shadow: 0 16px 40px rgba(26, 107, 69, 0.2);
    }
    .testimonial-card:hover .card-text { color: #fff; }
    .testimonial-card:hover .card-quote { color: rgba(255,255,255,0.15); }
    .testimonial-card:hover .card-name { color: #fff; }
    .testimonial-card:hover .card-role { color: rgba(187, 247, 208, 0.7); }
    .testimonial-card:hover .card-avatar { background: rgba(255,255,255,0.2); color: #fff; }


        .program-card:not(.program-live):hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    }
    .program-live {
      box-shadow: 0 8px 32px rgba(26, 107, 69, 0.15);
    }

        .program-card {
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }


     /* Custom styles */
        .hero-slide-item {
            transition: opacity 0.8s ease-in-out;
        }
        
        .hero-dot-indicator {
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .hero-dot-indicator:hover {
            transform: scale(1.3);
            background-color: white !important;
        }
        
        #prevSlide, #nextSlide {
            transition: all 0.3s ease;
        }
        
        #prevSlide:hover, #nextSlide:hover {
            background-color: rgba(0, 0, 0, 0.8);
            transform: scale(1.1);
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* .animate-fadeInUp {
            animation: fadeInUp 0.8s ease-out forwards;
        } */
        
        /* @keyframes float {
            0%, 100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-20px);
            }
        } */
        
        /* .feature-image {
            animation: float 4s ease-in-out infinite;
        } */
        
        /* Pulse animation for decorative elements */
        @keyframes pulse {
            0%, 100% {
                opacity: 0.3;
            }
            50% {
                opacity: 0.6;
            }
        }