/* ===== GLOBAL RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: #f9fdfb;
  color: #222;
  line-height: 1.7;
  scroll-behavior: smooth;
}

/* ===== TEXT STYLES ===== */
h1, h2, h3, h4 {
  color: #4caf50; /* brand light green for faith identity */
  font-weight: 700;
}

p {
  color: #444;
}

a {
  color: #4caf50;
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: #024c25; /* dark green on hover */
}

/* ===== SCROLL PROGRESS BAR ===== */
#progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 5px;
  background: #4caf50;
  width: 0%;
  z-index: 2000;
  transition: width 0.25s ease-out;
}

/* ===== HEADER ===== */
header {
  background: transparent;
  padding: 12px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: background 0.3s, box-shadow 0.3s;
}

header.scrolled {
  background: #024c25;
  box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

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

header .logo img {
  height: 60px;
}

header nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

header nav ul li a {
  color: #fff;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 4px;
  transition: 0.3s;
}

header nav ul li a:hover,
header nav ul li a.active {
  background: #4caf50;
  color: #fff;
}

/* ===== HAMBURGER (MOBILE) ===== */
.nav-toggle {
  display: none;
}

.hamburger {
  display: none;
  cursor: pointer;
}

.hamburger span,
.hamburger span::before,
.hamburger span::after {
  display: block;
  background: #fff;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  position: relative;
  transition: 0.3s;
}

.hamburger span::before,
.hamburger span::after {
  content: "";
  position: absolute;
  left: 0;
}

.hamburger span::before { top: -8px; }
.hamburger span::after { top: 8px; }

.hamburger.active span { background: transparent; }
.hamburger.active span::before { transform: rotate(45deg) translateY(8px); }
.hamburger.active span::after { transform: rotate(-45deg) translateY(-8px); }

@media (max-width: 768px) {
  .hamburger { display: block; }
  header nav ul {
    position: absolute;
    top: 100%;
    right: 0;
    background: #024c25;
    flex-direction: column;
    width: 220px;
    padding: 15px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }
  header nav ul.show { transform: translateX(0); }
  header nav ul li { margin: 10px 0; }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  background: url("Images/TKRJ mission .jpg") center/cover no-repeat fixed;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(2, 76, 37, 0.7);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  animation: fadeIn 2s ease-in-out;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  color: #4caf50; /* Light green highlight */
  animation: textGlow 2.5s infinite alternate;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #e8ffe8;
  animation: fadeInUp 1.5s ease-in-out;
}

/* Floating background shapes */
.float {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
  background: #fff;
  animation: float 6s infinite ease-in-out;
}
.f1 { width: 150px; height: 150px; top: 20%; left: 10%; animation-delay: 0s; }
.f2 { width: 100px; height: 100px; bottom: 25%; right: 15%; animation-delay: 2s; }
.f3 { width: 80px; height: 80px; top: 40%; right: 25%; animation-delay: 4s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes textGlow {
  from { text-shadow: 0 0 5px #4caf50, 0 0 10px #4caf50; }
  to { text-shadow: 0 0 20px #fff, 0 0 30px #4caf50; }
}

/* ===== BUTTONS ===== */
.btn, .btn-primary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 6px;
  background: #024c25;
  color: #fff;
  font-weight: 600;
  transition: background 0.3s, transform 0.3s;
}

.btn:hover, .btn-primary:hover {
  background: #4caf50;
  transform: translateY(-3px);
}

/* ===== IMPACT SECTION ===== */
.impact-section {
  padding: 80px 20px;
  background: #fff;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  align-items: center;
}

.impact-text h2 {
  margin-bottom: 15px;
}

.section-divider {
  width: 60px;
  height: 4px;
  background: #4caf50;
  margin: 10px 0 20px;
}

.impact-list {
  list-style: none;
  margin-top: 15px;
}

.impact-list li {
  margin: 10px 0;
  display: flex;
  align-items: center;
  color: #024c25;
}

.impact-list li i {
  margin-right: 10px;
  color: #4caf50;
}

.impact-imgs img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}
.impact-imgs img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: #024c25;
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.cta-flex h2 {
  margin-bottom: 10px;
  color: #4caf50;
  animation: fadeIn 2s ease-in-out;
}

/* ===== TEAM TEASER ===== */
.team-teaser {
  padding: 80px 20px;
  background: #f1f8f4;
  text-align: center;
}

.team-teaser h2 {
  margin-bottom: 15px;
}

.team-teaser p {
  margin-bottom: 20px;
}

/* ===== FOOTER FIX ===== */
footer {
  background: #024c25; /* dark green brand */
  color: #f1f1f1;      /* light text for readability */
}

.footer-contact p,
.footer-contact i,
.footer-sitemap ul li a,
.footer-bottom p {
  color: #e8fce8; /* very light green for high contrast */
  font-size: 0.95rem;
}

.footer-contact h4,
.footer-sitemap h4,
.footer-social h4 {
  color: #ffffff; /* pure white for headings */
  margin-bottom: 10px;
}

.footer-sitemap ul li a {
  color: #e8fce8;
  transition: color 0.3s;
}

.footer-sitemap ul li a:hover {
  color: #4caf50; /* branded highlight */
}

.footer-social .social-icons a {
  color: #e8fce8;
  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.85rem;
  color: #ddd; /* visible copyright text */
}



/* ===== GLOBAL RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background: #f9fdfb;
  color: #222;
  line-height: 1.7;
}

h1, h2, h3, h4 {
  color: #024c25; /* brand dark green */
  font-weight: 700;
}

a {
  color: #024c25;
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: #4caf50;
}

/* ===== HEADER ===== */
header {
  background: #024c25;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

header .logo img {
  height: 60px;
}

header nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

header nav ul li a {
  color: #fff;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 4px;
}

header nav ul li a:hover,
header nav ul li a.active {
  background: #4caf50;
  color: #fff;
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  background: url("Images/team.png") center/cover no-repeat;
  text-align: center;
  padding: 120px 20px;
  color: #fff;
}

.hero .overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(2, 76, 37, 0.7);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: auto;
}

/* ===== MANAGERS SECTION ===== */
.managers {
  padding: 60px 20px;
  background: #fff;
  text-align: center;
}

.manager-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.manager-card {
  background: #f1f8f4;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.manager-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(2,76,37,0.2);
}

.manager-card img {
  width: 100%;
  max-width: 220px;
  border-radius: 50%;
  margin-bottom: 15px;
}

.manager-card h3 {
  margin-bottom: 8px;
}

.manager-card h4 {
  color: #4caf50;
  margin-bottom: 12px;
  font-weight: 600;
}

/* ===== CONTACT FORM ===== */
.contact-form {
  padding: 60px 20px;
  background: #eaf4ec;
  text-align: center;
}

.contact-form form {
  max-width: 700px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  width: 100%;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #024c25;
  outline: none;
  box-shadow: 0 0 5px rgba(2,76,37,0.3);
}

.contact-form button {
  background: #024c25;
  color: #fff;
  padding: 14px;
  border: none;
  border-radius: 6px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  background: #4caf50;
}

/* ===== FAQ SECTION ===== */
.faq {
  padding: 60px 20px;
  background: #fff;
}

.faq-item {
  margin-bottom: 20px;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 14px;
  font-size: 1.1rem;
  background: #f1f8f4;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
}

.faq-answer {
  display: none;
  padding: 14px;
  margin-top: 8px;
  background: #eaf4ec;
  border-radius: 6px;
}

.faq-answer.active {
  display: block;
}

/* ===== 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-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;
}

/* ===== SCROLL PROGRESS BAR ===== */
#progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 5px;
  background: #024c25;
  width: 0%;
  z-index: 2000;
  transition: width 0.25s ease-out;
}
