:root {
  --primary-900: #004E28;
  --primary-800: #0a5b48;
  --primary-700: #0d6f57;
  --accent: #2aa26f;
  --bg-light: #f4f8f6;
  --text-dark: #162421;
  --text-muted: #5c6d68;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  color: var(--text-dark);
  background: #fff;
  line-height: 1.5;
}

/* Headings use Raleway */
h1,
h2,
h3,
h4,
h5,
h6,
.brand strong,
.brand small,
.btn,
.stat-item strong,
.impact-item strong,
.news-content a,
.footer h4 {
  font-family: "Raleway", sans-serif;
}

img {
  display: block;
  width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: min(1440px, 100%);
  margin: 0 auto;
}

.center {
  text-align: center;
}


/* Navigation */
.navbar {
  position: relative;
  top: 0;
  z-index: 1000;
  background: #FFFFFF0D;
  border: none;
  border-bottom: solid 1px #FFFFFF1A;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
  margin-bottom: -77px;
}

.nav-container {
  width: min(1440px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 75px;
  padding: 0px;
}

/* .nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
} */

.nav-logo img {
  width: 60%;
}


.nav-menu {
  font-family: "Poppins", sans-serif;
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.navbar.scrolled {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.95);
  margin-bottom: 0;
}

/* Desktop borders between menu items */
.nav-menu>li {
  font-family: "Poppins", sans-serif;
  position: relative;
}

.nav-menu>li::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
}

.nav-menu>li>a {
  font-family: 'Poppins', sans-serif;
  display: block;
  padding: 0 30px;
  line-height: 100%;
  color: var(--white);
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  transition: color 0.2s;
}

.nav-menu>li>a:hover,
.nav-menu>li.act>a {
  color: var(--accent);

}

.has-drop {
  position: relative;
}

.has-drop>a::after {
  content: " ▾";
  font-size: 0.65rem;
  transition: transform 0.2s;
  /* float/margin lines hatao agar hain */
}

.drop-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 180px;
  border-top: 2px solid var(--accent);
  border-radius: 0 0 8px 8px;
  z-index: 200;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.has-drop:hover .drop-menu {
  display: block;
}

.drop-menu a {
  display: block;
  padding: 12px 20px;
  color: #066235;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.drop-menu a:last-child {
  border-bottom: none;
}

.drop-menu a:hover {
  background: var(--primary-800);
  color: var(--white);
  padding-left: 24px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: 0.3s ease;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .nav-container {
    padding: 0 20px;
  }

  .hamburger {
    display: flex;
    z-index: 1001;
  }

  .nav-menu {
    position: fixed;
    top: 62px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 62px);
    background: var(--primary-900);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    transition: 0.3s ease;
    overflow-y: auto;
    z-index: 999;
    padding: 0;
  }

  .nav-menu.open {
    left: 0;
  }

  /* Remove borders on mobile */
  .nav-menu>li:not(:last-child)::after {
    display: none;
  }

  .nav-menu>li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-menu>li:last-child {
    border-bottom: none;
  }

  .nav-menu>li>a {
    line-height: 52px;
    padding: 0 24px;
    font-size: 0.9rem;
    width: 100%;
  }

  /* Dropdown on mobile */
  .has-drop .drop-menu {
    position: static;
    display: none;
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    border-top: none;
    border-left: 3px solid var(--accent);
    margin: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .has-drop.open .drop-menu {
    display: block;
  }

  .has-drop>a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-right: 24px;
  }

  .has-drop>a::after {
    content: "▾";
    font-size: 0.75rem;
    margin-top: 0;
    /* remove the old margin-top: 20px */
    float: none;
    /* remove float */
    margin-right: 0;
    /* remove old margin-right */
    transition: transform 0.25s;
    flex-shrink: 0;
  }

  .has-drop.open>a::after {
    transform: rotate(180deg);
  }

  .drop-menu a {
    padding: 12px 24px 12px 40px;
    white-space: normal;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .drop-menu a:last-child {
    border-bottom: none;
  }

  .drop-menu a:hover {
    padding-left: 44px;
  }

  /* Hamburger animation when open */
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
}

/* Tablet Styles */
@media (min-width: 769px) and (max-width: 1024px) {
  .nav-container {
    padding: 0 20px;
  }

  .nav-menu>li>a {
    padding: 0 15px;
    font-size: 0.72rem;
  }
}



/* Hero section */
.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: 1s ease;
}

.slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 5;
  width: 90%;
  max-width: 1100px;
}

.content h1 {
  color: #fff;
  font-size: 72px;
  line-height: 1.1;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 15px;
  animation: fadeUp 4s ease forwards;
  
}



.content h2 {
  color: #B2FFDA;
  font-size: 72px;
  line-height: 1.1;
  font-weight: 800;
  text-transform: uppercase;
  margin-top: -10px;
  margin-bottom: 50px;
  
}


.hero-btn {
  display: inline-block;
  background: #fff;
  color: #066235;
  text-decoration: none;
  padding: 22px 45px;
  border-radius: 8px;
  font-size: 20px;
  font-weight: 600;
  transition: 0.3s ease;
  
}



.hero-btn:hover {
  transform: translateY(-3px);
}

/* bottom progress */
.progress-wrapper {
  position: absolute;
  bottom: 45px;
  left: 50%;
  transform: translateX(-50%);
  width: 48%;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 10;
}

.progress-line {
  flex: 1;
  height: 4px;
  background: rgba(255, 255, 255, 0.35);
  border-radius: 50px;
  overflow: hidden;
  position: relative;
}

.progress-line.active::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  animation: fillBar 5s linear forwards;
}

@keyframes fillBar {
  from {
    width: 0%;
  }

  to {
    width: 100%;
  }
}



.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  border: 0;
  padding: 11px 18px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: 0.2s ease;
}

.btn-light {
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 500;
  padding: 10px 30px;
  border-radius: 5px;
  background: var(--white);
  letter-spacing: 0;
  color: #066235;
  margin-top: -30px;

}

.btn-light:hover {
  background: #fff;
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--primary-700);
  color: #fff;
}

.btn-primary:hover {
  background: var(--primary-800);
}

.btn-outline {
  border: 1px solid var(--primary-700);
  color: var(--primary-700);
  background: #fff;
}

.btn-outline:hover {
  background: var(--bg-light);
}



/* cards */

.section {
  padding: 100px 0 50px 0;
}

.intro h2 {
  font-size: 50px;
  font-weight: 700;
  line-height: 71px;
  color: #343434;
  letter-spacing: 0;
  text-transform: uppercase;
  text-align: center;
  margin: 0;
 
}


.intro h2 span {
  font-size: 50px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  text-align: center;
  color: #066235;
}

.intro p {
  width: 100%;
  color: #494949;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 20px;

}

/* .intro h2,
.stats h2,
.impact h2,
.news h2 {
  margin: 0;
  font-size: clamp(1.3rem, 3vw, 2rem);
  line-height: 1.2;
}

.intro h2 span {
  color: var(--primary-700);
} */

/* .intro p,
.stats p,
.impact p,
.news p {
  color: var(--text-muted);
} */

.cards-section {
  padding: 15px 0 100px 0;
}

.card-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.title1 {
  /* position: absolute; */
  width: 100%;
  height: 350px;
  border-radius: 5px;
  background-image: url(images/card1.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.title-1 {
  background: linear-gradient(180deg, #161616 00%, #FFFFFF00 100%);
  height: 100px;
  border-radius: 5px;
}

.title2 {
  /* position: absolute; */
  width: 100%;
  height: 350px;
  border-radius: 5px;
  background-image: url(images/card2.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.title-2 {
  background: linear-gradient(180deg, #161616 00%, #FFFFFF00 100%);
  height: 100px;
  border-radius: 5px;
}

.title3 {
  /* position: absolute; */
  width: 100%;
  height: 350px;
  border-radius: 5px;
  background-image: url(images/card3.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.title-3 {
  background: linear-gradient(180deg, #161616 00%, #FFFFFF00 100%);
  height: 100px;
  border-radius: 5px;
}

.title1 h3,
.title2 h3,
.title3 h3 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  margin: 0;
  color: #FFFFFF;
  font-size: 28px;
  text-shadow: 0 3.3px 12.98px rgba(0, 0, 0, 0.30);
  position: relative;
  left: 20px;
  top: 20px;
}

.feature-card {
  background: #fff;
  border: 1px solid #00000040;
  border-radius: 10px;
  padding: 15px;
  z-index: 0;
  /* box-shadow: 0 8px 24px rgba(3, 34, 27, 0.08); */
}

.feature-card img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 5px;
  height: 350px;
  width: 100%;

}

.card-body {
  padding: 0 0 10px 0;
}



.card-body p {
  color: #161616;
  font-size: 24px;
  font-weight: 400;

}

.card-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn-primary1 {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #026CB5;
  border: 1px solid #026CB5;
  border-radius: 5px;
  background-color: var(--white);
  width: 48%;
}

.btn-outline1 {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid #026CB5;
  border-radius: 5px;
  background-color: #026CB5;
  color: var(--white);
  width: 48%;
}

.btn-primary2 {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 400;
  border: 1px solid #A8204E;
  color: #A8204E;
  border-radius: 5px;
  background-color: var(--white);
  width: 48%;
}

.btn-outline2 {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid #A8204E;
  border-radius: 5px;
  background-color: #A8204E;
  color: var(--white);
  width: 48%;
}

.btn-primary3 {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #96227D;
  border: 1px solid #96227D;
  border-radius: 5px;
  background-color: var(--white);
  width: 48%;
}

.btn-outline3 {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid #96227D;
  border-radius: 5px;
  background-color: #96227D;
  color: var(--white);
  width: 48%;
}



/* <!-- counter number --> */
.stats {
  background-color: #F4F4F4;
  padding-bottom: 120px;
}

.stats h2 {
  font-size: 50px;
  font-weight: 700;
  line-height: 71px;
  color: #343434;
  letter-spacing: 0;
  text-transform: uppercase;
  text-align: center;
  margin: 0;
  
}

.stats p {
  width: 100%;
  color: #494949;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 20px;
}

.stats-grid {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
}

.stat-item {
  background: #fff;
  border: 1px solid #dfebe5;
  padding: 25px;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.stat-item img {
  width: 84px;
  height: 86px;
}

.stat-item strong {
  font-family: "Poppins", sans-serif;
  display: block;
  font-size: 40px;
  font-weight: 700;
  color: #343434;
  letter-spacing: 0;
}

.stat-item span {
  color: #066235;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0;
  margin-top: -25px;
}


/* SKILLS PROGRAMME IMPACT */
.impact {
  color: #fff;
  background-image: url(images/bg4.png);
  padding: 160px 0 180px 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}



.impact-grid {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px;
}

.impact-item {
  padding: 30px 18px;
  text-align: center;
  border-radius: 5px;
  border: 1px solid #FFFFFF2E;
  background: #FFFFFF1A;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;

}

.impact-head h2 {
  font-size: 70px;
  font-weight: 700;
  line-height: 78px;
  color: var(--white);
  letter-spacing: 0;
  text-transform: uppercase;
  text-align: center;
  margin: 0;
 
}



.impact-head p {
  width: 100%;
  color: var(--white);
  font-size: 26px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 20px;
}

/* .impact-item:last-child {
  border-right: 0;
} */

.impact-item strong {
  font-family: "Poppins", sans-serif;
  display: block;
  font-size: 45px;
  font-weight: 600;
  color: #FFFFFF;
  letter-spacing: 0;
}

.impact-item img{
width: 40%;
margin-bottom: -10px;
}

.impact-item span {
  color: #ffffff;
  font-size: 25px;
  font-weight: 500;
  letter-spacing: 0;
  margin-top: -25px;
}


/* News */

.news {
  background: #fff;
  padding: 120px 0 150px 0;
}

.news-grid {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 41px;
}

.news-card {
  background: #fff;
  /* border: 1px solid #00000040; */
  /* border-radius: 10px; */
  padding: 15px;
  z-index: 0;
  box-shadow: 0 6px 20px #0000001A;
}

.news-card img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.title5 {
  height: 300px;
  background-image: url(images/pic1.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.title5 span {
  position: relative;
  left: 10px;
  top: 10px;
  padding: 14px;
  border-radius: 6px;
}

.title6 {
  height: 300px;
  background-image: url(images/pic2.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.title6 span {
  position: relative;
  left: 10px;
  top: 10px;
  padding: 14px;
  border-radius: 6px;
}

.title7 {
  height: 300px;
  background-image: url(images/pic3.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.title7 span {
  position: relative;
  left: 10px;
  top: 10px;
  padding: 14px;
  border-radius: 6px;
}

.news-content {
  padding: 14px 0;
}

.news h2 {
  font-size: 60px;
  font-weight: 700;
  line-height: 71px;
  color: #343434;
  letter-spacing: 0;
  text-transform: uppercase;
  text-align: center;
  margin: 0;
  
}



.news p {
  width: 100%;
  color: #161616;
  font-size: 26px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 20px;
}

.date {
  display: inline-block;
  background: #fff;
  color: #161616;
  padding: 4px 9px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;

}

.news-content h3 {
  font-family: "Poppins", sans-serif;
  margin: 10px 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;

}

.news-content a {
  font-family: "Poppins", sans-serif;
  color: #066235;
  font-weight: 400;
  font-size: 16px;
  text-transform: capitalize;
}

.view-all {
  font-family: "Poppins", sans-serif;
  width: 10%;
  background-color: #0A321F;
  color: #fff;
  margin-top: 50px;
  border-radius: 5px;
  padding: 15px 9px;
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
 
}


/* footer */
.footer {
  background: #066235BD;
  color: #d5e4de;
  padding-top: 80px;
  position: relative;        /* ← add */
  overflow: hidden;          /* ← add */
}

/* Video background */
.footer-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;             /* ← kam karo zyada dark chahiye to */
  pointer-events: none;
  z-index: 0;
}
.footer-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.78) 30%,
    rgba(0, 140, 53, 0.74) 100%
  );
  /* backdrop-filter: blur(10.8px);
  -webkit-backdrop-filter: blur(10.8px); */
  z-index: 0;
}

/* Content upar rahay video ke */
.footer-grid,
.footer .copyright {
  position: relative;
  z-index: 1;
}

.footer-brand img {
  width: 25%;
}

.logos {
  width: 60%;
  display: flex;
  gap: 10px;
  margin: 20px 0 30px 0;
}

.logos img {
  width: 10%;
}

.footer-grid {
  display: grid;
  grid-template-columns: 5fr 1fr 1fr;
  gap: 24px;
}

.footer h4 {
  font-family: "Poppins", sans-serif;
  margin: 0 0 10px;
  color: #fff;
  font-size: 28px;
  font-weight: 500;

}

.footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer li {
  margin-bottom: 7px;
  font-size: 16px;
  color: #fff;
  font-weight: 400;
}

.footer p {
  width: 40%;
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 400;
  margin-top: 20px;
}

.footer .copyright {
  width: 100%;
  margin: 32px 0 0;
  padding: 14px;
  color: var(--white);
  text-align: center;
  background-color: #0A321F;
  border: 1px solid #E7E7E799;
  font-size: 16px;
  font-weight: 500;
  padding-bottom: 20px;
}

@media (max-width: 980px) {

  .card-grid,
  .stats-grid,
  .impact-grid,
  .news-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nav-links {
    display: none;
  }
}

@media (max-width: 767px) {
  .hero {
    min-height: 560px;
  }
  .hero-slider {
    position: relative;
    width: 100%;
    height: 90vh;
    overflow: hidden;
}

  .slide {
    min-height: 560px;
  }

  .hero-content-wrapper {
    margin-top: -30px;
    padding: 70px 0;
  }

  .hero h1 {
    width: 100%;
    font-size: 28px;

  }

  .eco {
    width: 100%;
    font-size: 38px;
    line-height: 1.2rem;
  }

  .hero p {
    width: 100%;
    font-size: 16px;
    line-height: 1.4rem;
    margin-bottom: 20px;
  }

  .hero-content img {
    display: none;
  }

  .card-grid,
  .stats-grid,
  .impact-grid,
  .news-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .slider-btn {
    width: 36px;
    height: 36px;
  }
}





/* animation */
/* ========== ANIMATIONS ========== */

/* Fade Up Animation - for headings and text */
@keyframes fadeUpSlow {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Slide from Left Animation */
@keyframes slideFromLeft {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Slide from Right Animation */
@keyframes slideFromRight {
  from {
    opacity: 0;
    transform: translateX(60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Fade Up for Cards - Y:200px */
@keyframes fadeUpCard {
  from {
    opacity: 0;
    transform: translateY(200px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Animation Classes */
.ani1 {
  animation: slideFromLeft 0.8s ease forwards;
  opacity: 0;
}

.ani2 {
  animation: fadeUpCard 0.8s ease forwards;
  opacity: 0;
}

.ani3 {
  animation: slideFromRight 0.8s ease forwards;
  opacity: 0;
}

/* Hover Effect for Cards - Scale 1.05 */
.feature-card:hover,
.stat-item:hover,
.impact-item:hover,
.news-card:hover {
  transform: scale(1.05);
  transition: transform 0.3s ease;
  cursor: pointer;
}

/* Default opacity for animated elements (hidden until scroll) */
.intro h2,
.stats h2,
.impact-head h2,
.news h2,
.intro p,
.stats p,
.impact-head p,
.news p,
.view-all,
.feature-card,
.stat-item,
.impact-item,
.news-card {
  opacity: 0;
}

/* Hero section animations - visible on load */
.content h1 {
  color: #fff;
  font-size: 72px;
  line-height: 1.1;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 15px;
  animation: fadeUpSlow 1.2s ease forwards;
  opacity: 0;
}

.content h2 {
  color: #B2FFDA;
  font-size: 72px;
  line-height: 1.1;
  font-weight: 800;
  text-transform: uppercase;
  margin-top: -10px;
  margin-bottom: 50px;
  animation: fadeUpSlow 1.2s ease forwards 0.3s;
  opacity: 0;
}

.hero-btn {
  display: inline-block;
  background: #fff;
  color: #066235;
  text-decoration: none;
  padding: 22px 45px;
  border-radius: 8px;
  font-size: 20px;
  font-weight: 600;
  transition: 0.3s ease;
  animation: fadeUpSlow 1.2s ease forwards 0.6s;
  opacity: 0;
}

/* Headings - Force show on scroll */
.intro h2, .stats h2, .impact-head h2, .news h2 {
  font-size: 50px;
  font-weight: 700;
  line-height: 71px;
  letter-spacing: 0;
  text-transform: uppercase;
  text-align: center;
  margin: 0;
}

.intro h2 span {
  font-size: 50px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  text-align: center;
  color: #066235;
}

/* Stats heading color */
.stats h2 {
  color: #343434;
}

.impact-head h2 {
  color: var(--white);
}

.news h2 {
  color: #343434;
}

/* Paragraphs */
.intro p, .stats p, .impact-head p, .news p {
  width: 100%;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 20px;
}

.intro p, .stats p, .news p {
  color: #494949;
}

.impact-head p {
  color: var(--white);
}




/* Hover Effect for Cards - Move upward */
.feature-card:hover,
.stat-item:hover,
.impact-item:hover,
.news-card:hover {
  transform: translateY(-8px);
  transition: transform 0.3s ease;
  cursor: pointer;
}

/* If you also want scale with upward movement */
.feature-card:hover,
.stat-item:hover,
.impact-item:hover,
.news-card:hover {
  transform: translateY(-10px);
  transition: transform 0.3s ease;
  cursor: pointer;
}

/* Add shadow effect for better lifting feel */
.feature-card,
.stat-item,
.impact-item,
.news-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover,
.stat-item:hover,
.impact-item:hover,
.news-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  cursor: pointer;
}


/* responsiv */

@media(max-width:992px) {

  .content h1,
  .content h2 {
    font-size: 48px;
  }

  .hero-btn {
    padding: 12px 20px;
    font-size: 18px;
  }

  .progress-wrapper {
    width: 75%;
  }
}

@media(max-width:576px) {

  .content h1,
  .content h2 {
    font-size: 32px;
  }

  .hero-btn {
    padding: 12px 20px;
    font-size: 16px;
  }

  .progress-wrapper {
    width: 85%;
    bottom: 30px;
  }
}


/* Tablet Responsive (768px to 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
  .section {
    padding: 80px 0 30px 0;
  }

  .intro h2 {
    font-size: 40px;
    line-height: 50px;
  }

  .intro h2 span {
    font-size: 40px;
  }

  .intro p {
    font-size: 20px;
    line-height: 28px;
    padding: 0 20px;
  }

  .cards-section {
    padding: 15px 0 60px 0;
  }

  .card-grid {
    gap: 20px;
    padding: 0 20px;
  }

  .title1 h3,
  .title2 h3,
  .title3 h3 {
    font-size: 22px;
    left: 15px;
    top: 15px;
  }

  .card-body p {
    font-size: 18px;
  }

  .btn-primary1,
  .btn-outline1,
  .btn-primary2,
  .btn-outline2,
  .btn-primary3,
  .btn-outline3 {
    font-size: 12px;
    width: 48%;
  }

  /* Stats Section Tablet */
  .stats {
    padding-bottom: 60px;
  }

  .stats h2 {
    font-size: 40px;
    line-height: 50px;
  }

  .stats p {
    font-size: 20px;
    line-height: 28px;
    padding: 0 20px;
  }

  .stats-grid {
    margin-top: 40px;
    gap: 20px;
    padding: 0 20px;
  }

  .stat-item {
    padding: 20px;
  }

  .stat-item img {
    width: 100px;
    height: 100px;
  }

  .stat-item strong {
    font-size: 28px;
  }

  .stat-item span {
    font-size: 18px;
    margin-top: -15px;
  }

  /* Impact Section Tablet */
  .impact {
    padding: 80px 0 100px 0;
  }

  .impact-head h2 {
    font-size: 45px;
    line-height: 55px;
  }

  .impact-head p {
    font-size: 20px;
    line-height: 28px;
    padding: 0 20px;
  }

  .impact-grid {
    margin-top: 40px;
    gap: 20px;
    padding: 0 20px;
  }

  .impact-item {
    padding: 25px;
  }

  .impact-item strong {
    font-size: 40px;
  }

  .impact-item span {
    font-size: 22px;
    margin-top: -20px;
  }

  /* News Section Tablet */
  .news {
    padding: 60px 40px;
  }

  .news h2 {
    font-size: 40px;
    line-height: 50px;
  }

  .news p {
    font-size: 20px;
    line-height: 28px;
  }

  .news-grid {
    margin-top: 40px;
    gap: 25px;
  }

  .news-content h3 {
    font-size: 16px;
  }

  .date {
    font-size: 14px;
  }

  .view-all {
    width: 20%;
    padding: 12px 9px;
    font-size: 14px;
  }

  /* Footer Tablet */
  .footer {
    padding-top: 50px;
  }

  .footer-brand img {
    width: 35%;
  }

  .logos {
    width: 80%;
  }

  .footer-grid {
    gap: 20px;
    padding: 0 20px;
  }

  .footer h4 {
    font-size: 22px;
  }

  .footer p {
    width: 80%;
    font-size: 16px;
  }

  .footer li {
    font-size: 14px;
  }
}

/* Mobile Responsive (up to 767px) */
@media (max-width: 767px) {
    
    .hero-slider {
    position: relative;
    width: 100%;
    height: 90vh;
    overflow: hidden;
}
  .section {
    padding: 60px 0 20px 0;
  }

  .intro h2 {
    font-size: 28px;
    line-height: 36px;
    padding: 0 15px;
  }

  .intro h2 span {
    font-size: 28px;
  }

  .intro p {
    font-size: 16px;
    line-height: 24px;
    padding: 0 15px;
  }

  .cards-section {
    padding: 15px 0 60px 0;
  }

  .card-grid {
    gap: 15px;
    padding: 0 15px;
  }

  .title1,
  .title2,
  .title3 {
    height: 250px;
  }

  .title-1,
  .title-2,
  .title-3 {
    height: 80px;
  }

  .title1 h3,
  .title2 h3,
  .title3 h3 {
    font-size: 18px;
    left: 12px;
    top: 12px;
  }

  .feature-card {
    padding: 10px;
  }

  .feature-card img {
    height: 250px;
  }

  .card-body p {
    font-size: 16px;
    margin: 10px 0;
  }

  .card-actions {
    gap: 8px;
  }

  .btn-primary1,
  .btn-outline1,
  .btn-primary2,
  .btn-outline2,
  .btn-primary3,
  .btn-outline3 {
    font-size: 11px;
    width: 48%;
    padding: 8px 5px;
  }

  /* Stats Section Mobile */
  .stats {
    padding-bottom: 60px !important;
  }

  .stats h2 {
    font-size: 28px;
    line-height: 36px;
    padding: 0 15px;
  }

  .stats p {
    font-size: 16px;
    line-height: 24px;
    padding: 0 15px;
  }

  .stats-grid {
    margin-top: 30px;
    gap: 15px;
    padding: 0 15px;
  }

  .stat-item {
    padding: 15px;
    flex-direction: row;
    justify-content: flex-start;
    gap: 15px;
    flex-wrap: wrap;
  }

  .stat-item img {
    width: 50px;
    height: 50px;
  }

  .stat-item strong {
    font-size: 24px;
  }

  .stat-item span {
    font-size: 14px;
    margin-top: -10px;
  }

  /* Impact Section Mobile */
  .impact {
    padding: 50px 0 60px 0;
  }

  .impact-head h2 {
    font-size: 28px;
    line-height: 36px;
    padding: 0 15px;
  }

  .impact-head p {
    font-size: 16px;
    line-height: 24px;
    padding: 0 15px;
  }

  .impact-grid {
    margin-top: 30px;
    gap: 15px;
    padding: 0 15px;
  }

  .impact-item {
    padding: 20px;
  }

  .impact-item strong {
    font-size: 32px;
  }

  .impact-item span {
    font-size: 16px;
    margin-top: -15px;
  }

  /* News Section Mobile */
  .news {
    padding: 40px 15px;
  }

  .news h2 {
    font-size: 28px;
    line-height: 36px;
  }

  .news p {
    font-size: 16px;
    line-height: 24px;
  }

  .news-grid {
    margin-top: 30px;
    gap: 20px;
  }

  .news-card {
    padding: 10px;
  }

  .title4 {
    height: 200px;
    
  }

  .title4 span {
    padding: 8px;
    font-size: 12px;
  }

  .date {
    font-size: 12px;
    padding: 3px 8px;
  }

  .news-content h3 {
    font-size: 14px;
    margin: 8px 0;
  }

  .news-content a {
    font-size: 14px;
  }

  .view-all {
    width: 40%;
    margin-top: 30px;
    padding: 10px 9px;
    font-size: 14px;
    text-align: center;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }

  /* Footer Mobile */
  .footer {
    padding-top: 40px;
  }

  /* .footer-brand {
    text-align: center;
  } */

  .footer-brand img {
    width: 50%;
    /* margin: 0 auto; */
  }

  .logos {
    width: 100%;
    /* justify-content: center; */
    flex-wrap: wrap;
  }

  .logos img {
    width: 15%;
  }

  .footer-grid {
    gap: 10px;
    padding: 0 15px;
    /* text-align: center; */
  }

  .footer h4 {
    font-size: 20px;
    margin-top: 10px;
  }

  .footer p {
    width: 100%;
    font-size: 14px;
    /* text-align: center; */
  }

  /* .footer ul {
    text-align: center;
  } */

  .footer li {
    font-size: 14px;
  }

  .footer .copyright {
    font-size: 12px;
    padding: 12px;
  }
}

/* Small Mobile (up to 480px) */
@media (max-width: 480px) {
  .hero h1 {
    font-size: 24px;
  }

  .eco {
    font-size: 28px;
  }

  .intro h2 {
    font-size: 24px;
    line-height: 32px;
  }

  .intro h2 span {
    font-size: 24px;
  }

  .stats-grid {
    gap: 12px;
  }

  .stat-item {
    padding: 12px;
  }

  .stat-item strong {
    font-size: 20px;
  }

  .impact-item strong {
    font-size: 28px;
  }

  .impact-item span {
    font-size: 14px;
  }

  .view-all {
    width: 60%;
  }

  .btn-primary1,
  .btn-outline1,
  .btn-primary2,
  .btn-outline2,
  .btn-primary3,
  .btn-outline3 {
    font-size: 10px;
    padding: 8px 5px;
  }
}
