/* ===== GLOBAL RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background: #f9fdfb;
  color: #222; /* main body text color */
  line-height: 1.7;
}

h1, h2, h3, h4 {
  font-family: "Poppins", sans-serif;
  color: #024c25; /* brand dark green */
  font-weight: 700;
  margin-bottom: 15px;
}

p {
  color: #444; /* softer text for readability */
  margin-bottom: 15px;
}

a {
  color: #024c25;
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: #4caf50; /* lighter green accent */
}

img {
  max-width: 100%;
  border-radius: 8px;
}

/* ===== CONTAINERS ===== */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* ===== PROGRESS BAR ===== */
#progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 5px;
  background: #024c25; /* brand dark green */
  width: 0%;
  z-index: 2000;
  transition: width 0.25s ease-out;
}

/* ===== HEADER ===== */
header {
  background: #024c25;
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header .logo img {
  height: 60px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav ul li {
  position: relative;
}

nav ul li a {
  color: #fff;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 4px;
  transition: 0.3s;
}

nav ul li a:hover,
nav ul li a.active {
  background: #4caf50;
  color: #fff;
}

/* Dropdown */
.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 40px;
  left: 0;
  background: #024c25;
  border-radius: 4px;
  padding: 10px 0;
  min-width: 180px;
}

.dropdown-menu li {
  display: block;
}

.dropdown-menu li a {
  display: block;
  padding: 10px 15px;
  color: #fff;
  transition: 0.3s;
}

.dropdown-menu li a:hover {
  background: #4caf50;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 80vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(2, 76, 37, 0.65);
}

.hero-text {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 3rem;
  color: #fff;
  animation: fadeInDown 1s ease;
}

.hero p {
  font-size: 1.2rem;
  margin-top: 15px;
  color: #f0f0f0; /* softer white */
  animation: fadeInUp 1.2s ease;
}

/* ===== INTRO ===== */
.intro {
  padding: 60px 0;
}

.intro-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.intro-text {
  flex: 1 1 55%;
}

.intro-text h2 {
  color: #024c25;
}

.intro-text p,
.intro-text ul li {
  color: #444;
}

.intro-image {
  flex: 1 1 40%;
  text-align: center;
}

.intro-image img {
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: transform 0.3s;
}

.intro-image img:hover {
  transform: scale(1.05);
}

/* ===== OBJECTIVES ===== */
.objectives {
  background: #f0f8f5;
  padding: 60px 0;
  text-align: center;
}

.objectives h2 {
  color: #024c25;
  margin-bottom: 40px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.card {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.card img {
  height: 160px;
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.card h3 {
  color: #024c25;
}

.card p {
  color: #444;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

/* ===== PROGRAMS ===== */
.programs {
  padding: 60px 0;
  text-align: center;
}

.programs h2 {
  color: #024c25;
  margin-bottom: 40px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.program-card {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s, background 0.3s;
}

.program-card img {
  height: 160px;
  width: 100%;
  object-fit: cover;
  margin-bottom: 15px;
  border-radius: 8px;
}

.program-card h3 {
  color: #024c25;
}

.program-card p {
  color: #444;
}

.program-card:hover {
  transform: translateY(-6px);
  background: #f0f8f5;
}

/* ===== LOCATIONS ===== */
.locations {
  background: #f9f9f9;
  padding: 60px 0;
  text-align: center;
}

.locations h2 {
  color: #024c25;
  margin-bottom: 30px;
}

.locations p {
  color: #444;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.location-card {
  background: #fff;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.location-card img {
  height: 160px;
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
}

.location-card p {
  color: #444;
}

.location-card:hover {
  transform: scale(1.05);
}

.location-list li {
  color: #444;
}

.location-list i {
  color: #4caf50;
  margin-right: 6px;
}

/* ===== FOOTER ===== */
footer {
  background: #024c25;
  color: #fff;
}

.footer-top {
  padding: 50px 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

.footer-logo img {
  height: 60px;
  margin-bottom: 10px;
}

.footer-sitemap ul {
  list-style: none;
}

.footer-sitemap ul li {
  margin: 6px 0;
}

.footer-sitemap ul li a {
  color: #ddd;
  transition: 0.3s;
}

.footer-sitemap ul li a:hover {
  color: #fff;
}

.footer-contact p {
  color: #ddd;
}

.footer-social .social-icons a {
  display: inline-block;
  color: #fff;
  font-size: 1.4rem;
  margin-right: 15px;
  transition: 0.3s;
}

.footer-social .social-icons a:hover {
  color: #4caf50;
}

.footer-bottom {
  text-align: center;
  padding: 15px;
  border-top: 1px solid rgba(255,255,255,0.2);
  font-size: 0.9rem;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .intro-flex {
    flex-direction: column;
  }

  .hero h1 {
    font-size: 2rem;
  }
}
