/* ========================================= */
/* ABOUT PAGE ONLY */
/* ========================================= */



/* ========================================= */
/* HERO SLIDER */
/* ========================================= */

.hero{
  position:relative;
  min-height:420px;
  overflow:hidden;
  display:flex;
  align-items:center;
  color:#fff;
}

.hero-slide{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  opacity:0;
  transition:opacity 1s ease;
  transform:scale(1.05);
}

.hero-slide.active{
  opacity:1;
}

.hero-inner{
  position:relative;
  z-index:2;
  width:100%;
}

.hero-content{
  max-width:700px;
  padding:90px 0;
}

.breadcrumb{
  font-size:13px;
  margin-bottom:15px;
  color:#d8f7dd;
  letter-spacing:1px;
  font-weight:600;
}

.hero h1{
  font-size:58px;
  margin-bottom:18px;
  font-weight:800;
  line-height:1.1;
}

.hero p{
  font-size:17px;
  line-height:1.8;
  color:#f2f2f2;
  max-width:650px;
}


/* ABOUT SECTION */

.about-section {
  padding: 100px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.image-grid img {
  border-radius: 18px;
  height: 240px;
  object-fit: cover;
  box-shadow: 0 10px 25px rgba(0,0,0,.08);
}

.section-label {
  color: #0f9d58;
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-title {
  font-size: 46px;
  font-weight: 800;
  margin-bottom: 18px;
  line-height: 1.15;
  color: #003b24;
}

.green-line {
  width: 60px;
  height: 4px;
  background: #8dd63f;
  border-radius: 20px;
  margin-bottom: 25px;
}

.about-text p {
  color: #555;
  line-height: 1.9;
  margin-bottom: 20px;
  font-size: 15px;
}

.learn-btn {
  background: #0f9d58;
  color: #fff;
  padding: 15px 28px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  transition: 0.3s ease;
}

.learn-btn:hover {
  background: #003b24;
  transform: translateY(-2px);
}



/* VISION */

.vision-section {
  padding-bottom: 90px;
}

.vision-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.vision-card {
  background: #fff;
  border: 1px solid #eee;
  padding: 45px 35px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 5px 25px rgba(0,0,0,.05);
  transition: 0.3s ease;
}

.vision-card:hover {
  transform: translateY(-6px);
}

.vision-card i {
  font-size: 45px;
  color: #0f9d58;
  margin-bottom: 25px;
}

.vision-card h3 {
  font-size: 28px;
  margin-bottom: 18px;
}

.vision-card p {
  color: #666;
  line-height: 1.8;
}



/* VALUES */

.values {
  padding-bottom: 90px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.value-card {
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 35px 25px;
  text-align: center;
  transition: 0.3s ease;
  background: #fff;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.value-card i {
  color: #0f9d58;
  font-size: 38px;
  margin-bottom: 18px;
}

.value-card h4 {
  margin-bottom: 12px;
  font-size: 20px;
}

.value-card p {
  color: #666;
  font-size: 14px;
  line-height: 1.7;
}



/* IMPACT */

.impact {
  background:
    linear-gradient(rgba(0, 55, 33, 0.85), rgba(0, 55, 33, 0.85)),
    url("./assets/images/impact-bg.jpeg") center/cover no-repeat;
  padding: 80px 0;
  color: #fff;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  text-align: center;
}

.impact-item i {
  color: #8dd63f;
  font-size: 42px;
  margin-bottom: 18px;
}

.impact-item h2 {
  font-size: 46px;
  margin-bottom: 10px;
}

.impact-item p {
  font-size: 16px;
}


/* ========================================= */
/* COUNTRIES */
/* ========================================= */

.countries{
  padding:100px 0;
  background:#fff;
}

.country-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:70px;
  align-items:center;
}

/* ========================================= */
/* COUNTRY LIST */
/* ========================================= */

.country-list{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px;
  margin-top:35px;
}

.country-list div{
  display:flex;
  align-items:center;
  gap:14px;
  background:#fff;
  border:1px solid #e9e9e9;
  border-radius:16px;
  padding:16px 18px;
  box-shadow:0 5px 18px rgba(0,0,0,.04);
  transition:.3s ease;
}

.country-list div:hover{
  transform:translateY(-4px);
  border-color:#0f9d58;
  box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.country-list i{
  color:#0f9d58;
  font-size:18px;
  flex-shrink:0;
}

.country-list img{
  width:46px;
  height:32px;
  object-fit:cover;
  border-radius:4px;
  border:1px solid #ddd;
  flex-shrink:0;
}

.country-list span{
  font-size:16px;
  font-weight:700;
  color:#111827;
  line-height:1.3;
}

/* ========================================= */
/* MAP */
/* ========================================= */

.country-map-wrap{
  display:flex;
  justify-content:center;
  align-items:center;
}

.country-map{
  width:100%;
  max-width:560px;
  object-fit:contain;
}

/* ========================================= */
/* TABLET */
/* ========================================= */

@media(max-width:1100px){

  .country-grid{
    grid-template-columns:1fr;
    gap:50px;
  }

  .country-map{
    max-width:500px;
  }

}

/* ========================================= */
/* MOBILE */
/* ========================================= */

@media(max-width:768px){

  .countries{
    padding:70px 0;
  }

  .country-list{
    grid-template-columns:1fr;
  }

  .country-list div{
    padding:14px 16px;
  }

  .country-list span{
    font-size:15px;
  }

  .country-map{
    max-width:100%;
  }

}

/* ========================================= */
/* SMALL MOBILE */
/* ========================================= */

@media(max-width:480px){

  .country-list img{
    width:40px;
    height:28px;
  }

  .country-list span{
    font-size:14px;
  }

}


/* ========================================= */
/* RESPONSIVE */
/* ========================================= */

@media (max-width: 1100px) {

  .about-grid,
  .country-grid {
    grid-template-columns: 1fr;
  }

  .vision-grid,
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .impact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}


@media (max-width: 768px) {

  .hero {
    min-height: 420px;
    padding: 70px 0;
    text-align: left;
    background-position: center;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero p {
    font-size: 15px;
    line-height: 1.7;
  }

   .hero-content{
    padding:70px 0;
  }


  .about-grid,
  .country-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* TEXT FIRST */
  .about-text {
    order: 1;
  }

  .image-grid {
    order: 2;

    /* SMALLER GRID */
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .image-grid img {
    height: 140px;
    border-radius: 12px;
  }

  .section-title {
    font-size: 34px;
  }

  .vision-grid,
  .values-grid,
  .impact-grid {
    grid-template-columns: 1fr;
  }

  .vision-card,
  .value-card {
    padding: 30px 22px;
  }

}


@media (max-width: 480px) {

  .hero {
    min-height: 360px;
    padding: 60px 0;
  }

  .hero h1 {
    font-size: 34px;
  }

   .hero-content{
    padding:60px 0;
  }
    .breadcrumb{
    font-size:11px;
  }

  .hero p{
    font-size:14px;
  }

  .section-title {
    font-size: 28px;
  }

  .image-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .image-grid img {
    height: 110px;
  }

  .about-section,
  .countries {
    padding: 60px 0;
  }

  .country-list div {
    font-size: 16px;
  }

}