:root{
  --green:#0f7a3d;
  --light:#2ea96a;
  --yellow:#f4d000;
  --dark:#1f2933;
}

*{box-sizing:border-box;margin:0;padding:0;font-family:'Inter',sans-serif;}
body{color:var(--dark);background:#f8faf9;}

/* NAVBAR */
.navbar{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,.9);
  backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(0,0,0,.05);
}

.nav-inner{
  max-width:1200px;
  margin:auto;
  padding:16px 24px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

/* LOGO */
.logo img{
  height:46px;
  width:auto;
  display:block;
}

/* DESKTOP LINKS */
.nav-links{
  display:flex;
  align-items:center;
}

.nav-link{
  margin-left:24px;
  text-decoration:none;
  font-weight:600;
  color:var(--dark);
  position:relative;
}

.nav-link.active::after{
  content:'';
  position:absolute;
  left:0;
  bottom:-8px;
  width:100%;
  height:3px;
  background:var(--green);
  border-radius:3px;
}

.nav-links .cta{
  margin-left:32px;
  background:var(--green);
  color:#fff;
  padding:10px 18px;
  border-radius:12px;
}

/* LANGUAGE SWITCH */
.lang-switch{
  display:flex;
  gap:6px;
  margin-left:16px;
}

.lang{
  border:1px solid #e5e7eb;
  background:#fff;
  padding:6px 10px;
  border-radius:10px;
  cursor:pointer;
  font-weight:600;
  display:flex;
  gap:6px;
  align-items:center;
}

.lang.active{
  background:var(--green);
  color:#fff;
  border-color:var(--green);
}

/* MOBILE */
.menu-toggle{
  display:none;
  font-size:28px;
  background:none;
  border:none;
  cursor:pointer;
}

.mobile-menu{
  display:none;
  flex-direction:column;
  background:#fff;
  padding:24px;
  border-top:1px solid #eee;
}

.mobile-menu a{
  padding:14px 0;
  text-decoration:none;
  font-weight:600;
  color:var(--dark);
  border-bottom:1px solid #eee;
}

.mobile-menu .cta{
  margin-top:16px;
  text-align:center;
}

.mobile-lang{
  margin-top:20px;
  display:flex;
  gap:10px;
}

/* MOBILE BREAKPOINT */
@media(max-width:768px){
  .nav-links,
  .lang-switch{
    display:none;
  }

  .menu-toggle{
    display:block;
  }

  .mobile-menu.show{
    display:flex;
  }
}


/* HERO */
/* HERO SLIDER */
.hero-slider{
  height:100vh;
  position:relative;
  overflow:hidden;
}

/* SLIDES */
.slides, .slide{
  position:absolute;
  inset:0;
}

.slide{
  background-size:cover;
  background-position:center;
  opacity:0;
  transition:opacity 1.2s ease;
}

.slide.active{opacity:1;}

/* SLIDE IMAGES */
.slide:nth-child(1){
  background-image:url('../slide1.jpeg');
}
.slide:nth-child(2){
  background-image:url('../slide2.jpeg');
}
.slide:nth-child(3){
  background-image:url('../slide3.jpg');
}

/* OVERLAY */
.hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    180deg,
    rgba(0,0,0,.55),
    rgba(15,122,61,.88)
  );
  z-index:1;
}

/* CONTENT */
.hero-content{
  position:relative;
  z-index:3;
  max-width:760px;
  padding:160px 24px;
  color:#fff;
}

.kicker{
  display:block;
  font-weight:800;
  letter-spacing:.45em;
  font-size:.85rem;
  margin-bottom:16px;
}

.hero-content h1{
  font-size:52px;
  line-height:1.15;
  margin-bottom:18px;
}

.hero-content p{
  font-size:1.1rem;
  max-width:520px;
  opacity:.95;
}

/* ACTIONS */
.hero-actions{
  margin-top:32px;
}

.btn{
  display:inline-block;
  padding:14px 22px;
  border-radius:14px;
  font-weight:600;
  text-decoration:none;
  margin-right:12px;
}

.primary{
  background:var(--green);
  color:#fff;
}

.outline{
  border:2px solid #fff;
  color:#fff;
}

/* INDICATORS */
.hero-indicators{
  position:absolute;
  bottom:32px;
  left:50%;
  transform:translateX(-50%);
  display:flex;
  gap:10px;
  z-index:5;
}

.dot{
  width:10px;
  height:10px;
  border-radius:50%;
  background:rgba(255,255,255,.5);
  cursor:pointer;
  transition:.3s ease;
}

.dot.active{
  background:#fff;
  transform:scale(1.2);
}

/* MOBILE OPTIMIZATION */
@media(max-width:768px){
  .hero-content{
    padding:140px 20px;
    text-align:center;
  }

  .hero-content h1{
    font-size:34px;
  }

  .hero-content p{
    font-size:1rem;
    margin:auto;
  }

  .hero-actions{
    display:flex;
    flex-direction:column;
    gap:12px;
    align-items:center;
  }

  .btn{
    margin-right:0;
    width:100%;
    max-width:260px;
    text-align:center;
  }
}

/* QUICK INFO */
/* WRAPPER */
.quick-info-wrap{
  position:relative;
  margin-top:-64px;
  padding:0 24px;
  z-index:10;
}

/* CONTAINER */
.quick-info{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  background:rgba(255,255,255,.92);
  backdrop-filter:blur(10px);
  border-radius:22px;
  box-shadow:0 25px 50px rgba(0,0,0,.12);
  overflow:hidden;
}

/* ITEM */
.info-item{
  display:flex;
  align-items:center;
  gap:16px;
  padding:28px 26px;
  transition:.4s ease;
  position:relative;
}

/* subtle divider */
.info-item:not(:last-child){
  border-right:1px solid rgba(0,0,0,.08);
}

/* ICON */
.info-icon{
  width:52px;
  height:52px;
  border-radius:16px;
  background:linear-gradient(135deg,var(--green),var(--light));
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:26px;
  flex-shrink:0;
  box-shadow:0 10px 20px rgba(15,122,61,.35);
}

.info-icon i {
  color: #fff; /* au color nyingine kama black: #000 */
}

/* TEXT */
.info-text strong{
  display:block;
  font-size:1rem;
  font-weight:700;
  color:var(--dark);
}

.info-text span{
  font-size:.85rem;
  opacity:.75;
}

/* HOVER */
.info-item:hover{
  background:rgba(46,169,106,.08);
  transform:translateY(-6px);
}

/* HIGHLIGHT ITEM (LIVE EVENTS) */
.info-item.highlight{
  background:linear-gradient(
    135deg,
    rgba(15,122,61,.12),
    rgba(46,169,106,.18)
  );
}

/* MOBILE */
@media(max-width:992px){
  .quick-info{
    grid-template-columns:repeat(2,1fr);
  }

  .info-item:nth-child(2){
    border-right:none;
  }
}

@media(max-width:576px){
  .quick-info{
    grid-template-columns:1fr;
  }

  .info-item{
    border-right:none !important;
    border-bottom:1px solid rgba(0,0,0,.08);
  }

  .info-item:last-child{
    border-bottom:none;
  }
}


/* SECTIONS */
.section{
  max-width:1200px;
  margin:auto;
  padding:80px 24px;
}
.section-head{
  display:flex;
  justify-content:space-between;
  margin-bottom:32px;
}

/* NEWS */
.section-head {
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:32px;
}

.section-head h2{
  font-size:2rem;
  font-weight:700;
}

.section-head .view-all{
  text-decoration:none;
  color:#22c55e;
  font-weight:600;
  transition:color 0.3s ease;
}

.section-head .view-all:hover{
  color:#16a34a;
}

/* News Grid */
.news-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:24px;
}

/* News Card */
.news-card{
  background:#fff;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(0,0,0,.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor:pointer;
}

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

.news-image{
  position:relative;
}

.news-card img{
  width:100%;
  height:180px;
  object-fit:cover;
  display:block;
}

.tag{
  position:absolute;
  top:12px;
  left:0;
  background:#22c55e;
  color:#fff;
  padding:6px 14px;
  border-radius:0 12px 12px 0;
  font-size:0.85rem;
  font-weight:600;
}

.news-card h3{
  padding:16px 16px 8px;
  font-size:1.1rem;
  font-weight:600;
  color:#111;
}

.news-card small{
  display:block;
  padding:0 16px 16px;
  font-size:0.85rem;
  opacity:0.7;
}

/* RESPONSIVE */
@media(max-width:576px){
  .section-head{
    flex-direction:column;
    gap:12px;
  }
  .section-head h2{
    font-size:1.6rem;
  }
  .news-card h3{
    font-size:1rem;
  }
}

/* ABOUT SECTION  */
.section.about {
  position: relative;
  padding: 80px 24px;
  background: linear-gradient(90deg, #16a34a, #08461f);
  color: #fff;
}

.about-wrapper {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

/* CARD STYLING */
.card {
  background: rgba(255,255,255,0.1);
  padding: 24px 20px;
  border-radius: 16px;
  backdrop-filter: blur(6px);
  transition: transform 0.3s ease, background 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.2);
}

.card h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.card p {
  font-size: 1rem;
  line-height: 1.6;
}

/* VALUES */
.values {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1 1 150px;
  background: rgba(255,255,255,0.2);
  padding: 12px 16px;
  border-radius: 12px;
  transition: transform 0.3s ease, background 0.3s ease;
}

.value-item:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.35);
}

.value-item svg {
  min-width: 32px;
  min-height: 32px;
  stroke: #fff;
}

/* RESPONSIVE */
@media(max-width: 992px) {
  .about-wrapper {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
  }
}

@media(max-width: 576px) {
  .card h3 {
    font-size: 1.3rem;
  }

  .card p {
    font-size: 0.95rem;
  }

  .value-item {
    flex: 1 1 100%;
  }
}

/* LEADERS */
.section.leadership {
  padding: 80px 24px;
  background-color: #f9f9f9; /* Plain light background */
  color: #111;
}

.section-header h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 40px;
  font-weight: 700;
}

.leaders {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.leader-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  overflow: hidden;
}

.leader-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.leader-card img {
  width: 100%;
  border-radius: 14px;
  margin-bottom: 16px;
  transition: transform 0.4s ease;
}

.leader-card:hover img {
  transform: scale(1.05);
}

.leader-card h4 {
  font-size: 1.2rem;
  margin-bottom: 6px;
  font-weight: 700;
}

.leader-card span {
  font-size: 0.95rem;
  opacity: 0.8;
}

/* RESPONSIVE */
@media(max-width: 992px) {
  .leaders {
    gap: 20px;
  }
}

@media(max-width: 576px) {
  .section-header h2 {
    font-size: 1.8rem;
  }

  .leader-card h4 {
    font-size: 1.1rem;
  }

  .leader-card span {
    font-size: 0.9rem;
  }
}

/* EVENTS */

.section.events {
  padding: 80px 24px;
  background-color: #f9f9f9;
  color: #111;
}

.section-header h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 40px;
  font-weight: 700;
}

/* Featured Event */
.featured-event {
  background: #22c55e;
  color: #fff;
  border-radius: 16px;
  padding: 30px 24px;
  max-width: 800px;
  margin: auto;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-event:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.featured-event h3 {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.featured-event p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

/* Buttons */
.event-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  padding: 10px 20px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.3s ease;
}

.btn.primary {
  background-color: #fff;
  color: #22c55e;
}

.btn.primary:hover {
  background-color: #e0e0e0;
  transform: translateY(-2px);
}

.btn.secondary {
  background-color: rgba(255,255,255,0.2);
  color: #fff;
}

.btn.secondary:hover {
  background-color: rgba(255,255,255,0.35);
  transform: translateY(-2px);
}

/* Event Slider */
.event-slider {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  margin-top: 40px;
  padding-bottom: 10px;
}

.event-slider::-webkit-scrollbar {
  height: 8px;
}

.event-slider::-webkit-scrollbar-thumb {
  background-color: rgba(0,0,0,0.2);
  border-radius: 8px;
}

.event-card {
  min-width: 240px;
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  flex-shrink: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

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

/* Responsive */
@media(max-width:992px){
  .featured-event {
    padding: 24px 20px;
  }
  .featured-event h3 {
    font-size: 1.5rem;
  }
}

@media(max-width:576px){
  .section-header h2 {
    font-size: 1.8rem;
  }
  .featured-event h3 {
    font-size: 1.3rem;
  }
  .event-card {
    min-width: 200px;
  }
}

/* CTA */ 
.cta-section{ 
  background: linear-gradient(90deg, #16a34a, #22c55e);
  color:#fff; 
  text-align:center; 
  padding:80px 24px; 
  border-radius: 20px;
  margin: 40px auto;
}

.cta-section h2{
  font-size:2.2rem;
  margin-bottom: 32px;
  font-weight:700;
}

/* BUTTONS */
.cta-actions{
  display:flex;
  flex-wrap:wrap;
  gap:16px;
  justify-content:center;
}

.cta-actions .btn{
  padding: 14px 28px;
  font-weight:600;
  border-radius:12px;
  text-decoration:none;
  transition: all 0.3s ease;
  cursor:pointer;
}

.cta-actions .btn.primary{
  background:#fff;
  color:#22c55e;
}

.cta-actions .btn.primary:hover{
  background:#e0e0e0;
  transform: translateY(-3px);
}

.cta-actions .btn.secondary{
  background: rgba(255,255,255,0.25);
  color:#fff;
}

.cta-actions .btn.secondary:hover{
  background: rgba(255,255,255,0.45);
  transform: translateY(-3px);
}

.cta-actions .btn.outline{
  background: transparent;
  color:#fff;
  border: 2px solid #fff;
}

.cta-actions .btn.outline:hover{
  background:#fff;
  color:#22c55e;
  transform: translateY(-3px);
}

/* RESPONSIVE */
@media(max-width:576px){
  .cta-section h2{
    font-size:1.8rem;
  }
  .cta-actions{
    flex-direction:column;
  }
  .cta-actions .btn{
    width:100%;
    max-width:300px;
    margin:auto;
  }
}

/* FOOTER */
footer{
  background:#0c5f30;
  color:#fff;
  font-family: sans-serif;
  line-height:1.6;
}

.footer-grid{
  max-width:1200px;
  margin:auto;
  padding:60px 24px;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:40px;
}

.footer-col h4{
  font-size:1.2rem;
  margin-bottom:16px;
  font-weight:700;
}

.footer-col p{
  font-size:0.95rem;
  opacity:0.85;
}

.footer-col a{
  color:#fff;
  text-decoration:none;
  transition: color 0.3s ease;
}

.footer-col a:hover{
  color:#22c55e;
}

.footer-bottom{
  text-align:center;
  padding:18px;
  background:#094b26;
  font-size:0.9rem;
  opacity:0.8;
}

/* RESPONSIVE */
@media(max-width:576px){
  .footer-grid{
    gap:24px;
    padding:40px 16px;
  }
}

/* MOBILE */
@media(max-width:768px){
  .hero h1{font-size:34px;}
  .about{grid-template-columns:1fr;}
}