* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

.site-header {
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 45px;
}

.logo-text p {
  font-size: 13px;
  font-weight: 500;
  color: #333;
  line-height: 1.2;
}

/* DESKTOP NAV */
.nav-links {
  display: flex;
  list-style: none;
  gap: 25px;
}

.nav-links a {
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  color: #333;
}

.nav-links a:hover {
  color: #2b7a3d;
}

/* CALL BUTTON */
.call-btn {
  background: #f57c00;
  color: #ffffff;
  padding: 8px 14px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

.call-btn:hover {
  background: #e65100;
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #333;
  border-radius: 3px;
}

/* MOBILE MENU */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: #ffffff;
  padding: 15px 20px;
}

.mobile-menu a {
  padding: 12px 0;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  color: #333;
  border-bottom: 1px solid #eee;
}

/* RESPONSIVE */
@media (max-width: 900px) {

  .nav {
    display: none;
  }

  .logo-text {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-call {
    margin-left: auto;
    margin-right: 10px;
  }
}

/* HERO SECTION */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero-slider,
.hero-slide {
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  filter: brightness(1.25) contrast(1.15) saturate(1.2);
}

.hero-slide.active {
  opacity: 1;
  z-index: 1;
}

/* LIGHT OVERLAY (NOT DULL) */
.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.18);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 24px;
}

.hero-content h1 {
  color: #fff;
  font-size: clamp(32px, 5vw, 60px);
  margin-bottom: 16px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.35);
}

.hero-content p {
  color: #fff;
  font-size: clamp(16px, 2vw, 22px);
  max-width: 850px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

/* ARROWS */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.4);
  border: none;
  color: #fff;
  font-size: 26px;
  padding: 12px 16px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 3;
  transition: background 0.3s ease;
}

.hero-arrow.prev { left: 24px; }
.hero-arrow.next { right: 24px; }

.hero-arrow:hover {
  background: rgba(0,0,0,0.6);
}

/* ===== OUR PROJECTS ===== */
.projects {
  padding: 70px 0;
  background: #f7f7f7;
}

.section-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 50px;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

/* Card */
.project-card {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
}

/* Image */
.project-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

/* Content */
.project-content {
  padding: 20px;
  text-align: center;
}

.project-content h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.project-content p {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
}

/* ===== TABLET ===== */
@media (max-width: 992px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===== MOBILE ===== */
@media (max-width: 576px) {
  .projects {
    padding: 50px 0;
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 26px;
  }

  .project-card img {
    height: 200px;
  }
}
/* ===== AIDS CAMPAIGN ===== */
.aids-campaign {
  padding: 70px 0;
  background: #ffffff;
}

.aids-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
}

/* Layout */
.aids-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 1100px;
  margin: auto;
}

/* Image */
.aids-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.aids-image img {
  width: 100%;
  max-width: 480px;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Content */
.aids-content {
  flex: 1;
}

.aids-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 20px;
}

.aids-btn {
  display: inline-block;
  padding: 10px 20px;
  background: #c62828;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-size: 14px;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .aids-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .aids-title {
    font-size: 26px;
  }

  .aids-image img {
    max-width: 100%;
  }
}
/* ===== SUPPORT OUR MISSION ===== */


.support {
  text-align: center;
  padding: 80px 16px;
  background: #fff;
}

.support h2 {
  font-size: 32px;
  margin-bottom: 24px;
}

.support-text {
  max-width: 720px;
  margin: 0 auto 48px;
  line-height: 1.7;
  color: #555;
}

/* FLEX LAYOUT */
.support-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

/* IMAGE */
.support-image img {
  width: 100%;
  max-width: 420px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* DONATION CARD */
.donation-card {
  max-width: 420px;
  padding: 32px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border-radius: 12px;
}

.donation-card h3 {
  margin-bottom: 12px;
}

.donate-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 28px;
  background: #f5a623;
  color: #000;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .support h2 {
    font-size: 26px;
  }

  .support-wrapper {
    flex-direction: column;
    gap: 32px;
  }

  .support-image img,
  .donation-card {
    max-width: 100%;
  }
}

/* ================= IMPACT SECTION ================= */
.impact-section {
  padding: 90px 0;
  background: #ffffff; /* white background */
}

.impact-title {
  text-align: center;
  font-size: 36px;
  font-weight: 600;
  color: #000602;
  margin-bottom: 10px;
}

.impact-subtitle {
  text-align: center;
  font-size: 16px;
  color: #666;
  margin-bottom: 60px;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.impact-box {
  background: rgba(255,255,255,0.15);
  padding: 40px 20px;
  border-radius: 12px;
  text-align: center;
}

.impact-box h3 {
  font-size: 44px;
  font-weight: 700;
  color: #ffcc80;
}

.impact-box p {
  font-size: 15px;
}

/* Responsive */
@media (max-width: 992px) {
  .impact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .impact-grid {
    grid-template-columns: 1fr;
  }
}


/* ===== Footer===== */

.footer {
  background: #222;
  color: #ddd;
  padding: 3rem 1.5rem 1rem;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
}

.footer h3, 
.footer h4 {
  color: #fff;
  margin-bottom: 1rem;
}

.footer p {
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #ddd;
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: #f4a623;
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid #444;
  font-size: 0.85rem;
}




/* ===============================
   PROJECTS HERO
================================ */
.projects-hero {
  height: 360px;
  background: url("projects-banner.jpeg") center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.projects-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

.projects-hero-overlay {
  position: relative;
  text-align: center;
  color: #fff;
  padding: 20px;
}

.projects-hero-overlay h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.projects-hero-overlay p {
  font-size: 18px;
  max-width: 700px;
}

/* ===============================
   PROJECTS MAIN SECTION
================================ */
.projects-main {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 20px;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* PROJECT CARD */
.projects-hero {
  height: 360px;
  background: url("bannerseed6.jpeg") center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.project-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.project-card h3 {
  margin: 18px 0 8px;
  color: #f5a623;
}

.project-card p {
  padding: 0 18px;
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.15);
}

/* BUTTON */
.project-btn {
  display: inline-block;
  margin: 20px 0 25px;
  padding: 10px 22px;
  background: #f5a623;
  color: #000;
  text-decoration: none;
  font-weight: 600;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.project-btn:hover {
  background: #e0941d;
  transform: scale(1.05);
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 992px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .projects-grid {
    grid-template-columns: 1fr;
  }

  .projects-hero {
    height: 280px;
  }

  .projects-hero-overlay h1 {
    font-size: 30px;
  }
}

/* ===============================
   EDUCATION HERO
================================ */
.education-hero {
  height: 360px;
  background: url("bannerseed5.jpeg") center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.education-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

.education-hero-overlay {
  position: relative;
  text-align: center;
  color: #fff;
  padding: 20px;
}

.education-hero-overlay h1 {
  font-size: 42px;
}

.education-hero-overlay p {
  font-size: 18px;
}

/* INTRO */
.education-intro {
  max-width: 900px;
  margin: 70px auto;
  padding: 0 20px;
  text-align: center;
}

.education-intro h2 {
  margin-bottom: 15px;
}

.education-intro p {
  font-size: 17px;
  line-height: 1.7;
  color: #555;
}

/* PROGRAMS */
.education-programs {
  background: #f9f9f9;
  padding: 80px 20px;
}

.education-programs h2 {
  text-align: center;
  margin-bottom: 50px;
}

.program-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.program-card {
  background: #fff;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.program-card h3 {
  color: #f5a623;
  margin-bottom: 8px;
}

.program-dept {
  display: block;
  font-size: 14px;
  color: #777;
  margin-bottom: 4px;
}

.program-years {
  display: block;
  font-weight: 600;
  margin-bottom: 12px;
}

.program-card p {
  font-size: 15px;
  line-height: 1.6;
}

/* ONGOING */
.program-card.ongoing {
  border-left: 6px solid #28a745;
}

/* IMPACT */
.education-impact {
  max-width: 900px;
  margin: 80px auto;
  padding: 0 20px;
  text-align: center;
}

.education-impact ul {
  list-style: none;
  padding: 0;
}

.education-impact li {
  font-size: 16px;
  padding: 10px 0;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .program-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .program-grid {
    grid-template-columns: 1fr;
  }

  .education-hero {
    height: 280px;
  }

  .education-hero-overlay h1 {
    font-size: 30px;
  }
}
/* ===============================
   EXPLORE GALLERY TAB
================================ */
.explore-gallery {
  margin: 80px auto;
  max-width: 1100px;
  padding: 0 20px;
}

.explore-content {
  background: linear-gradient(135deg, #f5a623, #f7b94a);
  border-radius: 14px;
  padding: 35px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.explore-content h3 {
  font-size: 24px;
  margin-bottom: 8px;
  color: #000;
}

.explore-content p {
  font-size: 15px;
  color: #222;
  max-width: 520px;
}

/* BUTTON */
.explore-btn {
  background: #000;
  color: #fff;
  padding: 14px 26px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.explore-btn:hover {
  background: #222;
  transform: translateY(-2px);
}

/* MOBILE */
@media (max-width: 768px) {
  .explore-content {
    flex-direction: column;
    text-align: center;
  }

  .explore-btn {
    margin-top: 15px;
  }
}

/* ===============================
   HEALTH HERO
================================ */
.health-hero {
  height: 360px;
  background: url("bannerseed2.jpeg") center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.health-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

.health-hero-overlay {
  position: relative;
  text-align: center;
  color: #fff;
  padding: 20px;
}

.health-hero-overlay h1 {
  font-size: 42px;
}

.health-hero-overlay p {
  font-size: 18px;
}

/* INTRO */
.health-intro {
  max-width: 900px;
  margin: 70px auto;
  padding: 0 20px;
  text-align: center;
}

.health-intro h2 {
  margin-bottom: 15px;
}

.health-intro p {
  font-size: 17px;
  line-height: 1.7;
  color: #555;
}

/* PROGRAMS */
.health-programs {
  background: #f9f9f9;
  padding: 80px 20px;
}

.health-programs h2 {
  text-align: center;
  margin-bottom: 50px;
}

/* IMPACT */
.health-impact {
  max-width: 900px;
  margin: 80px auto;
  padding: 0 20px;
  text-align: center;
}

.health-impact ul {
  list-style: none;
  padding: 0;
}

.health-impact li {
  font-size: 16px;
  padding: 10px 0;
}

/* RESPONSIVE */
@media (max-width: 576px) {
  .health-hero {
    height: 280px;
  }

  .health-hero-overlay h1 {
    font-size: 30px;
  }
}
/* ===============================
   WOMEN EMPOWERMENT HERO
================================ */
.women-hero {
  height: 360px;
  background: url("bannerseed1.jpeg") center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.women-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

.women-hero-overlay {
  position: relative;
  text-align: center;
  color: #fff;
  padding: 20px;
}

.women-hero-overlay h1 {
  font-size: 42px;
}

.women-hero-overlay p {
  font-size: 18px;
}

/* INTRO */
.women-intro {
  max-width: 900px;
  margin: 70px auto;
  padding: 0 20px;
  text-align: center;
}

.women-intro h2 {
  margin-bottom: 15px;
}

.women-intro p {
  font-size: 17px;
  line-height: 1.7;
  color: #555;
}

/* PROGRAMS */
.women-programs {
  background: #f9f9f9;
  padding: 80px 20px;
}

.women-programs h2 {
  text-align: center;
  margin-bottom: 50px;
}

/* IMPACT */
.women-impact {
  max-width: 900px;
  margin: 80px auto;
  padding: 0 20px;
  text-align: center;
}

.women-impact ul {
  list-style: none;
  padding: 0;
}

.women-impact li {
  font-size: 16px;
  padding: 10px 0;
}

/* RESPONSIVE */
@media (max-width: 576px) {
  .women-hero {
    height: 280px;
  }

  .women-hero-overlay h1 {
    font-size: 30px;
  }
}


/* ===== GLOBAL ===== */
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #fff;
  color: #333;
}

/* ===== HERO ===== */
.activities-hero {
  height: 360px;
  background: url("Activities\ Banner.jpg") center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.activities-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}

.hero-overlay {
  position: relative;
  text-align: center;
  color: #fff;
  padding: 20px;
}

.hero-overlay h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.hero-overlay p {
  font-size: 18px;
  opacity: 0.95;
}

/* ===== INTRO ===== */
.activities-intro {
  max-width: 900px;
  margin: 50px auto;
  padding: 0 20px;
  text-align: center;
  font-size: 17px;
  line-height: 1.7;
}

/* ===== GRID ===== */
.activities-grid {
  max-width: 1200px;
  margin: 0 auto 70px;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.activity-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.activity-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

.activity-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.activity-content {
  padding: 20px;
}

.activity-content h3 {
  margin-bottom: 10px;
}

.activity-content p {
  font-size: 14.5px;
  line-height: 1.6;
  margin-bottom: 12px;
}
/* ===== RECENT PROGRAMMES ===== */
.recent-programmes {
  background: #f9f9f9;
  padding: 70px 20px;
  text-align: center;
}

.recent-programmes h2 {
  margin-bottom: 10px;
}

.section-subtext {
  color: #666;
  margin-bottom: 40px;
}

.programme-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.programme-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.programme-card:hover {
  transform: translateY(-6px);
}

.programme-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.programme-content {
  padding: 20px;
  text-align: left;
}

.programme-content .date {
  font-size: 13px;
  color: #999;
}

.programme-content h3 {
  margin: 8px 0;
  font-size: 18px;
}

.programme-content p {
  font-size: 14.5px;
  line-height: 1.6;
}

.programme-content a {
  display: inline-block;
  margin-top: 12px;
  color: #f5a623;
  font-weight: 600;
  text-decoration: none;
}

.programme-content a:hover {
  text-decoration: underline;
}

/* MOBILE */
@media (max-width: 900px) {
  .programme-grid {
    grid-template-columns: 1fr;
  }
}

/* TAGS */
.tag {
  display: inline-block;
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 20px;
  color: #fff;
}

.education { background: #4a90e2; }
.health { background: #e94e4e; }
.women { background: #9b59b6; }
.community { background: #27ae60; }

/* ===== IMPACT ===== */
.impact-section {
  background: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
}

.impact-section h2 {
  margin-bottom: 40px;
}

.impact-grid {
  max-width: 1000px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.impact-box {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.impact-box h3 {
  color: #f5a623;
  margin-bottom: 10px;
}

/* ===== CTA ===== */
.activities-cta {
  text-align: center;
  padding: 70px 20px;
}

.activities-cta h2 {
  margin-bottom: 10px;
}

.activities-cta p {
  margin-bottom: 25px;
}

.cta-btn {
  background: #f5a623;
  color: #000;
  padding: 14px 26px;
  text-decoration: none;
  font-weight: 600;
  border-radius: 8px;
}

.cta-btn:hover {
  background: #e0941d;
}

/* ===== MOBILE ===== */
@media (max-width: 900px) {
  .activities-grid {
    grid-template-columns: 1fr;
  }

  .impact-grid {
    grid-template-columns: 1fr;
  }

  .hero-overlay h1 {
    font-size: 30px;
  }
}




/* CONTACT HERO SECTION */
.contact-hero {
  width: 100%;
  min-height: 50vh;
  background-image: url("Contact.png");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
}

/* TEXT CONTAINER — FINAL POSITION */
.contact-hero-overlay {
  max-width: 1200px;
  width: 100%;
  padding-left: 80px;
  padding-right: 20px;

  color: #fff;
  text-align: left;

  /* animation */
  animation: slideInStable 0.9s ease-out forwards;
}

/* STABLE SLIDE-IN (NO TRANSFORM) */
@keyframes slideInStable {
  from {
    opacity: 0;
    margin-left: 80px;   /* comes from right */
  }
  to {
    opacity: 1;
    margin-left: 0;      /* LOCKED position */
  }
}

/* HEADING */
.contact-hero-overlay h1 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 8px;
  text-shadow: 0 4px 10px rgba(0,0,0,0.6);
}

/* PARAGRAPH */
.contact-hero-overlay p {
  font-size: 15px;
  line-height: 1.5;
  text-shadow: 0 3px 8px rgba(0,0,0,0.5);
}

/* MOBILE */
@media (max-width: 768px) {
  .contact-hero {
    min-height: 35vh;
  }

  .contact-hero-overlay {
    padding-left: 20px;
    padding-right: 20px;
    text-align: center;
    animation: none;
  }

  .contact-hero-overlay h1 {
    font-size: 26px;
  }

  .contact-hero-overlay p {
    font-size: 14px;
  }
}

/* ===== ABOUT HERO ===== */
.about-hero {
  height: 320px;
  background: url("about-hero.jpg") center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

.about-hero-overlay {
  position: relative;
  color: #fff;
  text-align: center;
  padding: 20px;
}

.about-hero-overlay h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

/* ===== ABOUT SECTION ===== */
.about-section {
  padding: 70px 20px;
}

.about-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

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

.about-text p {
  line-height: 1.7;
  margin-bottom: 15px;
}

.about-image img {
  width: 100%;
  border-radius: 12px;
}

/* ===== FOUNDER SECTION ===== */
.founder-section {
  padding: 70px 20px;
  background: #fff;
}

.founder-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: center;
}

.founder-image img {
  width: 100%;
  max-width: 320px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.founder-content h2 {
  margin-bottom: 6px;
}

.founder-content h3 {
  color: #f5a623;
  margin-bottom: 15px;
}

.founder-content p {
  line-height: 1.7;
  margin-bottom: 14px;
}

.founder-quote {
  font-style: italic;
  background: #f9f9f9;
  padding: 15px 20px;
  border-left: 4px solid #f5a623;
  border-radius: 6px;
}

/* ===== MOBILE ===== */
@media (max-width: 900px) {
  .founder-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .founder-image img {
    margin: auto;
  }
}


/* ===== VISION & MISSION ===== */
.vm-section {
  background: #f9f9f9;
  padding: 70px 20px;
}

.vm-container {
  max-width: 1000px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.vm-card {
  background: #fff;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.vm-card h3 {
  margin-bottom: 10px;
  color: #f5a623;
}

/* ===== CORE VALUES ===== */
.values-section {
  padding: 70px 20px;
  text-align: center;
}

.values-grid {
  max-width: 900px;
  margin: 40px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.value-card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

/* ===== JOURNEY ===== */
.journey-section {
  background: #f5f5f5;
  padding: 70px 20px;
}

.journey-container {
  max-width: 800px;
  margin: auto;
  text-align: center;
}

.journey-container p {
  margin-top: 15px;
  line-height: 1.7;
}

/* ===== EXPLORE PROGRAMS ===== */
.explore-programs {
  padding: 70px 20px;
  text-align: center;
}

.explore-btn {
  display: inline-block;
  margin-top: 20px;
  background: #f5a623;
  color: #000;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
}

.explore-btn:hover {
  background: #e0941d;
}

/* ===== MOBILE ===== */
@media (max-width: 900px) {
  .about-container,
  .vm-container {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-hero-overlay h1 {
    font-size: 30px;
  }
}


/* ===============================
   CONTACT MAIN SECTION
================================ */
.contact-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* ===============================
   CONTACT INFO CARDS
================================ */
.contact-info {
  display: grid;
  gap: 20px;
}

.info-card {
  background: #ffffff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.info-card h3 {
  margin-bottom: 10px;
  color: #f5a623;
  font-size: 18px;
}

.info-card p,
.info-card a {
  font-size: 15px;
  color: #333;
  text-decoration: none;
  line-height: 1.6;
  font-weight: 500;
}

.info-card a:hover {
  color: #f5a623;
}

/* ===============================
   CONTACT FORM
================================ */
.contact-form {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.contact-form h2 {
  margin-bottom: 20px;
  font-size: 22px;
  font-weight: 700;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px 14px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 15px;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #f5a623;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

/* Submit Button */
.contact-form button {
  background: #f5a623;
  color: #000;
  padding: 14px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.contact-form button:hover {
  background: #e0941d;
  transform: translateY(-2px);
}

/* ===============================
   MAP SECTION
================================ */
.map-section iframe {
  width: 100%;
  height: 350px;
  border: none;
  border-radius: 12px;
  margin-top: 50px;
}

/* ===============================
   MOBILE RESPONSIVE
================================ */
@media (max-width: 768px) {
  .contact-hero {
    height: 200px;
  }

  .contact-hero-overlay h1 {
    font-size: 24px;
  }

  .contact-hero-overlay p {
    font-size: 14px;
  }

  .contact-section {
    grid-template-columns: 1fr;
    margin: 40px auto;
  }

  .contact-form {
    padding: 22px;
  }
}


/* ===== ACHIEVEMENTS HERO ===== */

.achievements-hero {
  width: 100%;
  height: 60vh;
  position: relative; /* parent for absolute positioning */
  background-image: url("Achievements.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden; /* hides text before animation */
}

/* HERO CONTENT */
.hero-content {
  position: absolute;
  top: 55%;              /* slightly lower than vertical center */
  left: 50%;
  transform: translate(-50%, -50%); /* center horizontally & relative vertical */
  
  max-width: 900px;
  width: 90%;
  text-align: center;
  color: #000;

  animation: slideFromRight 1s ease-out forwards;
}

/* HEADING */
.hero-content h1 {
  font-size: 48px;
  font-weight: 700;
  position: relative;
  top: 40px; /* moves heading slightly down */
  margin-bottom: 10px;
}

/* SUBTEXT */
.hero-content p {
  font-size: 18px;
  line-height: 1.6;
  margin: 0;
  position: relative;
  top: 30px; /* moves subtext slightly down */
}

/* SLIDE FROM RIGHT ANIMATION */
@keyframes slideFromRight {
  0% {
    opacity: 0;
    transform: translate(100%, -50%); /* start offscreen right */
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%); /* final centered position */
  }
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .achievements-hero { height: 50vh; }
  .hero-content h1 { font-size: 36px; top: 8px; }
  .hero-content p { font-size: 16px; top: 12px; }
}

@media (max-width: 576px) {
  .achievements-hero { height: 38vh; }
  .hero-content h1 { font-size: 26px; top: 5px; }
  .hero-content p { font-size: 14px; top: 8px; }
}


/* CERTIFICATES SECTION */
.certificates-section {
  padding: 60px 20px;
  text-align: center;
  background-color: #f9f9f9; /* subtle background */
}

.certificates-section h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
}

.certificates-section p {
  font-size: 16px;
  margin-bottom: 40px;
  color: #555;
}

/* GRID LAYOUT - Horizontal & Responsive */
.certificates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  justify-items: center; /* centers cards horizontally */
  align-items: start;
}

/* INDIVIDUAL CERTIFICATE CARD */
.certificate-card {
  background: #fff;
  padding: 15px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  max-width: 250px; /* keeps cards uniform */
}

.certificate-card img {
  max-width: 100%;
  border-radius: 8px;
  margin-bottom: 10px;
}

.certificate-card p {
  font-size: 14px;
  font-weight: 500;
  color: #333;
}

/* HOVER EFFECT */
.certificate-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* RESPONSIVE ADJUSTMENTS */
@media (max-width: 992px) {
  .certificates-section h2 {
    font-size: 30px;
  }
  .certificates-section p {
    font-size: 15px;
    margin-bottom: 30px;
  }
  .certificate-card {
    max-width: 220px;
  }
}

@media (max-width: 576px) {
  .certificates-section h2 {
    font-size: 26px;
  }
  .certificates-section p {
    font-size: 14px;
    margin-bottom: 25px;
  }
  .certificate-card {
    max-width: 180px;
  }
}
/* GALLERY HERO */

.gallery-hero {
  width: 100%;
  height: 60vh;
  background-image: url("gallery\ banner.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;
  color: #ffffff;
  overflow: hidden;
}

/* HERO CONTENT */

.gallery-hero {
  position: relative;
  width: 100%;
  height: 60vh;

  background-image: url("banner\ gallery1.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  overflow: hidden;
}


/* RESPONSIVE */
@media (max-width: 992px) {
  .gallery-hero {
    height: 50vh;
  }

  .gallery-hero-text h1 {
    font-size: 36px;
  }

  .gallery-hero-text p {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .gallery-hero {
    height: 38vh;
  }

  .gallery-hero-text h1 {
    font-size: 26px;
  }

  .gallery-hero-text p {
    font-size: 14px;
  }
}



/* EACH CATEGORY */
.gallery-category {
  margin-bottom: 80px;
  text-align: center;
}

.gallery-category h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
}

.gallery-category p {
  font-size: 16px;
  color: #555;
  margin-bottom: 40px;
}

/* GRID LAYOUT FOR IMAGES */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  justify-items: center;
  align-items: center;
}

/* INDIVIDUAL IMAGE CARD */
.gallery-item {
  width: 100%;
  max-width: 300px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

/* HOVER EFFECT */
.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .gallery-category h2 {
    font-size: 30px;
  }
  .gallery-category p {
    font-size: 15px;
    margin-bottom: 30px;
  }
  .gallery-item {
    max-width: 220px;
  }
}

@media (max-width: 576px) {
  .gallery-category h2 {
    font-size: 26px;
  }
  .gallery-category p {
    font-size: 14px;
    margin-bottom: 25px;
  }
  .gallery-item {
    max-width: 180px;
  }
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
}

