/* =========================
   GLOBAL STYLES
========================= */
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: Arial, sans-serif;
  scroll-behavior: smooth;
  
}

 body {
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* 🔥 stops horizontal scroll */
}

h1, h2, h3, h4 {
  margin: 0;
}

section {
  padding: 80px 20px;
}

/* =========================
   HERO SLIDESHOW ANIMATION
========================= */

.hero-slideshow {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.slide-item {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 1;
}

/* Active Slide */
.slide-item.active {
  opacity: 1;
  z-index: 2;
}

/* Image animation from RIGHT */
.slide-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateX(100%);
  transition: transform 1.5s ease-in-out;
}

.slide-item.active img {
  transform: translateX(0);
}

/* Text animation from LEFT */
.slide-content {
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(-50%) translateX(-100px);
  max-width: 600px;
  color: white;
  background: rgba(0,0,0,0.45);
  padding: 30px;
  border-radius: 12px;
  opacity: 0;
  transition: all 1.5s ease-in-out;
  z-index: 3;
}

.slide-item.active .slide-content {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.slide-content h1 {
  font-size: 42px;
  margin-bottom: 20px;
}

.slide-content p {
  font-size: 18px;
  line-height: 1.7;
}

/* HERO IMAGE FROM BOTTOM ON LOAD */
.slide-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  transform: translateY(100%);
  opacity: 0;

  animation: slideUpImage 1.5s ease forwards;
}

@keyframes slideUpImage {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}




/* =========================
   FIXED NAVBAR WITH TOP ANIMATION
========================= */

.fixed-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  animation: slideDown 1s ease forwards;
}

/* Navbar layout */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 40px;   /* reduced spacing */
  max-width: 1200px;
  margin: auto;         /* centers navbar */
}

/* Logo */
.logo img {
  height: 70px;
  width: auto;
  display: block;
}

/* Menu */
.navbar ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 25px;           /* reduced gap */
  margin: 0;
  padding: 0;
  flex-wrap: nowrap;
}

/* Links */
.navbar ul li a {
  text-decoration: none;
  color: #222;
  font-size: 15px;     /* slightly smaller */
  font-weight: 600;
  transition: 0.3s ease;
  position: relative;
  white-space: nowrap; /* prevents breaking like Contact Us */
}

/* Hover = Light Blue */
.navbar ul li a:hover {
  color: #66b3ff;
}

/* Underline Hover Effect */
.navbar ul li a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  left: 0;
  bottom: -6px;
  background: #66b3ff;
  transition: 0.3s ease;
}

.navbar ul li a:hover::after {
  width: 100%;
}

/* Slide from top animation */
@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Prevent content hiding behind navbar */
body {
  margin: 0;
  padding-top: 0;
}

/* SCROLL ANIMATION BASE */
.animate-right {
  opacity: 0;
  transform: translateX(100px);
  transition: all 1s ease;
}

/* When visible */
.animate-right.show {
  opacity: 1;
  transform: translateX(0);
}

/* =========================
   VISION, MISSION & CORE VALUES SECTION
========================= */

.vision-mission {
  padding: 70px 40px;
  background: #f7f9fc;
}

.vm-container {
  max-width: 1400px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
  align-items: flex-start;
}

/* Cards */
.vm-card {
  background: white;
  width: 420px;        /* wider */
  min-height: 250px;   /* shorter height */
  padding: 20px 25px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
  text-align: left;
}

.vm-card:hover {
  transform: translateY(-5px);
}

/* Headings */
.vm-card h2 {
  color: #66b3ff; /* Light Blue */
  font-size: 24px;
  margin-bottom: 15px;
  font-weight: bold;
  text-align: center;
}

/* Paragraphs */
.vm-card p {
  color: #333;
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 8px;
}

/* Strong text */
.vm-card p strong {
  color: #000;
}

/* Core Values Card - wider and shorter */
.vm-card:last-child {
  width: 900px;      /* makes it rectangular */
  min-height: auto;
  padding: 20px 30px;
}

/* Responsive */
@media (max-width: 768px) {
  .vm-card,
  .vm-card:last-child {
    width: 100%;
  }

  .vm-card h2 {
    font-size: 22px;
  }
}

/* =========================
   FOOTER SECTION
========================= */

.footer {
  background: #0d1b2a;
  color: white;
  padding: 60px 40px 20px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.footer-box {
  flex: 1;
  min-width: 250px;
}

.footer-box h2,
.footer-box h3 {
  color: #66b3ff; /* Light Blue */
  margin-bottom: 20px;
}

.footer-box p {
  line-height: 1.7;
  font-size: 15px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links li a {
  color: white;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links li a:hover {
  color: #66b3ff;
}

.social-icons {
  display: flex;
  gap: 18px;
  margin-top: 15px;
}

.social-icons a {
  width: 45px;
  height: 45px;
  background: rgba(255,255,255,0.08);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: white;
  font-size: 18px;
  text-decoration: none;
  transition: 0.3s ease;
}

.social-icons a:hover {
  background: #66b3ff;
  transform: translateY(-5px);
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 40px;
  padding-top: 20px;
  font-size: 14px;
}

/* =========================
   FOCUS CARDS WITH COVER IMAGE + INNER IMAGE SLIDER
========================= */

.focus-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 50px;
}

.focus-card {
  width: 340px;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.focus-card:hover {
  transform: translateY(-8px);
}

/* First Image = Cover Image */
.focus-card > img:first-child {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
}

/* Inner slider container */
.inner-slider {
  position: relative;
  width: 100%;
  height: 180px;
  overflow: hidden;
  margin-top: 10px;
}

/* Slider images */
.inner-slider img {
  position: absolute;
  width: 100%;
  height: 180px;
  object-fit: cover;
  opacity: 0;
  transform: translateX(100%);
  transition: all 1s ease-in-out;
}

/* Active image animation */
.inner-slider img.active {
  opacity: 1;
  transform: translateX(0);
}

.focus-content {
  padding: 25px;
}

.focus-content h3 {
  color: #66b3ff;
  font-size: 22px;
  margin-bottom: 15px;
}

.focus-content p {
  font-size: 15px;
  line-height: 1.7;
  color: #333;
}

/* =========================
   ABOUT US PAGE
========================= */

.about-page {
  padding: 140px 40px 80px;
  background: #f7f9fc;
}

.about-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

/* Main Heading */
.about-container h1 {
  font-size: 42px;
  color: #66b3ff; /* Light Blue */
  margin-bottom: 30px;
  line-height: 1.4;
}

/* Paragraphs */
.about-container p {
  font-size: 17px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 20px;
}

/* Cards Container */
.about-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 60px;
}

/* Individual Cards */
.about-card {
  background: white;
  width: 350px;
  min-height: 250px;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: 0.3s ease;
  text-align: left;
}

.about-card:hover {
  transform: translateY(-8px);
}

/* Card Headings */
.about-card h2 {
  color: #66b3ff; /* Light Blue */
  font-size: 26px;
  margin-bottom: 20px;
  text-align: center;
}

/* Card Paragraphs */
.about-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 12px;
}

/* Full Width Identity Card */
.full-width {
  width: 800px;
  min-height: auto;
}
 
/* =========================
   VISION, MISSION & VALUES
========================= */

.vision-mission {
  padding: 80px 40px;
  background: #ffffff;
}

.vm-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.vm-card {
  flex: 1;
  min-width: 320px;
  max-width: 380px;
  background: #f7f9fc;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.vm-card:hover {
  transform: translateY(-8px);
}

.vm-card h2 {
  color: #66b3ff;
  margin-bottom: 20px;
  text-align: center;
  font-size: 28px;
}

.vm-card p {
  color: #444;
  line-height: 1.8;
  font-size: 16px;
  margin-bottom: 12px;
}
/* Responsive */
@media (max-width: 768px) {
  .about-card,
  .full-width {
    width: 100%;
  }

  .about-container h1 {
    font-size: 32px;
  }

  .about-card h2 {
    font-size: 22px;
  }
}

/* =========================
   FOCUS PAGE CARDS
========================= */
.focus-title {
  text-align: center;
  font-size: 42px;
  color: #66b3ff;
  margin-bottom: 10px;
}

.focus-subtitle {
  text-align: center;
  font-size: 24px;
  color: #444;
  margin-bottom: 40px;
}

.focus-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 50px;
}


.focus-card {
  width: 350px;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

/* center last card */
.focus-card:nth-child(4) {
  margin: 0 auto;
}

.focus-card:hover {
  transform: translateY(-8px);
}

/* IMAGE SLIDER ONLY */
.inner-slider {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
}

/* All Images Inside Slider */
.inner-slider img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 250px;
  object-fit: cover;
  opacity: 0;
  transform: translateX(100%);
  transition: all 1s ease-in-out;
}

/* Active Image Animation */
.inner-slider img.active {
  opacity: 1;
  transform: translateX(0);
}

/* Card Content */
.focus-content {
  padding: 25px;
}

.focus-content h3 {
  color: #66b3ff;
  font-size: 22px;
  margin-bottom: 15px;
}

.focus-content p {
  font-size: 15px;
  line-height: 1.7;
  color: #333;
}

.focus-list {
  margin: 15px 0 20px 25px;
  padding-left: 20px;
}

.focus-list li {
  margin-bottom: 10px;
  line-height: 1.8;
  color: #444;
}
/* Mobile Responsive */
@media (max-width: 992px) {
  .focus-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .focus-cards {
    grid-template-columns: 1fr;
  }
}

/* =========================
   OUR IDENTITY SECTION
========================= */

.identity-section {
  max-width: 1200px;
  margin: 70px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding: 20px;
}

/* Left Image */
.identity-image {
  flex: 1;
}

.identity-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  object-fit: cover;
}

/* Right Content */
.identity-content {
  flex: 1;
  text-align: left;
}

.identity-content h2 {
  color: #66b3ff; /* Light Blue */
  font-size: 32px;
  margin-bottom: 20px;
  line-height: 1.4;
}

.identity-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 18px;
}

/* Responsive */
@media (max-width: 768px) {
  .identity-section {
    flex-direction: column;
    text-align: center;
  }

  .identity-content {
    text-align: center;
  }

  .identity-content h2 {
    font-size: 28px;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .focus-card {
    width: 100%;
  }
}
/* Responsive */
@media (max-width: 768px) {
  .focus-card {
    width: 100%;
  }
}

/* =========================
   DONATE PAGE SECTIONS
========================= */

.donate-page {
  padding: 140px 40px 80px;
  background: #f7f9fc;
}

.donate-container {
  max-width: 1200px;
  margin: auto;
}

/* Main Heading */
.donate-container h1 {
  text-align: center;
  font-size: 42px;
  color: #66b3ff;
  margin-bottom: 25px;
  line-height: 1.4;
}

/* Intro Paragraph */
.donate-intro {
  text-align: center;
  font-size: 18px;
  line-height: 1.8;
  color: #444;
  max-width: 900px;
  margin: 0 auto 60px;
}

/* Donate Sections (replace cards) */
.donate-card {
  background: #ffffff;
  padding: 40px;
  margin-bottom: 35px;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

/* Icons */
.donate-card i {
  font-size: 42px;
  color: #66b3ff;
  margin-bottom: 20px;
  display: block;
  text-align: center;
}

/* H2 Centered Properly */
.donate-card h2 {
  font-size: 30px;
  color: #66b3ff;
  margin-bottom: 25px;
  line-height: 1.4;
  text-align: center;
}

/* Paragraphs */
.donate-card p {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 18px;
}

/* Why Support List */
.donate-list {
  margin-top: 20px;
  padding-left: 30px;
}

.donate-list li {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 12px;
}

/* Donate Button */
.donate-button {
  text-align: center;
  margin-top: 50px;
}

.donate-btn {
  display: inline-block;
  background: #66b3ff;
  color: white;
  text-decoration: none;
  padding: 16px 40px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 8px;
  transition: 0.3s ease;
}

.donate-btn:hover {
  background: #4da6ff;
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
  .donate-page {
    padding: 120px 20px 60px;
  }

  .donate-container h1 {
    font-size: 32px;
  }

  .donate-card {
    padding: 25px;
  }

  .donate-card h2 {
    font-size: 24px;
  }

  .donate-intro {
    font-size: 16px;
  }
}
.animate {
  opacity: 0;
  transition: all 0.8s ease-out;
  will-change: transform, opacity;
}

.animate.show {
  opacity: 1;
}

.from-top {
  transform: translateY(-60px);
}

.from-top.show {
  transform: translateY(0);
}

.from-right {
  transform: translateX(60px);
}

.from-right.show {
  transform: translateX(0);
}

.from-bottom {
  transform: translateY(60px);
}

.from-bottom.show {
  transform: translateY(0);
}

.from-left {
  transform: translateX(-40px);
}

.from-left.show {
  transform: translateX(0);
}

.donate-card,
.donate-button,
.donate-container h1,
.donate-intro {
  will-change: transform, opacity;
}

.animate.show {
  transition-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
}



/* =========================
   NEWS PAGE
========================= */

.news-page {
  padding: 140px 40px 80px;
  background: #f7f9fc;
}

.news-container {
  max-width: 1200px;
  margin: auto;
}

.news-container h1 {
  text-align: center;
  font-size: 42px;
  color: #66b3ff;
  margin-bottom: 20px;
}

.news-intro {
  text-align: center;
  font-size: 18px;
  color: #444;
  line-height: 1.8;
  max-width: 850px;
  margin: 0 auto 60px;
}

.news-cards {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.news-card {
  display: flex;
  flex-wrap: wrap;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.news-image {
  flex: 1 1 350px;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.news-content {
  flex: 1 1 500px;
  padding: 35px;
}

.news-content h2 {
  color: #66b3ff;
  font-size: 28px;
  margin-bottom: 20px;
  line-height: 1.5;
}

.news-content p {
  font-size: 16px;
  color: #333;
  line-height: 1.8;
  margin-bottom: 18px;
}

/* =========================
   ANIMATIONS
========================= */

.animate {
  opacity: 0;
  transition: all 1s ease;
}

.from-top {
  transform: translateY(-80px);
}

.from-right {
  transform: translateX(80px);
}

.from-bottom {
  transform: translateY(80px);
}

.show {
  opacity: 1;
  transform: translate(0,0);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {

  .news-page {
    padding: 120px 20px 60px;
  }

  .news-container h1 {
    font-size: 32px;
  }

  .news-content {
    padding: 25px;
  }

  .news-content h2 {
    font-size: 22px;
  }

  .news-intro {
    font-size: 16px;
  }
}

/* =========================
   RESOURCES PAGE
========================= */

.resources-page {
  padding: 140px 40px 80px;
  background: #f7f9fc;
}

.resources-container {
  max-width: 1200px;
  margin: auto;
}

.resources-container h1 {
  text-align: center;
  font-size: 42px;
  color: #0a78e5;
  margin-bottom: 25px;
}

.resources-intro {
  text-align: center;
  max-width: 900px;
  margin: auto;
  font-size: 18px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 60px;
}

/* Resource Cards */

.resource-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.resource-card {
  width: 340px;
  background: white;
  padding: 35px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.resource-card:hover {
  transform: translateY(-8px);
}

.resource-card i {
  font-size: 50px;
  color: #66b3ff;
  margin-bottom: 20px;
}

.resource-card h2 {
  color: #66b3ff;
  margin-bottom: 18px;
}

.resource-card p {
  color: #333;
  line-height: 1.8;
}

/* DOCUMENT SECTION */

.document-section {
  margin-top: 80px;
}

.document-section h2 {
  text-align: center;
  font-size: 36px;
  color: #66b3ff;
  margin-bottom: 40px;
}

.document-card {
  background: white;
  padding: 40px;
  border-radius: 14px;
  display: flex;
  gap: 30px;
  align-items: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.document-card i {
  font-size: 70px;
  color: #66b3ff;
}

.document-content h3 {
  color: #66b3ff;
  margin-bottom: 15px;
}

.document-content p {
  line-height: 1.8;
  color: #333;
  margin-bottom: 20px;
}

.download-btn {
  display: inline-block;
  padding: 14px 30px;
  background: #66b3ff;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  transition: 0.3s ease;
}

.download-btn:hover {
  background: #4da6ff;
  transform: translateY(-3px);
}

/* =========================
   ANIMATIONS
========================= */

.animate {
  opacity: 0;
  transition: all 1s ease;
}

.from-top {
  transform: translateY(-80px);
}

.from-right {
  transform: translateX(80px);
}

.from-bottom {
  transform: translateY(80px);
}

.show {
  opacity: 1;
  transform: translate(0,0);
}

/* MOBILE */

@media (max-width: 768px) {

  .resources-page {
    padding: 120px 20px 60px;
  }

  .resources-container h1 {
    font-size: 32px;
  }

  .resource-card {
    width: 100%;
  }

  .document-card {
    flex-direction: column;
    text-align: center;
  }
}

/* =========================
   CONTACT PAGE
========================= */

.contact-page {
  padding: 140px 40px 80px;
  background: #f7f9fc;
}

.contact-container {
  max-width: 1200px;
  margin: auto;
}

.contact-container h1 {
  text-align: center;
  font-size: 42px;
  color: #66b3ff;
  margin-bottom: 15px;
}

.contact-intro {
  text-align: center;
  font-size: 18px;
  color: #444;
  margin-bottom: 60px;
}

.contact-wrapper {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

/* LEFT SIDE */

.contact-info {
  flex: 1;
  min-width: 300px;
  background: white;
  padding: 40px;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.contact-info h2 {
  color: #66b3ff;
  margin-bottom: 30px;
}

.info-box {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
  align-items: center;
}

.info-box i {
  font-size: 22px;
  color: #66b3ff;
}

.info-box p {
  color: #333;
  line-height: 1.7;
}

/* RIGHT SIDE */

.contact-form {
  flex: 1;
  min-width: 300px;
  background: white;
  padding: 40px;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form input,
.contact-form textarea {
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 15px;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #66b3ff;
}

.checkbox {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.checkbox label {
  font-size: 14px;
  color: #444;
}

.captcha-box label {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
}

.captcha-row {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-bottom: 15px;
}

.captcha-row span {
  background: #eee;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: bold;
  letter-spacing: 3px;
}

.captcha-row button {
  padding: 10px 18px;
  border: none;
  background: #66b3ff;
  color: white;
  border-radius: 6px;
  cursor: pointer;
}

.submit-btn {
  background: #66b3ff;
  color: white;
  padding: 16px;
  border: none;
  border-radius: 8px;
  font-size: 17px;
  cursor: pointer;
  transition: 0.3s ease;
}

.submit-btn:hover {
  background: #4da6ff;
  transform: translateY(-3px);
}

/* MAP */

.map-section {
  margin-top: 70px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

/* =========================
   ANIMATIONS
========================= */

.animate {
  opacity: 0;
  transition: all 1s ease;
}

.from-top {
  transform: translateY(-80px);
}

.from-right {
  transform: translateX(80px);
}

.from-left {
  transform: translateX(-80px);
}

.from-bottom {
  transform: translateY(80px);
}

.show {
  opacity: 1;
  transform: translate(0,0);
}

/* MOBILE */

@media (max-width: 768px) {

  .contact-page {
    padding: 120px 20px 60px;
  }

  .contact-container h1 {
    font-size: 32px;
  }

  .contact-wrapper {
    flex-direction: column;
  }
}

/* =========================
   GALLERY PAGE
========================= */

.gallery-page {
  padding: 140px 40px 80px;
  background: #f7f9fc;
}

.gallery-container {
  max-width: 1300px;
  margin: auto;
}

.gallery-container h1 {
  text-align: center;
  font-size: 42px;
  color: #66b3ff;
  margin-bottom: 20px;
}

.gallery-intro {
  text-align: center;
  max-width: 800px;
  margin: auto;
  font-size: 18px;
  color: #444;
  line-height: 1.8;
  margin-bottom: 60px;
}

/* GRID LAYOUT */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

/* ITEMS */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  height: 280px;
  cursor: pointer;
}

/* IMAGES */
.gallery-item img,
.gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}

/* HOVER EFFECT */
.gallery-item:hover img,
.gallery-item:hover video {
  transform: scale(1.08);
}

/* VIDEO ICON */
.video-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 45px;
  color: white;
  background: rgba(0,0,0,0.35);
}

/* MORE PHOTOS BOX */
.more-item {
  background: #66b3ff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.more-overlay {
  text-align: center;
  color: white;
}

.more-overlay h2 {
  font-size: 60px;
  margin-bottom: 10px;
}

.more-overlay p {
  font-size: 20px;
}

/* =========================
   SCROLL ANIMATIONS
========================= */

.animate {
  opacity: 0;
  transition: all 1s ease;
}

.from-top {
  transform: translateY(-60px);
}

.from-bottom {
  transform: translateY(60px);
}

.show {
  opacity: 1;
  transform: translateY(0);
}

/* MOBILE */
@media (max-width: 768px) {

  .gallery-page {
    padding: 120px 20px 60px;
  }

  .gallery-container h1 {
    font-size: 32px;
  }

  .gallery-item {
    height: 220px;
  }

}

/* MORE GALLERY ITEM */
.more-gallery {
  position: relative;
  cursor: pointer;
}

.more-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(45%);
}

/* Overlay */
.more-overlay {
  position: absolute;
  inset: 0;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  color: white;
  text-align: center;
}

.more-overlay h2 {
  font-size: 55px;
  margin-bottom: 10px;
}

.more-overlay p {
  font-size: 18px;
  font-weight: 500;
}

.gallery-link {
  text-decoration: none;
}


/* RESPONSIVE */
@media (max-width: 768px) {

  .gallery-page {
    padding: 120px 20px 60px;
  }

  .gallery-container h1 {
    font-size: 32px;
  }

  .gallery-item img,
  .gallery-item video {
    height: 240px;
  }

}

/* =========================
   RESPONSIVE NAVBAR
========================= */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:Arial, Helvetica, sans-serif;
}

/* HEADER */
.top-header{
  width:100%;
  position:fixed;
  top:0;
  left:0;
  z-index:1000;
}

/* NAVBAR */
.navbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:15px 40px;
  background:#ffffff;
  box-shadow:0 2px 10px rgba(0,0,0,0.08);
}

/* LOGO */
.logo img{
  width:85px;
}

/* LINKS */
.nav-links{
  display:flex;
  align-items:center;
  gap:25px;
  list-style:none;
}

.nav-links li a{
  text-decoration:none;
  color:#333;
  font-size:16px;
  font-weight:500;
  transition:0.3s ease;
}

.nav-links li a:hover{
  color:#66b3ff;
}

/* HAMBURGER */
.menu-toggle{
  display:none;
  font-size:28px;
  cursor:pointer;
  color:#333;
}

/* CLOSE BUTTON */
.close-menu{
  display:none;
}

/* =========================
   MOBILE NAVBAR
========================= */

@media(max-width:900px){

  .navbar{
    padding:15px 20px;
  }

  /* SHOW HAMBURGER */
  .menu-toggle{
    display:block;
  }

  /* MOBILE MENU */
  .nav-links{
    position:fixed;
    top:0;
    right:-100%;
    width:280px;
    height:100vh;
    background:#ffffff;
    flex-direction:column;
    align-items:flex-start;
    padding:80px 30px;
    gap:25px;
    transition:0.4s ease;
    box-shadow:-5px 0 15px rgba(0,0,0,0.1);
  }

  /* ACTIVE MENU */
  .nav-links.active{
    right:0;
  }

  /* CLOSE ICON */
  .close-menu{
    display:block;
    position:absolute;
    top:20px;
    right:25px;
    font-size:30px;
    cursor:pointer;
    color:#333;
  }

  .nav-links li{
    width:100%;
  }

  .nav-links li a{
    font-size:18px;
    display:block;
    width:100%;
  }

}

/* =========================
   PARTNERS SECTION
========================= */

.partners-section {
  padding: 90px 0;
  background: #f7f9fc;
  overflow: hidden;
}

.partners-container {
  width: 100%;
}

.partners-container h2 {
  text-align: center;
  font-size: 42px;
  color: #66b3ff;
  margin-bottom: 60px;
}

.partners-section h2{
  text-align:center;
  font-size:42px;
  color:#66b3ff;
  margin-bottom:60px;
}

/* SLIDER WRAPPER */
.partners-slider {
  display: flex;
  align-items: center;

  gap: 40px;

  width: max-content;

  animation: scrollPartners 28s linear infinite;
}

/* Pause animation on hover */
.partners-slider:hover {
  animation-play-state: paused;
}

/* PARTNER CARD */
.partner-item {
  width: 240px;
  height: 230px;

  background: white;

  border-radius: 18px;

  display: flex;
  flex-direction: column;

  align-items: center;
  justify-content: center;

  padding: 25px;

  text-align: center;

  box-shadow: 0 10px 25px rgba(0,0,0,0.08);

  transition: all 0.4s ease;
}

/* HOVER EFFECT */
.partner-item:hover {
  transform: translateY(-12px);
  box-shadow: 0 18px 35px rgba(0,0,0,0.12);
}

/* LOGO */
.partner-item img {
  width: 140px;
  height: 100px;

  object-fit: contain;

  margin-bottom: 20px;

  filter: grayscale(10%);
}

/* NAME */
.partner-item h3 {
  font-size: 17px;
  line-height: 1.5;

  color: #222;

  font-weight: 600;
}

/* PROFESSIONAL CONTINUOUS MOVEMENT */
@keyframes scrollPartners {

  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* MOBILE */
@media (max-width: 768px) {

  .partners-section {
    padding: 70px 0;
  }

  .partners-container h2 {
    font-size: 32px;
  }

  .partners-slider {
    gap: 20px;
  }

  .partner-item {
    width: 180px;
    height: 190px;
    padding: 20px;
  }

  .partner-item img {
    width: 100px;
    height: 70px;
  }

  .partner-item h3 {
    font-size: 14px;
  }
}

/* =========================
   RESOURCES PAGE BACKGROUND
========================= */

.resources-page {
  position: relative;
  padding: 140px 40px 80px;

  /* Background Image */
  background: 
    linear-gradient(
      rgba(144, 238, 144, 0.80),
      rgba(144, 238, 144, 0.80)
    ),
    url("images/World\ Mental\ Health\ Day\ Kisumu\ County\ 2025.jpg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

/* Optional: Make content cleaner */
.resources-container {
  max-width: 1200px;
  margin: auto;
  position: relative;
  z-index: 2;
}

/* Heading */
.resources-container h1 {
  text-align: center;
  font-size: 42px;
  color: #3b8dea;
  margin-bottom: 25px;
}

/* Intro Text */
.resources-intro {
  text-align: center;
  max-width: 900px;
  margin: auto;
  color: #fff;
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 60px;
}

/* =========================
   DONATE PAGE BACKGROUND
========================= */

.donate-page {
  position: relative;
  padding: 140px 40px 80px;

  /* Background Image + Light Green Overlay */
  background:
    linear-gradient(
      rgba(144, 238, 144, 0.80),
      rgba(144, 238, 144, 0.80)
    ),
    url("images/World\ Mental\ Health\ Day\ Kisumu\ County\ 2025.jpg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

/* Donate Container */
.donate-container {
  max-width: 1200px;
  margin: auto;
  position: relative;
  z-index: 2;
}

/* Main Heading */
.donate-container h1 {
  text-align: center;
  font-size: 42px;
  color: #3b8dea;
  margin-bottom: 25px;
  line-height: 1.4;
}

/* Intro Paragraph */
.donate-intro {
  text-align: center;
  font-size: 18px;
  line-height: 1.8;
  color: #fff;
  max-width: 900px;
  margin: 0 auto 60px;
}