/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}
body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  background-color: #f9f9f9;
  color: #333;
  scroll-behavior: smooth;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Header & Navbar */
.hero {
  background: linear-gradient(to bottom right, #eaf6f9, #d8f2f1);
  padding-bottom: 3rem;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 5%;
}
.logo {
  font-size: 1.8rem;
  font-weight: 600;
}
.logo span {
  color: #00b894;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}
.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
}
.nav-links a:hover {
  color: #00b894;
}

/* Hero Section */
.hero-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 3rem 5%;
}
.hero-text {
  max-width: 550px;
}
.hero-text h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #00b894;
}
.hero-text p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}
.btn-primary {
  background-color: #00b894;
  color: #fff;
  padding: 0.9rem 2rem;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s;
}
.btn-primary:hover {
  background-color: #009e79;
}
.hero-img {
  max-width: 500px;
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Features Section */
.features {
  padding: 4rem 5%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  background: #ffffff;
}
.feature-card {
  flex: 1 1 300px;
  background: #f0fffc;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}
.feature-card h3 {
  margin-top: 1rem;
  color: #00b894;
}

/* About Section */
.about {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 5rem 5%;
  background-color: #eafef9;
}
.about-text {
  max-width: 500px;
}
.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.about-text p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}
.btn-secondary {
  background-color: transparent;
  border: 2px solid #00b894;
  color: #00b894;
  padding: 0.8rem 1.8rem;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}
.btn-secondary:hover {
  background-color: #00b894;
  color: white;
}
.about-img img {
  max-width: 450px;
  border-radius: 10px;
}

/* Global Stats Section */
.global {
  background-color: #f9fdfd;
  text-align: center;
  padding: 5rem 5%;
}
.global h2 {
  font-size: 2.5rem;
  color: #00b894;
  margin-bottom: 0.5rem;
}
.global p {
  font-size: 1.1rem;
  margin-bottom: 3rem;
}
.map-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.map-stats img {
  max-width: 350px;
  margin-right: 3rem;
}
.map-stats ul {
  list-style: none;
  padding-left: 0;
}
.map-stats li {
  font-size: 1.2rem;
  margin: 1rem 0;
}
.map-stats li strong {
  font-size: 1.6rem;
  color: #00b894;
}

/* CTA Section */
.cta {
  text-align: center;
  background-color: #00b894;
  padding: 4rem 2rem;
  color: white;
}
.cta h2 {
  font-size: 2.4rem;
  margin-bottom: 1rem;
}
.cta p {
  margin-bottom: 2rem;
}
.cta a {
  background-color: white;
  color: #00b894;
  padding: 0.9rem 2rem;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s;
}
.cta a:hover {
  background-color: #00a37b;
  color: white;
}

/* Footer */
footer {
  background-color: #222;
  color: #aaa;
  text-align: center;
  padding: 1.5rem 0;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content, .about {
    flex-direction: column;
    text-align: center;
  }
  .nav-links {
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
  }
  .map-stats {
    flex-direction: column;
  }
}

