/* =====================
   GLOBAL RESET
===================== */

html, body {
  width: 100%;
  overflow-x: hidden !important;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Nunito", sans-serif;
  line-height: 1.7;
  color: #000000;
  background: #f9fafb;
}

a {
  text-decoration: none;
  transition: 0.3s ease;
}

img {
  max-width: 100%;
  
}

/* =====================
   NAVBAR
===================== */
.site-navbar {
  position: fixed;
  width: 100%;
  z-index: 999;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #eee;
}

.site-navbar .container {
  padding: 12px 15px;
}

.site-logo img {
  height: 55px;
  margin-left: 5px;
}

.site-menu {
  display: flex;
  align-items: center;   /* vertical centering */
  justify-content: center;
  gap: 25px;       
  margin-top: 5px;  
  margin-bottom: 0px;    /* spacing between items */
  height: 100%;
}



.site-menu li {
  list-style: none;
  margin-left: 22px;
  
}

.site-menu .nav-link {
  font-weight: 600;
  color: #333;
}

.site-menu .nav-link:hover,
.site-menu .nav-link.active {
  color: #c98002;
}

/* CTA button */
.nav-cta .btn {
  background: linear-gradient(135deg, #d08b15, #925001);
  color: #fff;
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: 700;
}

.nav-btn-glow:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(251, 200, 124, 0.4);
}

/* =====================
   HERO SLIDER
===================== */
.slide-one-item img {
  height: 100vh;
  object-fit: cover;
}

.slide-one-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

/* 🔥 Fix Owl Carousel height issue */
.slide-one-item .owl-stage-outer,
.slide-one-item .owl-stage,
.slide-one-item .owl-item {
  height: auto !important;
}

/* 📱 Mobile square layout */
@media (max-width: 768px) {
  .slide-one-item .owl-item a {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
  }

  .slide-one-item .owl-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

/* =====================
   INTRO VISION / MISSION
===================== */
.intro-engage {
  background: #ffffff;
  padding: 80px 10%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.intro-engage > div {
  background: #f4f6f8;
  padding: 35px;
  border-radius: 18px;
  text-align: center;
  transition: 0.3s ease;
}

.intro-engage > div:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.intro-engage h2 {
  font-family: "Anton", sans-serif;
  letter-spacing: 2px;
  margin-bottom: 15px;
  color: #2ea44f;
}

/* =====================
   SECTIONS
===================== */
.site-section {
  padding: 50px 0;
}

.section-title {
  font-family: "Anton", sans-serif;
  letter-spacing: 2px;
  margin-bottom: 25px;
}

/* =====================
   ABOUT SECTION
===================== */
.bg-image.overlay {
  position: relative;
  color: #fff;
}

.bg-image.overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}

.bg-image.overlay .container {
  position: relative;
  z-index: 2;
}

.block-img-video-1 {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

/* =====================
   COUNTERS
===================== */
.block-counter-1 {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.block-counter-1 .number {
  font-size: 42px;
  font-weight: 800;
  color: #2ea44f;
}

/* =====================
   PROJECTS
===================== */
#discover-section img {
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* =====================
   JOIN US
===================== */
#donate-section {
  text-align: center;
}

#donate-section .btn {
  border-radius: 40px;
  font-size: 18px;
  font-weight: 700;
}

/* =====================
   TEAM
===================== */
.block-team-member-1 {
  background: rgb(209, 137, 3);
  padding: 40px 25px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.block-team-member-1 img {
  width: 120px;
  height: 120px;
  margin: auto;
}

.block-team-member-1 p {
  color: #ffffff;
}

/* =====================
   TESTIMONIALS
===================== */
.block-testimony-1 blockquote {
  font-size: 18px;
  line-height: 1.8;
  color: #f1f5f9;
}

/* =====================
   BLOG
===================== */
#blog-section img {
  border-radius: 16px;
  margin-bottom: 20px;
}

/* =====================
   CONTACT
===================== */
.form-control {
  border-radius: 12px;
  padding: 14px;
}

.btn-primary {
  background: linear-gradient(135deg, #fdc06b, #e66103);
  border: none;
}

/* =====================
   FOOTER
===================== */
.site-footer {
  background: #111827;
  color: #9ca3af;
  padding: 80px 0;
}

.site-footer h2 {
  color: #fff;
}

.site-footer a {
  color: #9ca3af;
}

.site-footer a:hover {
  color: #2ea44f;
}

/* =====================
   MOBILE
===================== */
@media (max-width: 768px) {
  .slide-one-item img {
    height: 70vh;
  }

  .intro-engage {
    padding: 60px 20px;
  }

  .site-navbar {
    padding: 8px 0;
  }
}

/* =====================================
   FIX MOBILE MENU / DOUBLE NAVBAR ISSUE
===================================== */

/* Mobile menu base (hidden by default) */
.site-mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 280px;
  height: 100vh;
  background: #ffffff;
  z-index: 2000;
  padding: 30px 20px;
  overflow-y: auto;

  /* hidden state */
  transform: translateX(-100%);
  transition: transform 0.3s ease-in-out;
}

/* Show mobile menu ONLY when toggled */
.offcanvas-menu .site-mobile-menu {
  transform: translateX(0);
}

/* Dark overlay when menu opens */
.offcanvas-menu::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1500;
}

/* Close button alignment */
.site-mobile-menu-close {
  text-align: right;
  margin-bottom: 20px;
}

.site-mobile-menu-close span {
  font-size: 30px;
  cursor: pointer;
}

/* Mobile menu links */
.site-mobile-menu .site-nav-wrap li {
  list-style: none;
  margin-bottom: 18px;
}

.site-mobile-menu .site-nav-wrap a {
  font-size: 18px;
  font-weight: 600;
  color: #2ea44f;
}

/* CTA button inside mobile menu */
.site-mobile-menu .nav-cta a {
  display: inline-block;
  margin-top: 20px;
}

/* =====================================
   DESKTOP SAFETY RULE
===================================== */
@media (min-width: 992px) {
  .site-mobile-menu,
  .offcanvas-menu::before {
    display: none !important;
  }
}
/* =========================
   NAVBAR SCROLL FIX
========================= */
.site-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999 !important;
}
/* =====================================
   OFFCANVAS MOBILE MENU FIX
===================================== */

/* Mobile menu container */
.site-mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 280px;
  height: 100vh;
  background: #ffffff;
  z-index: 99999; /* VERY IMPORTANT */
  padding: 25px 20px;
  overflow-y: auto;

  transform: translateX(-100%);
  transition: transform 0.3s ease-in-out;
}

/* Show menu */
.offcanvas-menu .site-mobile-menu {
  transform: translateX(0);
}

/* Overlay */
.offcanvas-menu::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 99990;
}

/* Close button */
.site-mobile-menu-close {
  text-align: right;
  margin-bottom: 20px;
}

.site-mobile-menu-close span {
  font-size: 32px;
  font-weight: bold;
  color: #000; /* visible */
  cursor: pointer;
  z-index: 100000;
  position: relative;
}

/* Mobile links */
.site-mobile-menu .site-nav-wrap li {
  list-style: none;
  margin-bottom: 18px;
}

.site-mobile-menu .site-nav-wrap a {
  font-size: 18px;
  font-weight: 600;
  color: #2ea44f;
}

/* Desktop must NEVER show mobile menu */
@media (min-width: 992px) {
  .site-mobile-menu,
  .offcanvas-menu::before {
    display: none !important;
  }
}
/* =====================================
   GLASSMORPHISM MOBILE MENU
===================================== */

.site-mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 280px;
  height: 100vh;

  /* Glass effect */
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  z-index: 99999;
  padding: 25px 20px;
  overflow-y: auto;

  transform: translateX(-100%);
  transition: transform 0.35s ease;
}

/* Open state */
.offcanvas-menu .site-mobile-menu {
  transform: translateX(0);
}

/* Dark blurred overlay */
.offcanvas-menu::before {
  content: "";
  position: fixed;
  inset: 0;

  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);

  z-index: 99990;
}

/* Close icon */
.site-mobile-menu-close span {
  font-size: 32px;
  font-weight: bold;
  color: #111;
  cursor: pointer;
}

/* Menu links */
.site-mobile-menu .site-nav-wrap a {
  color: #1f2933;
}

/* Desktop safety */
@media (min-width: 992px) {
  .site-mobile-menu,
  .offcanvas-menu::before {
    display: none !important;
  }
}
/* =====================================
   MOBILE NAVBAR POLISH
===================================== */

/* Toggle button (☰) */
.toggle-button a {
  font-size: 26px;
  padding: 8px 12px;
  margin: 10px;
  color: #111;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.05);
}

/* Glass mobile menu */
.site-mobile-menu {
  width: 300px;
  padding: 30px 22px;

  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);

  box-shadow: 10px 0 40px rgba(0, 0, 0, 0.25);
}

/* Header (close button area) */
.site-mobile-menu-header {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 30px;
}

/* Close button */
.site-mobile-menu-close span {
  font-size: 34px;
  color: #111;
  padding: 6px 10px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.08);
}

/* Menu body */
.site-mobile-menu-body {
  padding: 0;
}

/* Mobile nav items */
.site-mobile-menu .site-nav-wrap li {
  list-style: none;
  margin-bottom: 18px;
}

/* Mobile nav links */
.site-mobile-menu .site-nav-wrap a {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: #1f2933;

  padding: 14px 18px;
  border-radius: 14px;

  background: rgba(0, 0, 0, 0.04);
}

/* Active / hover state */
.site-mobile-menu .site-nav-wrap a:hover,
.site-mobile-menu .site-nav-wrap .active {
  background: linear-gradient(135deg, #d08b15, #925001);
  color: #fff;
}

/* Overlay blur */
.offcanvas-menu::before {
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(8px);
}

/* Navbar always on top */
.site-navbar {
  z-index: 100000;
}

/* Prevent content shift */
body.offcanvas-menu {
  overflow: hidden;
}
/* =========================
   VISION / MOTIVE / MISSION
========================= */

.vmv-section {
  padding: 100px 20px;
  background: linear-gradient(
  180deg,
  #ffffff 0%,
  #fff7e6 45%,
  #fff1db 100%
);

}




.vmv-container {
  max-width: 1200px;
  margin: auto;

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 35px;
}

/* Card */
.vmv-card {
  background: rgba(255, 255, 255, 0.95);
  padding: 45px 35px;
  border-radius: 26px;

  text-align: center;
  position: relative;
  overflow: hidden;

  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.12);
  transition: all 0.4s ease;
}




/* Highlight middle card */
.vmv-card.highlight {
  transform: scale(1.05);
  border: 2px solid #f97d24;
}

/* Hover animation */
.vmv-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.2);
}

/* Icon */
.vmv-icon {
  width: 70px;
  height: 70px;
  margin: auto auto 25px;

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

  font-size: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2ea44f, #34d058);
  color: #fff;
}

/* Heading */
.vmv-card h3 {
  font-family: "Anton", sans-serif;
  letter-spacing: 1px;
  font-size: 18px;
  font-weight: 700;   /* <-- FIX */
  margin-bottom: 18px;
  color: #1f2933;
}


/* English text */
.vmv-card h3 .en {
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.vmv-card h3 .hi {
  font-family: "Anton", sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
}


/* Decorative glow */
.vmv-card::after {
  content: "";
  position: absolute;
  inset: auto -40% -40% auto;
  width: 200px;
  height: 200px;
  background: rgba(248, 218, 129, 0.263);
  filter: blur(60px);
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {
  .vmv-section {
    padding: 70px 15px;
  }

  .vmv-card {
    padding: 35px 25px;
  }

  .vmv-card.highlight {
    transform: none;
  }
}
/* Background image with overlay */
.vmv-section.bg-overlay {
  position: relative;
  background: url("images/overlay.jpg") center/cover no-repeat;
}

.vmv-section.bg-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.vmv-section.bg-overlay .vmv-container {
  position: relative;
  z-index: 2;
}
.lang-toggle {
  text-align: center;
  margin-bottom: 40px;
}

.lang-toggle button {
  border: none;
  padding: 10px 22px;
  margin: 0 6px;
  border-radius: 30px;
  font-weight: 700;
  cursor: pointer;

  background: rgba(183, 182, 182, 0.85);
  color: #1f2933;
}

.lang-toggle button.active {
  background: linear-gradient(135deg, #ff8f49, #f97d24);
  color: #fff;
  
}
.vmv-counter {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;

  max-width: 1000px;
  margin: 80px auto 0;
  padding: 0 20px;
}

.counter-box {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  text-align: center;

  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.counter-box h3 {
  font-size: 42px;
  font-weight: 800;
  color: #2ea44f;
}

.counter-box p {
  color: #4b5563;
  font-weight: 600;
}

/* Force linear movement */
.vmv-marquee .owl-stage {
  display: flex;
  transition-timing-function: linear !important;
}

/* Remove default transform jumps */
.vmv-marquee .owl-item {
  display: flex;
}

/* Optional spacing */
.vmv-card {
  margin: 0 15px;
}
.impact-section {
  padding: 90px 8%;
  background: linear-gradient(
    135deg,
    #ffffff,
    #f8eedb
  );
}

.impact-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 60px;
}

.impact-header h2 {
  font-size: 40px;
  font-weight: 700;
  color: #1f2d3d;
  margin-bottom: 12px;
}

.impact-header p {
  font-size: 17px;
  color: #6b7c93;
  line-height: 1.6;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.impact-card {
  background: linear-gradient(
  135deg,
  #ffffff 0%,
  #ffffff 50%,
  #ffffff 100%
);
  padding: 20px 5px;
  border-radius: 120px;
  text-align: center;
  border: 1px solid #eef2f6;
  transition: all 0.35s ease;
}

.impact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 40px rgba(31, 45, 61, 0.08);
}

.impact-card h3 {
  font-size: 42px;
  font-weight: 700;
  color: #f97d24;
  margin-bottom: 10px;
}

.impact-card p {
  font-size: 15px;
  font-weight: 500;
  color: #425466;
  letter-spacing: 0.5px;
}
.about-section {
  position: relative;
  padding: 100px 0;
  background: url("images/overlay.jpg") center/cover no-repeat;
}

.about-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.92);
}

.about-section .container {
  position: relative;
  z-index: 2;
}

.section-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: #bd6002;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-title {
  font-size: 38px;
  font-weight: 100;
  color: #1f2d3d;
  margin-bottom: 22px;
}

.about-section p {
  font-size: 16px;
  color: #4f5d73;
  line-height: 1.8;
  margin-bottom: 18px;
}

/* Video Block */
.about-video {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.about-video img {
  width: 100%;
  transition: transform 0.5s ease;
}

.about-video:hover img {
  transform: scale(1.05);
}

.play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-btn span {
  width: 80px;
  height: 80px;
  background: #e77722;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #fff;
  box-shadow: 0 10px 30px rgba(237, 158, 47, 0.861);
  transition: transform 0.3s ease;
}

.about-video:hover .play-btn span {
  transform: scale(1.1);
}

/* CTA Button */
.primary-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 32px;
  background: #e8630a;
  color: #fff;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.primary-btn:hover {
  background: #fee09a;
  transform: translateY(-2px);
}
.projects-section {
  padding: 100px 0;
  background: #f8fafc;
}

.section-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: #fd8d2b;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-title {
  font-size: 40px;
  font-weight: 100;
  color: #1f2d3d;
  margin-bottom: 15px;
}

.section-desc {
  font-size: 16px;
  color: #6b7c93;
  line-height: 1.7;
}

/* Project Layout */
.project-row {
  margin-top: 60px;
}

.project-image {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.project-image img {
  width: 100%;
  transition: transform 0.5s ease;
}

.project-image:hover img {
  transform: scale(1.05);
}

.project-title {
  font-size: 28px;
  font-weight: 100;
  color: #1f2d3d;
  margin-bottom: 18px;
}

.project-text {
  font-size: 16px;
  color: #4f5d73;
  line-height: 1.8;
  margin-bottom: 15px;
}

#testimonials-section {
  background: linear-gradient(
    180deg,
    #ffffff,
    #fff4e6
  );
  padding: 80px 0;
}

.section-title {
  font-weight: 100;
  color: #222;
}

.section-subtitle {
  color: #666;
  font-size: 15px;
  margin-top: 10px;
}

/* testimonial layout */
.testimonial-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.testimonial-item {
  display: flex;
  gap: 25px;
  align-items: flex-start;
  background: #ffffff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.testimonial-photo img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #ff9f43;
}

.testimonial-content p {
  font-size: 15px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 10px;
}

.testimonial-content h4 {
  font-weight: 600;
  color: #222;
  margin: 0;
}

@media (max-width: 767px) {

  #testimonials-section {
    padding: 60px 0;
  }

  .testimonial-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
    padding: 20px;
  }

  .testimonial-photo img {
    width: 75px;
    height: 75px;
  }

  .testimonial-content p {
    font-size: 14px;
    line-height: 1.7;
  }

  .testimonial-content h4 {
    margin-top: 5px;
    font-size: 15px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {

  .testimonial-item {
    gap: 20px;
    padding: 22px;
  }

  .testimonial-photo img {
    width: 85px;
    height: 85px;
  }
}
#team-section {
  background: linear-gradient(180deg, #ffffff, #fff4e6);
  padding: 80px 0;
}

/* header */
.team-header {
  text-align: center;
  margin-bottom: 50px;
}

.team-header h2 {
  font-weight: 700;
  color: #222;
}

.team-header p {
  color: #666;
  font-size: 15px;
  margin-top: 8px;
}

/* 🔷 Team Grid Layout */
.team-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr); /* 5 cards per row = 2 rows (10 cards) */
  gap: 20px;
  margin-top: 40px;
}

/* 🎴 Card Styling */
.team-member {
  background: #fff;
  padding: 18px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.team-member:hover {
  transform: translateY(-6px);
}

/* 🖼 Image */
.team-member img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 10px;
}

/* 👤 Name */
.team-member h3 {
  font-size: 15px;
  margin-bottom: 4px;
}

/* 🏷 Role */
.team-member span {
  font-size: 12px;
  color: #6a11cb;
  font-weight: 600;
}

/* 📄 Description */
.team-member p {
  font-size: 12px;
  color: #666;
  margin-top: 8px;
  line-height: 1.4;
}

/* 📱 Tablet */
@media (max-width: 992px) {
  .team-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* 📱 Mobile */
@media (max-width: 768px) {
  .team-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-member {
    padding: 12px;
  }

  .team-member img {
    width: 60px;
    height: 60px;
  }

  .team-member h3 {
    font-size: 13px;
  }

  .team-member span {
    font-size: 11px;
  }

  .team-member p {
    font-size: 11px;
  }
}

/* 📱 Extra small */
@media (max-width: 480px) {
  .team-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

.ngo-blog {
  background: #fff7f0;
}

/* Blog Card */
.blog-box {
  background: #ffffff;
  border-radius: 6px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* Blog Image */
.blog-box img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* Content */
.blog-content {
  padding: 18px;
}

.blog-content h3 {
  font-size: 18px;
  margin-bottom: 6px;
}

.blog-content h3 a {
  color: #222;
  text-decoration: none;
}

.blog-content h3 a:hover {
  color: #f08c2b;
}

.blog-meta {
  font-size: 13px;
  color: #888;
  margin-bottom: 10px;
}

.blog-content p {
  font-size: 14px;
  color: #555;
}

/* Read more */
.read-more {
  display: inline-block;
  margin-top: 10px;
  font-weight: 600;
  color: #f08c2b;
  text-decoration: none;
}
/* Full-screen splash */
#splash-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #fae8d6, #fff4b0, #fff7e5); /* or gradient: linear-gradient(45deg,#ff9f43,#f9f3e6); */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 1;
  transition: opacity 1s ease;
}

/* Splash Logo */
#splash-logo {
  width: 150px;
  transform: scale(0); /* Start small */
  opacity: 0;
  transition: transform 1s ease, opacity 1s ease;
}


/* 🔔 NOTICE BAR */
.notice-bar {
  display: flex;
  align-items: center;
  background: linear-gradient(90deg, #562e01, #bd5c02);
  color: #fff;
  overflow: hidden;
  position: relative;
  height: 50px;
}

/* Label */
.notice-label {
  background: rgba(0,0,0,0.3);
  padding: 0 18px;
  font-weight: 600;
  white-space: nowrap;
  display: flex;
  align-items: center;
  font-size: 14px;
}

/* Track */
.notice-track {
  flex: 1;
  overflow: hidden;
}

/* Moving content */
.notice-content {
  display: inline-block;
  white-space: nowrap;
  padding-left: 100%;
  animation: scroll-left 20s linear infinite;
}

.notice-content span {
  margin-right: 50px;
  font-size: 14px;
}

/* Animation */
@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}


/* 📱 Mobile Devices */
@media (max-width: 768px) {

  .notice-bar {
    height: 45px;
  }

  .notice-label {
    font-size: 12px;
    padding: 0 12px;
  }

  .notice-content span {
    font-size: 12px;
    margin-right: 30px;
  }

  .notice-content {
    animation: scroll-left 14s linear infinite; /* faster for mobile */
  }
}

/* 📱 Extra Small Devices */
@media (max-width: 480px) {

  .notice-bar {
    height: 40px;
  }

  .notice-label {
    font-size: 11px;
    padding: 0 10px;
  }

  .notice-content span {
    font-size: 11px;
    margin-right: 20px;
  }

  .notice-content {
    animation: scroll-left 12s linear infinite;
  }
}

.notice-content:hover {
  animation-play-state: paused;
}

/* 🔥 Overlay */
.success-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(6px);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: 0.4s ease;
  z-index: 9999;
}

/* Show */
.success-popup.active {
  opacity: 1;
  pointer-events: all;
}

/* Box */
.success-box {
  background: white;
  padding: 30px;
  border-radius: 16px;
  text-align: center;
  max-width: 350px;
  width: 90%;
  animation: popUp 0.4s ease;
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

/* Icon */
.success-icon {
  width: 60px;
  height: 60px;
  background: #4CAF50;
  color: white;
  font-size: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

/* Text */
.success-box h3 {
  margin-bottom: 10px;
}

.success-box p {
  font-size: 14px;
  color: #555;
}

/* Button */
.success-box button {
  margin-top: 15px;
  padding: 10px 20px;
  border: none;
  background: #e57b01;
  color: white;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.success-box button:hover {
  background: #9f4601;
}

/* Animation */
@keyframes popUp {
  from {
    transform: scale(0.7);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* 🌌 FOOTER */
.ultra-footer {
  width: 100%;
  background: linear-gradient(135deg, #0f0f1a, #1a1a2e);
  color: #fff;
  padding: 60px 20px 20px;
  position: relative;
}

/* Layout */
.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1400px;
  margin: auto;
}

/* Columns */
.footer-col h3 {
  margin-bottom: 15px;
  font-size: 16px;
}

.footer-logo {
  font-size: 22px;
  margin-bottom: 10px;
}

.footer-desc {
  font-size: 14px;
  color: #aaa;
  margin-bottom: 15px;
}

/* Links */
.footer-col a {
  display: block;
  color: #ccc;
  text-decoration: none;
  margin-bottom: 8px;
  font-size: 14px;
  transition: 0.3s;
}

.footer-col a:hover {
  color: #fff;
  transform: translateX(5px);
}

/* Contact text */
.footer-col p {
  font-size: 14px;
  color: #ccc;
  margin-bottom: 8px;
}

/* Social */
.footer-social a {
  display: inline-block;
  margin-right: 10px;
  font-size: 18px;
  color: #ccc;
  transition: 0.3s;
}

.footer-social a:hover {
  color: hsl(35, 96%, 44%);
  transform: translateY(-3px);
}

/* Newsletter */
.newsletter-form {
  display: flex;
  margin-top: 10px;
  background: #fff;
  border-radius: 30px;
  overflow: hidden;
}

.newsletter-form input {
  border: none;
  padding: 10px 15px;
  flex: 1;
  outline: none;
  font-size: 14px;
}

.newsletter-form button {
  border: none;
  background: hsl(35, 96%, 44%);
  color: #fff;
  padding: 10px 15px;
  cursor: pointer;
  transition: 0.3s;
}

.newsletter-form button:hover {
  background: hsl(35, 96%, 44%);
}

/* Bottom */
.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 13px;
  color: #888;
}

/* ⬆️ Back to Top */
#backToTop {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #6a0dad;
  color: #fff;
  border: none;
  padding: 10px 14px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: none;
  z-index: 999;
  transition: 0.3s;
}

#backToTop:hover {
  background: hsl(35, 96%, 44%);
}

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

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form button {
    width: 100%;
  }
}

.testimonial-wrapper {
 
  width: 100%;
  
  padding: 40px 0;
}

.testimonial-track {
  display: flex;
  gap: 25px;
  width: max-content;
  
}

/* CARD DESIGN */
.testimonial-card {
  min-width: 280px;
  max-width: 280px;
  background: #ffffff;
  border-radius: 20px;
  padding: 25px 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.testimonial-card img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin-bottom: 15px;
  object-fit: cover;
}

.testimonial-card p {
  font-size: 14px;
  color: #555;
  margin-bottom: 15px;
}

.testimonial-card h4 {
  font-size: 16px;
  color: #222;
  font-weight: 600;
}



.wa-float {
  position: fixed;
  right: 20px;
  bottom: 30px;
  display: flex;
  align-items: center;
  background: #25D366;
  border-radius: 50px;
  text-decoration: none;
  overflow: hidden;
  width: 55px;
  height: 55px;
  transition: all 0.4s ease;
  z-index: 999;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* ICON BOX */
.wa-icon-box {
  min-width: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative; /* ✅ REQUIRED */
}

/* 🌊 WAVE EFFECT */
.wa-icon-box::before,
.wa-icon-box::after {
  content: "";
  position: absolute;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: rgb(0, 0, 0) !important;
  animation: wave 2s infinite;
  z-index: 0;
}

.wa-icon-box::after {
  animation-delay: 1s;
}

/* ICON */
.wa-icon-box img {
  width: 50px;
  height: 50px;
  position: relative;
  z-index: 2; /* icon above wave */
}

/* TEXT (keep only ONE version, cleaned) */
.wa-label {
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0;
  margin-left: 10px;
  transition: 0.3s ease;

  background: linear-gradient(45deg, #ffffff, #d4ffe6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* HOVER EFFECT */
.wa-float:hover {
  width: 200px;
  text-decoration: none;
}

.wa-float:hover .wa-label {
  opacity: 1;
}

/* PULSE BORDER */
.wa-float::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50px;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  animation: pulse 2s infinite;
}

/* ANIMATIONS */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@keyframes wave {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  70% {
    transform: scale(2);
    opacity: 0;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

.testimonial-wrapper {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;

  display: flex;

  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;

  cursor: grab;
}

/* IMPORTANT: prevents cards from shrinking weirdly */
.testimonial-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;

  width: max-content; /* 🔥 THIS FIXES LEFT SIDE ISSUE */
}

/* CARD */
.testimonial-card {
  flex: 0 0 auto;
  width: 300px;

  scroll-snap-align: start;
  border-radius: 15px;
}