/* Reset margins and paddings to remove any white borders */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css');

/* Universal font */
body {
  font-family: 'Inter', sans-serif;
}

/* Above the Fold Section */
.about-hero {
  position: relative;
  background: url('https://i.ibb.co/ksZLC7d8/About-Us.webp') no-repeat center center/cover;
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  flex-direction: column;
  color: white;
  padding: 20px;
  text-align: left;
}

/* Navigation Bar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 60px;
}

.logo img {
  height: 140px; 
}

.nav-links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 60px;
  gap: 40px;
}

.nav-links a {
  color: white; /* changed from black */
  text-decoration: none;
  font-weight: 500;
  font-size: 18;
}

.nav-links li a:hover {
  color: #90EE90; /* Light green hover */
 
}

/* Hero Text */
.hero-text {
  flex-grow: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-text h1 {
  font-size: 44px;
  font-weight: bold;
}

/* Responsive Design for Hero Section */
@media (max-width: 768px) {
  .about-hero {
    height: auto;
    padding: 60px 20px 20px;
    text-align: center;
    align-items: center;
    justify-content: center;
  }

  .hero-text h1 {
    font-size: 32px;
    line-height: 1.3;
    padding: 0 10px;
  }

  .nav-links {
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
  }

  .logo img {
    height: 120px;
  }
}

/* Who We Are Section */
.who-we-are {
  text-align: center;
  padding: 80px 20px;
  background-color: #fff;
}

.who-we-are h2 {
  font-size: 54px;
  color: #228B22;
  margin-bottom: 30px;
}

.who-we-are p {
  font-size: 18px;
  color: #000;
  max-width: 800px;
  margin: 0 auto 50px auto;
  line-height: 1.6;
}

.who-we-are img {
  max-width: 50%;
  height: auto;
  border-radius: 10px;
}

/* Responsive Design for Who We Are Section */
@media (max-width: 1024px) {
  .who-we-are h2 {
    font-size: 36px;
  }

  .who-we-are p {
    font-size: 16px;
    padding: 0 10px;
  }

  .who-we-are img {
    max-width: 80%;
  }
}

@media (max-width: 600px) {
  .who-we-are {
    padding: 60px 10px;
  }

  .who-we-are h2 {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .who-we-are p {
    font-size: 18px;
  }

  .who-we-are img {
    max-width: 100%;
  }
}

/* Vision and Mission Section */
.vision-mission {
  padding: 80px 20px;
  background-color: #fff;
  font-family: 'Inter', sans-serif;
}

.container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 80px;
  flex-wrap: wrap;
  gap: 40px;
}

.vision-content, .mission-content {
  flex: 1;
  min-width: 300px;
}

.vision-content h2, .mission-content h2 {
  font-size: 48px;
  color: #228B22;
  margin-bottom: 20px;
}

.vision-content p, .mission-content p {
  font-size: 18px;
  color: #000;
  line-height: 1.6;
  max-width: 600px;
}

.vision-image, .mission-image {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
}

.vision-image img, .mission-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Responsive */
@media (max-width: 1024px) {
  .container {
    flex-direction: column;
    text-align: center;
  }

  .vision-content h2, .mission-content h2 {
    font-size: 24px;
  }

  .vision-content p, .mission-content p {
    font-size: 18px;
  }
}

/* Footer Section */
.footer {
  background-color: white;
  padding: 5px 80px 20px 50px;
  font-family: 'Inter', sans-serif;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-left {
  max-width: 200px;
}

.site-name {
  font-size: 32px;
  color: #228B22;
  font-weight: 700;
  margin-bottom: 20px;
}

.social-icons a {
  margin-right: 15px;
  display: inline-block;
}

.social-icons img {
  width: 28px;
  height: 28px;
}

.footer-links {
  display: flex;
  gap: 80px;
}

.link-group h3 {
  font-size: 20px;
  color: #228B22;
  margin-bottom: 15px;
}

.link-group ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.link-group ul li {
  margin-bottom: 10px;
}

.link-group ul li a {
  text-decoration: none;
  font-size: 18px;
  color: #000;
}

/* Green Bar */
.footer-bar {
  width: 100%;
  height: 30px;
  background-color: #228B22;
}