* {
  font-family: 'Montserrat', sans-serif;
  scroll-behavior: smooth;
}




.fade-text {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeText 1.3s ease-out forwards;
}

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

@keyframes floatBuilding {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-18px);
  }
  100% {
    transform: translateY(0px);
  }
}




body {
  color: #201918;
  background-color: #fffdf8;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}




header {
  background: white;
  padding: 5px;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: background 0.3s, box-shadow 0.3s;
}

header.scrolled {
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  background: rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

header.scrolled .nav-links a {
  color: #ffffff;
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.7);
}

.container {
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-img {
  height: 25px;
}

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

.nav-links a {
  color: #000;
  font-weight: 600;
}

nav ul li a {
  position: relative;
  color: rgb(0, 0, 0);
  text-decoration: none;
  padding: 5px 0;
}

nav ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0%;
  height: 2px;
  background-color: #00b050;
  transition: width 0.3s ease, background-color 0.3s ease;
}

nav ul li a:hover::after {
  width: 100%;
}

header.scrolled .nav-links a::after {
  background-color: #00b050;
}




.hero {
  width: 100%;
  min-height: 100vh;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 7%;
  gap: 70px;
}

.hero-left {
  flex: 1;
  display: flex;
  justify-content: flex-start;
}

.hero-building {
  width: 70%;
  max-width: 480px;
  object-fit: contain;
  margin-top: 40px;
  animation: floatBuilding 4s ease-in-out infinite;
}

.hero-right {
  flex: 1;
}

.hero-head {
  display: flex;
  align-items: center;
  gap: 20px;
}

.hero-number {
  font-size: 150px;
  font-weight: 900;
  color: #00b050;
  margin: 0;
  line-height: 0.9;
}

.hero-small-text {
  font-size: 28px;
  font-weight: 600;
  color: #3b2d2a;
  max-width: 150px;
  text-align: left;
}

.hero-title {
  font-size: 52px;
  font-weight: 800;
  margin: 10px 0 20px;
  color: #1f1614;
  max-width: 520px;
  text-align: left;
}

.hero-sub {
  font-size: 22px;
  color: #3b2d2a;
  margin-bottom: 30px;
  max-width: 480px;
  text-align: left;
}

.hero-btn {
  display: inline-block;
  padding: 12px 26px;
  background: #1f1614;
  color: white;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
  text-align: left;
}

.hero-btn:hover {
  background: #00b050;
}




.about-section {
  padding: 145px 60px;
  background: url('../images/BG.jpg') no-repeat center center/cover;
  background-attachment: fixed;
}

.about-section h2 {
  font-size: 3.5rem;
  color: #ffffff;
  text-shadow: 0 5px 15px #000000;
  text-align: center;
  margin-bottom: 50px;
}

.about-section p {
  color: #ffffff;
}

.about-container {
  width: 85%;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
}

.about-text {
  flex: 1;
  min-width: 300px;
  font-size: 25px;
}

.about-stats {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 25px;
  min-width: 280px;
}

.about-card {
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  background: rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  padding: 40px 30px;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
  transition: all 0.3s ease;
  cursor: default;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1); 
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.about-card h3 {
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 10px;
  color: #ffffff;
  transition: color 0.3s ease;
}

.about-card1 p {
  font-size: 15px;
  color: #fffefe;
  transition: color 0.3s ease;
}

.about-card:hover {
  background-color: #00b050;
  color: white;
  transform: translateY(-5px);
  box-shadow: 
    0 0 15px rgba(0, 176, 80, 0.6),
    0 8px 20px rgba(0,0,0,0.25);
}

.about-card:hover h3,
.about-card:hover p {
  color: white;
}




.shared-bg {
  background: url('../images/BG2.jpg') no-repeat center center/cover;
  background-attachment: fixed;
}

.targets {
  padding: 60px 60px;
}

.targets h2 {
  font-size: 7rem;
  color: #ffffff;
  text-align: center;
  text-shadow: 0 5px 15px #000000;
  margin-bottom: 10px;
}

.targets-sub {
  font-size: 22px;
  color: #ffffff;
  text-align: center;
  text-shadow: 0 5px 15px #000000;
  margin-bottom: 50px;
  margin-top: 0;
}

.targets-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 35px;
  justify-items: center;
}

.target-card {
  display: flex;
  align-items: center;
  gap: 80px;
  background: #ffffff;
  border-radius: 15px;
  padding: 15px 18px;
  box-shadow: 0 5px 15px rgba(85, 53, 28, 0.18);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1);
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  perspective: 1000px;
  cursor: pointer;
}

.target-card:hover {
  transform: rotateY(10deg) rotateX(10deg) scale(1.05);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

.target-card::before,
.target-card::after {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.1));
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.320, 1);
  z-index: 1;
}

.target-card::before {
  left: 0;
}

.target-card::after {
  right: 0;
}

.target-card:hover::before {
  transform: translateX(-100%);
}

.target-card:hover::after {
  transform: translateX(100%);
}

.target-card img {
  width: 150px;
  height: 230px;
  border-radius: 10px;
  object-fit: cover;
  z-index: 2;
}

.target-info {
  z-index: 2;
}

.target-info h3 {
  font-size: 1.3rem;
  font-weight: bold;
  color: #3b2d2a;
  text-align: left;
}

.target-info p {
  font-size: 0.95rem;
  font-weight: 400;
  color: #3b2d2a;
  text-align: left;
}




.section {
  padding: 115px 115px 150px;
  text-align: center;
}



.challenges-h2 {
  font-size: 4rem;
  margin-bottom: 10px;
  color: #ffffff;
  text-align: center;
  text-shadow: 0 5px 15px #000000;
}

.challenges-sub {
  font-size: 22px;
  margin-top: 0px;
  color: #ffffff;
  text-align: center;
  text-shadow: 0 5px 15px #000000;
  margin-bottom: 50px;
}

.challenges-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 25px;
  flex-wrap: wrap;
  margin-top: 60px;
}


.challenges-card {
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  background: rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  padding: 32px;
  text-align: center;
  width: 400px;
  height: 200px;
  box-sizing: border-box;
  transition: all 0.3s ease;
  cursor: default;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  border: 2px solid #465800;
}

.challenges-card h3 {
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 10px;
  color: #ffffff;
  transition: color 0.3s ease;
}

.challenges-card p {
  font-size: 15px;
  color: #fffefe;
  transition: color 0.3s ease;
}

.challenges-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 12px 28px #00b050;
}




.solutions-h2 {
  font-size: 4rem;
  margin-bottom: 10px;
  color: #ffffff;
  text-align: center;
  text-shadow: 0 5px 15px #000000;
}

.solutions-sub {
  font-size: 22px;
  margin-top: 0px;
  color: #ffffff;
  text-align: center;
  text-shadow: 0 5px 15px #000000;
  margin-bottom: 50px;
}

.solutions-card-group {
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

.solutions-card {
  width: 220px;
  height: 380px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: 0.5s ease;
}

.solutions-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}

.solutions-layer {
  position: absolute;
  bottom: 0;
  inset: 0;  
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0));
  opacity: 0;
  transition: 0.4s ease;
}

.solutions-info {
  position: absolute;
  bottom: -40%;
  padding: 20px;
  color: #ffffff;
  opacity: 0;
  transition: 0.5s ease;
}

.solutions-info h1 {
  margin-bottom: 8px;
  font-size: 22px;
  text-align: left;
}

.solutions-info p {
  font-size: 14px;
  line-height: 1.4;
  text-align: left;
}

.solutions-card:hover img {
  transform: scale(1.15);
}

.solutions-card:hover .solutions-layer {
  opacity: 1;
}

.solutions-card:hover .solutions-info {
  bottom: 10%;
  opacity: 1;
}

.solutions-card-group:hover .solutions-card:not(:hover) {
  filter: blur(4px);
  opacity: 0.65;
  transform: scale(0.95);
}





footer {
  background: #465800;
  color: #fff;
  padding: 20px;
  font-family: Arial, sans-serif;
  border-top: 4px solid #00b050
}

.footer-message h2 {
  font-size: 32px;
  color: #ffffff;
  text-align: center;
  text-shadow: 0 5px 15px #000000;
}

.footer-message p {
  font-size: 18px;
  color: #ffffff;
  text-align: center;
  text-shadow: 0 5px 15px #000000;
  margin-bottom: 20px;
}

.footer-content {
  display: flex;
  flex-direction: row; 
  align-items: center;
  text-align: left; 
  justify-content: space-around;
  flex-wrap: wrap;
  margin-bottom: 20px;
  border-top: 1px solid #00b050;
}

.footer-section {
  width: 45%;
  min-width: 250px; 
}

.footer-section h3 {
  margin-bottom: 10px;
  color: #00b050;
}

.footer-bottom {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  border-top: 1px solid #00b050;
  padding-top: 10px;
}







@media (max-width: 768px) {

  * {
    box-sizing: border-box;
  }

  body, html {
    overflow-x: hidden;
    width: 100%;
  }




  header {
    width: 100vw;
    left: 0;
    padding: 10px 15px;
  }

  nav {
    position: relative;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 30%;
    position: fixed;
    top: 60px;
    right: 10px;
    background: rgba(0,0,0,0.35);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    background: rgba(75, 117, 15, 0.6);
    padding: 12px 15px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    gap: 10px;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li a {
    font-size: 12px;
    padding: 6px 0;
    display: block;
    color: #ffffff;
    font-weight: 600;
  }

  .burger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
    position: relative;
  }

  .burger span {
    width: 26px;
    height: 3px;
    background: #000;
    border-radius: 3px;
    transition: all 0.3s ease;
  }

  .burger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .burger.open span:nth-child(2) {
    opacity: 0;
  }

  .burger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }




  .hero {
    flex-direction: column;
    text-align: center;
    gap: 30px;
    padding: 120px 20px 60px;
  }

  .hero-left,
  .hero-right {
    flex: 1;
  }

  .hero-building {
    width: 70%;
    max-width: 200px;
    margin: 0 auto;
  }

  .hero-number {
    font-size: 50px;
    line-height: 1;
  }

  .hero-small-text {
    font-size: 16px;
    max-width: 150px;
    margin: 0 auto;
  }

  .hero-title {
    font-size: 24px;
    line-height: 1.2;
    max-width: 300px;
    margin: 10px auto 15px;
  }

  .hero-sub {
    font-size: 14px;
    max-width: 280px;
    margin: 0 auto 20px;
  }

  .hero-btn {
    padding: 10px 20px;
    font-size: 14px;
  }




  .about-section {
    padding: 70px 25px;
    background-attachment: scroll;
  }

  .about-section h2 {
    font-size: 2rem;
    text-align: center;
  }

  .about-container {
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 25px; /* smaller gap */
    text-align: center;
  }

  .about-text {
    width: 100%;
    font-size: 16px;
  }

  .about-stats {
    width: 100%;
    align-items: center;
  }

  .about-card h3 {
    font-size: 20px;
  }

  .about-card p {
    font-size: 14px;
  }




  .targets {
    padding: 50px 20px;
  }

  .targets h2 {
    font-size: 2.5rem;
  }

  .targets-sub {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .targets-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .target-card {
    flex-direction: column;
    width: 100%;
    padding: 20px;
    gap: 15px;
  }

  .target-card img {
    width: 120px;
    height: 160px;
  }

  .target-info h3 {
    font-size: 1rem;
  }

  .target-info p {
    font-size: 0.85rem;
  }

  


  .section {
    padding: 60px 20px;
  }

  .challenges-h2,
  .solutions-h2 {
    font-size: 2rem;
  }

  .challenges-sub,
  .solutions-sub {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .challenges-container,
  .solutions-container {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .challenges-card,
  .solutions-card {
    width: 100%;
    height: auto;
    padding: 20px;
  }

  .challenges-card h3,
  .solutions-card h3 {
    font-size: 18px;
  }

  .challenges-card p,
  .solutions-card p {
    font-size: 14px;
  }

  .solutions-card img {
    border-radius: 16px; 
  }

  .solutions-layer {
    border-radius: 16px; 
    overflow: hidden;  
  }



  footer {
    text-align: center;
    padding: 20px 15px;
  }

  .footer-message h2 {
    font-size: 24px;
  }

  .footer-message p {
    font-size: 14px;
  }

  .footer-content {
    flex-direction: column;
    gap: 20px;
  }

  .footer-section {
    width: 100%;
  }

  .footer-bottom {
    font-size: 14px;
    padding-top: 10px;
  }
}
