/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  color: #000;
  background-color: #fff;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
}

.logo img {
  height: 80px;
}

.nav-links {
  display: flex;
  gap: 40px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 600;
}

.nav-links a:hover {
  color: #228B22;
}

/* Hero Section */
.hero-section {
  position: relative;  
  background: url('https://i.ibb.co/5XfwDDGm/174595632928812-1.jpg') no-repeat center center/cover;
  height: 100vh;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.hero-text {
  text-align: center;
  margin-top: auto;
  margin-bottom: 240px;
}

.hero-text h1 {
  font-size: 44px;
  font-weight: 700;
}

/* Focus Areas */
.focus-areas {
  text-align: center;
  padding: 80px 40px;
}

.section-heading {
  font-size: 40px;
  color: #228B22;
  font-weight: 700;
  margin-bottom: 20px;
}

.intro-text {
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 16px;
  line-height: 1.6;
}

.focus-image img {
  width: 100%;
  max-width: 800px;
  border-radius: 10px;
}

/* Program Sections */
.program-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 60px 80px;
  flex-wrap: wrap;
}

.program-section.reverse {
  flex-direction: row-reverse;
}

.program-text {
  flex: 1 1 50%;
}

.program-title {
  font-size: 32px;
  color: #228B22;
  font-weight: 700;
  margin-bottom: 20px;
}

.program-text p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.program-text ul {
  list-style: disc inside;
  font-size: 15px;
  line-height: 1.7;
}

.program-image {
  flex: 1 1 45%;
  text-align: center;
}

.program-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
}

/* Footer Section */
.footer {
  background-color: white;
  font-family: 'Inter', sans-serif;
  width: 100%;
  box-sizing: border-box;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  padding: 5px 80px 20px 50px; /* move padding here instead */
  margin: 0 auto;
  max-width: 1600px; /* optional: keep content aligned */
}

.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: 32px;
  height: 32px;
  transition: transform 0.3s ease;
}

.social-icons img:hover {
  transform: scale(1.1);
}

.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;
  margin: 0;
  padding: 0;
}
