:root {
            --primary-red: #d32f2f;
            --dark-red: #b71c1c;
            --light-red: #ff6659;
            --light-bg: #f9f9f9;
            --dark-gray: #333;
            --medium-gray: #666;
            --light-gray: #eee;
            --white: #ffffff;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            --transition: all 0.3s ease;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Roboto', sans-serif;
            line-height: 1.6;
            color: var(--dark-gray);
            background-color: var(--white);
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            color: var(--dark-red);
            margin-bottom: 1rem;
        }
        
        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .btn {
            display: inline-block;
            padding: 10px 25px;
            background-color: var(--primary-red);
            color: var(--white);
            border-radius: 4px;
            font-weight: 500;
            border: none;
            cursor: pointer;
            transition: var(--transition);
            font-size: 1rem;
        }
        
        .btn:hover {
            background-color: var(--dark-red);
            transform: translateY(-2px);
            box-shadow: var(--shadow);
        }
        
        .btn-outline {
            background-color: transparent;
            border: 2px solid var(--primary-red);
            color: var(--primary-red);
        }
        
        .btn-outline:hover {
            background-color: var(--primary-red);
            color: var(--white);
        }
        
        /* Header & Navigation */
        #header {
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        header {
            background-color: var(--white);
            box-shadow: var(--shadow);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 10px;
        }
        /* ================= ACTIVE NAV LINK ================= */

.nav-menu .nav-link {
  position: relative;
  color: #222;
  font-weight: 500;
  text-decoration: none;
  padding-bottom: 6px;
  transition: color 0.3s ease;
}

/* Active link */
.nav-menu .nav-link.active {
  color: #d32f2f; /* red */
  font-weight: 600;
}

/* Red underline */
.nav-menu .nav-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: #d32f2f;
  border-radius: 2px;
}

        .logo-container {
  display: flex;
  align-items: center;
}

/* Logo size control */
.logo {
  width: 60px;        /* desktop */
}

/* Image auto-fit */
.logo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* Tablet */
@media (max-width: 992px) {
  .logo {
    width: 50px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .logo {
    width: 40px;
  }
}

        
        .logo {
            height: 500px;
            width: auto;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .logo-text {
            font-family: 'Poppins', sans-serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary-red);
        }
        
        .logo-subtext {
            font-size: 0.9rem;
            color: var(--medium-gray);
            font-weight: 400;
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        
        .nav-link {
            font-weight: 500;
            color: var(--dark-gray);
            position: relative;
            padding: 5px 0;
        }
        
        .nav-link:hover, .nav-link.active {
            color: var(--primary-red);
        }
        
        .nav-link:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: var(--primary-red);
            left: 0;
            bottom: 0;
            transition: var(--transition);
        }
        
        .nav-link:hover:after, .nav-link.active:after {
            width: 100%;
        }
        
        .mega-menu {
            position: absolute;
            left: 0;
            top: 100%;
            width: 100%;
            background: var(--white);
            box-shadow: var(--shadow);
            padding: 30px;
            display: none;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            z-index: 999;
        }
        
        /*.has-mega-menu:hover .mega-menu {
            display: grid;
        }*/
        .mega-menu {
            display: none;
        }
        
        .mega-menu-column h4 {
            font-size: 1.1rem;
            margin-bottom: 15px;
            color: var(--dark-red);
        }
        
        .mega-menu-links {
            list-style: none;
        }
        
        .mega-menu-links li {
            margin-bottom: 10px;
        }
        
        .mega-menu-links a {
            color: var(--medium-gray);
            font-size: 0.95rem;
        }
        
        .mega-menu-links a:hover {
            color: var(--primary-red);
            padding-left: 5px;
        }
        
        .mobile-menu-btn {
            display: none;
            font-size: 1.5rem;
            color: var(--primary-red);
            cursor: pointer;
        }
        
         /* Hero Section */
        /*.hero {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1488521787991-ed7bbaae773c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');
            background-size: cover;
            background-position: center;
            color: var(--white);
            padding: 100px 20px;
            text-align: center;
        }*/
        .hero h1 {
            font-size: 3rem;
            color: var(--white);
            margin-bottom: 20px;
        }
        
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 40px;
            color: var(--light-gray);
        }
        
        .hero-btns {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        /* Section Styling */
        .section {
            padding: 80px 20px;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            width: 80px;
            height: 3px;
            background-color: var(--primary-red);
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
        }
        
        /* Focus Sectors */
        .sectors-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 25px;
        }
        
        .sector-card {
            background-color: var(--white);
            border-radius: 8px;
            padding: 25px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            text-align: center;
        }
        
        .sector-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        .sector-icon {
            font-size: 2.5rem;
            color: var(--primary-red);
            margin-bottom: 15px;
        }
        
        /* Programs */
        .programs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .program-card {
            background-color: var(--white);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        
        .program-card:hover {
            transform: translateY(-5px);
        }
        
        .program-img {
            height: 200px;
            width: 100%;
            background-color: var(--light-gray);
            background-size: cover;
            background-position: center;
        }
        
        .program-content {
            padding: 20px;
        }
        
        .program-status {
            display: inline-block;
            padding: 5px 10px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 500;
            margin-bottom: 10px;
        }
        
        .status-active {
            background-color: #e8f5e9;
            color: #2e7d32;
        }
        
        .status-completed {
            background-color: #f5f5f5;
            color: #616161;
        }
        
        /* Impact Metrics */
        .impact-metrics {
            background-color: var(--light-bg);
        }
        
        .metrics-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            text-align: center;
        }
        
        .metric-item {
            padding: 30px 20px;
            background-color: var(--white);
            border-radius: 8px;
            box-shadow: var(--shadow);
        }
        
        .metric-value {
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary-red);
            margin-bottom: 10px;
        }
        
        /* Footer */
        footer {
            background-color: var(--dark-gray);
            color: var(--white);
            padding: 60px 20px 30px;
        }
        
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-column h3 {
            color: var(--white);
            font-size: 1.3rem;
            margin-bottom: 20px;
            position: relative;
        }
        
        .footer-column h3:after {
            content: '';
            position: absolute;
            width: 40px;
            height: 2px;
            background-color: var(--primary-red);
            bottom: -8px;
            left: 0;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: #aaa;
            font-size: 0.95rem;
        }
        
        .footer-links a:hover {
            color: var(--primary-red);
            padding-left: 5px;
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #444;
            color: #aaa;
            font-size: 0.9rem;
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .mega-menu {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .nav-menu {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: var(--white);
                flex-direction: column;
                padding: 20px;
                box-shadow: var(--shadow);
            }
            
            .nav-menu.active {
                display: flex;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .mega-menu {
                position: static;
                display: none;
                grid-template-columns: 1fr;
                box-shadow: none;
                padding: 20px 0 0 20px;
            }
            
            .has-mega-menu:hover .mega-menu {
                display: grid;
            }
            
            .hero h1 {
                font-size: 2rem;
            }
            
            .hero-btns {
                flex-direction: column;
                align-items: center;
            }
            
            .btn {
                width: 100%;
                max-width: 300px;
                text-align: center;
            }
        }
        
        @media (max-width: 576px) {
            .hero {
                padding: 70px 20px;
            }
            
            .section {
                padding: 50px 20px;
            }
            
            .metrics-grid {
                grid-template-columns: 1fr;
            }
        }


        .logo-container {
  display: flex;
  align-items: center;
}

/* Logo box */
.logo {
  width: 300px;      /* desktop size */
  height: 300px;     /* keeps square */
  flex-shrink: 0;
}

/* PNG image */
.logo img {
  width: 300px;
  height: 300px;
  object-fit: contain;
  display: block;
}

/* Tablet */
@media (max-width: 992px) {
  .logo {
    width: 50px;
    height: 50px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .logo {
    width: 80px;
    height: 80px;
  }
}










/* LEFT GROUP */
.header-left {
  display: flex;
  align-items: center;
}

/* Logo — canonical rules (override all earlier duplicates) */
.logo {
  width: auto;
  height: 100px;        /* desktop */
  flex-shrink: 0;
  margin-left: 0;
  display: flex;
  align-items: center;
}

.logo img {
  width: auto;
  height: 100%;
  max-width: 260px;
  object-fit: contain;
  display: block;
}

/* Text logo */
.logo-text img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

/* Tablet */
@media (max-width: 992px) {
  .logo {
    height: 100px;
    
  }
  .logo-text img {
    height: 40px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .header-left {
    gap: 4px;
  }
  .logo {
    height: 100px;
  }
  .logo img {
    max-width: 230px;
    margin-top: 0;
  }
  .logo-text img {
    height: 38px;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .logo {
    height: 90px;
  }
  .logo img {
    max-width: 210px;
  }
}

/* Very small phones */
@media (max-width: 360px) {
  .logo {
    height: 66px;
  }
  .logo img {
    max-width: 190px;
  }
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.video-wrapper iframe {
  position: absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
}

/* ==========================
   GALLERY SECTION
========================== */

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

/* Image card */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: #f2f2f2;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  aspect-ratio: 1 / 1;
}

/* Image */
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;     /* 🔥 CRITICAL */
  transition: transform 0.5s ease;
}

/* Hover effect */
.gallery-item:hover img {
  transform: scale(1.08);
}

/* ==========================
   RESPONSIVE BREAKPOINTS
========================== */

/* Laptop */
@media (max-width: 1200px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

/* Mobile */
@media (max-width: 576px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item {
    aspect-ratio: 1 / 1;
  }
}


/* ==============================
   ABOUT PAGE BASE
================================ */
.about-hero {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  min-height: 60vh;   /* 👈 IMPORTANT */
  display: flex;
  align-items: center;
}


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

.about-hero .container {
  position: relative;
  z-index: 2;
  text-align: center;
}

.about-hero h1 {
  color: #fff;
  font-size: 3rem;
}

.about-hero p {
  color: #eee;
  max-width: 800px;
  margin: 15px auto 0;
  font-size: 1.2rem;
}
.who-we-are {
  padding: 80px 0;
  background: #ffffff;
}

.two-col {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

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

.who-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.who-content .lead {
  font-size: 18px;
  color: #444;
  margin-bottom: 16px;
}

.who-content p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 18px;
}

.impact-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 32px;
}

.impact-list li {
  margin-bottom: 10px;
  font-size: 16px;
  color: #333;
}

.who-image img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

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

  .who-content h2 {
    font-size: 30px;
  }
}

.our-journey {
  padding: 80px 0;
}

.journey-intro {
  font-size: 18px;
  color: #444;
  margin-bottom: 18px;
}

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

.timeline-item {
  background: #fff;
  padding: 28px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  position: relative;
}

.timeline-item .year {
  font-size: 14px;
  font-weight: 700;
  color:#B71C1C;
  display: inline-block;
  margin-bottom: 10px;
}

.timeline-item h4 {
  font-size: 20px;
  margin-bottom: 10px;
}

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

/* Responsive */
@media (max-width: 768px) {
  .journey-intro {
    font-size: 16px;
  }
}

.vision-section {
  padding: 80px 0;
  background: #ffffff;
}

.vision-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.vision-content .section-tag {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #1e88e5;
  font-weight: 600;
  margin-bottom: 12px;
}

.vision-content h2 {
  font-size: 36px;
  margin-bottom: 18px;
}

.vision-lead {
  font-size: 20px;
  color: #333;
  margin-bottom: 18px;
}

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

.vision-points {
  list-style: none;
  padding: 0;
  margin-top: 22px;
}

.vision-points li {
  font-size: 16px;
  margin-bottom: 10px;
  color: #333;
}

/* Responsive */
@media (max-width: 900px) {
  .vision-content h2 {
    font-size: 30px;
  }

  .vision-lead {
    font-size: 18px;
  }
}

.mission-section {
  padding: 80px 0;
}

.mission-content .section-tag {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #1e88e5;
  font-weight: 600;
  margin-bottom: 12px;
  display: inline-block;
}

.mission-content h2 {
  font-size: 36px;
  margin-bottom: 18px;
}

.mission-lead {
  font-size: 19px;
  color: #333;
  margin-bottom: 18px;
}

.mission-content p {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
}

.mission-points {
  list-style: none;
  padding: 0;
  margin: 22px 0 32px;
}

.mission-points li {
  font-size: 16px;
  margin-bottom: 10px;
  color: #333;
}

.mission-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.mission-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

/* Responsive */
@media (max-width: 900px) {
  .mission-content h2 {
    font-size: 30px;
  }

  .mission-lead {
    font-size: 17px;
  }
}

.core-values {
  background: #ffffff;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
}

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

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.value-card {
  background: #f9fafb;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

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

.value-card h3 {
  color: #1f2933;
  margin-bottom: 10px;
}

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

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}

.value-card {
  background: #f9fafb;
  padding: 30px 24px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}

.value-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  background: linear-gradient(135deg,#B71C1C, #be0505ea);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}

.value-card h3 {
  margin-bottom: 10px;
  color: #1f2937;
}

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

.what-we-do .two-col {
  align-items: center;
  gap: 48px;
}

.what-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.08);
}

.what-content h2 {
  margin-bottom: 12px;
}

.intro-text {
  color: #555;
  margin-bottom: 24px;
  font-size: 16px;
}





.what-list i {
  color: #dc2626;
  font-size: 18px;
  margin-top: 4px;
}

.what-we-do {
  animation: fadeUp 0.8s ease;
}



/* ==============================
   TWO COLUMN LAYOUT
================================ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.two-col img {
  width: 100%;
  height: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* ==============================
   SECTION TEXT
================================ */
.sectors {
  background: #ffffff;
}

.sectors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  margin-top: 40px;
}

.sector-card {
  background: #f9fafb;
  padding: 28px 24px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  transition: transform 0.3s ease;
}

.sector-card:hover {
  transform: translateY(-8px);
}

.sector-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  background: #dc2626;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}

.sector-card h3 {
  margin-bottom: 10px;
  color: #1f2937;
}

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


/* ==============================
   LIGHT BACKGROUND
================================ */
.community-approach .two-col {
  align-items: center;
  gap: 48px;
}

.community-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.08);
}

.community-content h2 {
  margin-bottom: 12px;
}

.approach-points {
  margin-top: 24px;
}

.approach-item {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}

.approach-icon {
  width: 36px;
  height: 36px;
  background: #dc2626;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

.approach-item h4 {
  margin-bottom: 4px;
  color: #1f2937;
}

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

.impact-philosophy {
  background: #ffffff;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  margin-top: 40px;
}

.impact-card {
  background: #f9fafb;
  padding: 28px 24px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  transition: transform 0.3s ease;
}

.impact-card:hover {
  transform: translateY(-8px);
}

.impact-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  background: #dc2626;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}

.impact-card h3 {
  margin-bottom: 10px;
  color: #1f2937;
}

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

.impact-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  margin-top: 48px;
  padding: 32px;
  background: #f9fafb;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  text-align: center;
}

.impact-stat h3 {
  font-size: 32px;
  color: #dc2626;
  margin-bottom: 6px;
}

.impact-stat p {
  font-size: 15px;
  color: #555;
  margin: 0;
}


.geographical-presence .two-col {
  align-items: center;
  gap: 48px;
}

.geo-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.08);
}

.geo-details {
  margin-top: 24px;
}

.geo-item {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}

.geo-icon {
  width: 36px;
  height: 36px;
  background: #dc2626;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

.geo-item h4 {
  margin-bottom: 4px;
  color: #1f2937;
}

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


.beneficiaries {
  background: #ffffff;
}

.beneficiaries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  margin-top: 40px;
}

.beneficiary-card {
  background: #f9fafb;
  padding: 28px 24px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  transition: transform 0.3s ease;
}

.beneficiary-card:hover {
  transform: translateY(-8px);
}

.beneficiary-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  background: #dc2626;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}

.beneficiary-card h3 {
  margin-bottom: 10px;
  color: #1f2937;
}

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

.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-top: 40px;
}

.program-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 0 24px 28px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  text-align: center;
  transition: transform 0.3s ease;
}

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

.program-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 16px 16px 0 0;
  margin-bottom: 20px;
}

.program-card h3 {
  margin-bottom: 10px;
  color: #1f2937;
}

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

.section-intro {
  max-width: 700px;
  margin: 0 auto 1rem;
  text-align: center;
}

.csr-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.csr-card {
  background: #ffffff;
  padding: 1rem;
  border-radius: 8px;
  font-size: 0.95rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.feature-list {
  margin-top: 1rem;
  padding-left: 0;
  list-style: none;
}

.feature-list li {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.section-intro {
  max-width: 750px;
  margin: 0 auto 2rem;
  text-align: center;
}

.transparency {
  background: #f9fafb;
}

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

.impact-card {
  background: #ffffff;
  padding: 28px 24px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  transition: transform 0.3s ease;
}

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

.impact-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  background: #dc2626;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.impact-card h4 {
  margin-bottom: 8px;
  color: #1f2937;
}

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

.impact-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.impact-card {
  background: #ffffff;
  padding: 2.5rem 1.75rem;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.impact-icon {
  width: 60px;
  height: 60px;
  background: #e53935; /* red circle */
  color: #ffffff;
  font-size: 1.6rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.impact-card h4 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.impact-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

.monitoring-evaluation {
  background: #ffffff;
}

.me-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  margin-top: 40px;
}

.me-card {
  background: #f9fafb;
  padding: 28px 24px;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.me-card h3 {
  margin-bottom: 10px;
  color: #1f2937;
}

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

.volunteers .two-col {
  align-items: center;
  gap: 48px;
}

.volunteer-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.08);
}

.volunteer-content h2 {
  margin-bottom: 12px;
}

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

.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  margin-top: 40px;
}

.roadmap-card {
  background: #ffffff;
  padding: 28px 24px;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.roadmap-card h3 {
  margin-bottom: 10px;
  color: #1f2937;
}

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

.cta {
  background: #ffffff;
}

.cta-actions {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-credit {
  margin-top: 14px;
  font-size: 15px;
  color: #9fa3a7;
  text-align: center;
  letter-spacing: 0.25px;
}

.footer-credit a {
  color: #ffffff;
  font-weight: 500;
  text-decoration: none;
  position: relative;
  opacity: 0.9;
  transition: color 0.3s ease, opacity 0.3s ease;
}

.footer-credit a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1.5px;
  background-color: var(--primary-red);
  transition: width 0.3s ease;
}

.footer-credit a:hover {
  color: var(--primary-red);
  opacity: 1;
}

.footer-credit a:hover::after {
  width: 100%;
}

.footer-credit .heart {
  color: var(--primary-red);
  margin: 0 5px;
  font-size: 12px;
  vertical-align: middle;
}


/* ==============================
   CTA SECTION
================================ */
.section a.btn {
  margin-top: 20px;
}

/* ==============================
   SMOOTH SECTION SPACING
================================ */
.section {
  padding: 80px 20px;
}

/* ==============================
   RESPONSIVE BREAKPOINTS
================================ */

/* Laptop */
@media (max-width: 1200px) {
  .about-hero h1 {
    font-size: 2.5rem;
  }
}

/* Tablet */
@media (max-width: 992px) {
  .two-col {
    grid-template-columns: 1fr;
  }

  .two-col img {
    max-height: 350px;
  }

  .about-hero h1 {
    font-size: 2.2rem;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .section {
    padding: 50px 15px;
  }

  .about-hero h1 {
    font-size: 1.8rem;
  }

  .about-hero p {
    font-size: 1rem;
  }

  .two-col img {
    max-height: 260px;
  }
}




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

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

/* HEADER */
.page-header {
    background: #d62828;
    color: #fff;
    text-align: center;
    padding: 60px 20px;
}

.page-header h1 {
    font-size: 40px;
}

.page-header p {
    font-size: 18px;
    margin-top: 10px;
}

/* CONTENT */
.content-section {
    padding: 60px 20px;
}

.container {
    max-width: 1100px;
    margin: auto;
}

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.text-content h2 {
    margin-bottom: 15px;
    color: #d62828;
}

.program-list {
    margin: 20px 0;
}

.program-list li {
    margin-bottom: 10px;
}

/* IMAGE */
.image-content img {
    width: 100%;
    border-radius: 10px;
}

/* BUTTON */
.btn-primary {
    background: #d62828;
    color: #fff;
    border: none;
    padding: 12px 25px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #b71c1c;
}

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

.impact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.impact-card {
    background: #f4f4f4;
    padding: 30px;
    border-radius: 10px;
}

.impact-card h3 {
    font-size: 32px;
    color: #d62828;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .two-col {
        grid-template-columns: 1fr;
    }

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


footer {
  background: #333;
  color: #ccc;
  padding: 60px 0 20px;
}

.footer-container {
  display: grid;
  grid-template-columns: 80px 2fr 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}

/* Logo */
.footer-container .logo img {
  width: 70px;
}

/* Columns */
.footer-column h3 {
  color: #fff;
  margin-bottom: 15px;
  position: relative;
  font-size: 18px;
}

.footer-column h3::after {
  content: "";
  width: 30px;
  height: 2px;
  background: #d62828;
  position: absolute;
  left: 0;
  bottom: -6px;
}

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

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #bbb;
  text-decoration: none;
  transition: 0.3s;
}

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

/* Copyright */
.copyright {
  border-top: 1px solid #444;
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
  font-size: 14px;
}

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

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

.hero-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f5f9ff, #eef3ff);
}

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

.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 25px;
  color: #555;
}

.hero-actions {
  display: flex;
  gap: 15px;
}

.btn-outline {
  padding: 12px 24px;
  border: 2px solid#DC2626;
  color: #DC2626;
  background: transparent;
  border-radius: 6px;
  text-decoration: none;
}

.impact-note {
  margin-top: 15px;
  font-style: italic;
  color: #666;
}

.ngo-hero {
  background: #f6fbff;
  padding: 90px 0;
}

.hero-content h1 {
  font-size: 2.6rem;
  color:#B71C1C;
  margin-bottom: 16px;
}

.hero-content p {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 25px;
  line-height: 1.7;
}

.hero-actions,
.cta-group {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.program-list li {
  margin-bottom: 10px;
  line-height: 1.6;
}

.impact-note {
  margin-top: 18px;
  font-style: italic;
  color: #555;
}

/* STORIES OF CHANGE SECTION */
.stories-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.stories-section h2 {
  text-align: center;
  font-size: 2.2rem;
  color:#B71C1C;
  margin-bottom: 10px;
}

.stories-section > .container > p {
  text-align: center;
  color: #555;
  max-width: 650px;
  margin: 0 auto 50px;
  font-size: 1.05rem;
}

/* GRID */
.story-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* CARD */
.story-card {
  background: #f9fbff;
  border-radius: 14px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.story-card::before {
  content: "“";
  font-size: 4rem;
  color:#B71C1C;
  position: absolute;
  top: 15px;
  left: 20px;
  opacity: 0.15;
}

/* TEXT */
.story-card p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 20px;
  padding-left: 15px;
}

.story-card h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #B71C1C;
  text-align: right;
}

/* HOVER EFFECT */
.story-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .stories-section {
    padding: 60px 0;
  }

  .story-card {
    padding: 25px;
  }

  .stories-section h2 {
    font-size: 1.9rem;
  }
}

/* FINAL CALL TO ACTION */
.final-cta {
  padding: 90px 0;
  background: white;
  text-align: center;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

/* subtle background pattern */
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://safety4sea.com/cm-building-resilience-change-is-a-part-of-life/");
  opacity: 0.15;
}

/* content */
.final-cta .container {
  position: relative;
  max-width: 750px;
  z-index: 1;
}

.final-cta h2 {
  font-size: 2.4rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.final-cta p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 35px;
  color:#B71C1C;
}

/* CTA BUTTON */
.final-cta .btn-primary {
  background-color: #B71C1C;
  color: white;
  padding: 14px 36px;
  border-radius: 30px;
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.final-cta .btn-primary:hover {
  background-color: #B71C1C;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .final-cta {
    padding: 70px 0;
  }

  .final-cta h2 {
    font-size: 2rem;
  }

  .final-cta p {
    font-size: 1rem;
  }
}


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

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

.container {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
}

.center {
  text-align: center;
}

/* HEADER */
.page-header {
  background: #e53935;
  color: #fff;
  padding: 60px 0;
  text-align: center;
}

/* SECTIONS */
.section {
  padding: 60px 0;
}

.bg-light {
  background: #f9f9f9;
}

/* TWO COLUMN */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.two-col img {
  width: 100%;
  border-radius: 10px;
}

/* CARDS */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  text-align: center;
}

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

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

/* IMPACT LIST */
.impact-list {
  list-style: none;
  margin-top: 20px;
}

.impact-list li {
  margin-bottom: 10px;
  font-size: 16px;
}

/* CTA */
.cta {
  background: white;
  color: #fff;
}

.cta button {
  margin-top: 20px;
  padding: 14px 30px;
  font-size: 16px;
  background:#DC2626;
  color: white;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s;
}

.cta button:hover {
  background: #DC2626;
}

/* FOOTER */
.footer {
  background: #222;
  color: #ccc;
  text-align: center;
  padding: 20px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .two-col {
    grid-template-columns: 1fr;
  }
}


.healthcare-intro {
  background: #f9fbfd;
}

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

.healthcare-intro h2 {
  font-size: 38px;
  line-height: 1.25;
  margin-bottom: 16px;
  color: #B71C1C;
}

.healthcare-intro .lead {
  font-size: 18px;
  color: #444;
  margin-bottom: 16px;
}

.impact-list {
  margin-top: 20px;
  padding-left: 0;
  list-style: none;
}

.impact-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  color: #333;
  font-weight: 500;
}

.impact-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #e53935;
  font-weight: bold;
}

.image-wrap img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}


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

.icon-cards .card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.icon-cards .icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: #e53935;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
}

.icon-cards h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #0f2a44;
}

.icon-cards p {
  font-size: 15.5px;
  color: #555;
  line-height: 1.6;
}


.impact-section {
  background: #ffffff;
}

.impact-subtitle {
  max-width: 700px;
  margin: 0 auto 50px;
  color: #555;
  font-size: 17px;
}

.impact-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  text-align: center;
}

.stat h3 {
  font-size: 48px;
  color: #e53935;
  margin-bottom: 10px;
  font-weight: 700;
}

.stat p {
  font-size: 16px;
  color: #333;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
  .stat h3 {
    font-size: 38px;
  }
}

.impact-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}

/* Center the last stat in middle column */
.stat-center {
  grid-column: 2 / 3;
}

/* Responsive: stack normally on mobile */
@media (max-width: 768px) {
  .impact-stats {
    grid-template-columns: 1fr;
  }

  .stat-center {
    grid-column: auto;
  }
}

/* Desktop hover (keep working) 
.has-mega-menu:hover .mega-menu {
  display: block;
}*/

/* Mobile: completely disable mega menu */
@media (max-width: 768px) {
  .mega-menu {
    display: none !important;
  }

  /* Remove hover effect on mobile */
  .has-mega-menu:hover .mega-menu {
    display: none !important;
  }
}


.impact-section {
  background-color: #f9fafb;
}

.image-wrap img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.content-wrap h2 {
  font-size: 2.1rem;
  margin-bottom: 15px;
}

.lead-text {
  font-size: 1.05rem;
  color: #555;
  margin-bottom: 18px;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  text-align: left;
  display: inline-block;
}

.check-list li {
  padding-left: 28px;
  margin-bottom: 12px;
  position: relative;
  text-align: left;
}

.check-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--primary-green);
  font-weight: bold;
}

.impact-note {
  font-style: italic;
  color: #666;
  margin-top: 15px;
}

.primary-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 26px;
  background-color: var(--primary-green);
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.3s ease;
}

.primary-btn:hover {
  transform: translateY(-2px);
}

.icon-list {
  list-style: none;
  padding: 0;
  margin: 25px 0;
}

.icon-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
  font-size: 1rem;
  color: #444;
}

.icon-list i {
  font-size: 1.2rem;
  color:#E53935;
  margin-top: 4px;
}

.image-wrap img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.08);
}


.section-title {
  text-align: center;
  margin-bottom: 10px;
}

.section-subtitle {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 30px;
  color: #555;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.section-subtitle {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 35px;
  color: #555;
}

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

.grid-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0,0,0,0.08);
  text-align: center;
}

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

.grid-card h4 {
  margin: 15px 0 8px;
}

.grid-card p {
  padding: 0 15px 20px;
  color: #666;
  font-size: 0.95rem;
}

/* Mobile */
@media (max-width: 768px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }
}

.icon-list {
  list-style: none;
  padding: 0;
  margin: 25px 0;
}

.icon-list li {
  display: flex;
  gap: 14px;
  margin-bottom: 16px;
  align-items: flex-start;
  color: #444;
}

.icon-list i {
  font-size: 1.3rem;
  color: #e53935; /* emergency red */
  margin-top: 4px;
}

.image-wrap img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 14px 40px rgba(0,0,0,0.1);
}

.lead-text {
  color: #555;
  margin-bottom: 15px;
}

.section-subtitle {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 35px;
  color: #555;
}

.story-card {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0,0,0,0.08);
  background: #fff;
}

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

.story-content {
  padding: 20px;
}

.quote {
  font-style: italic;
  color: #444;
  margin-bottom: 10px;
}

.story-name {
  font-size: 0.9rem;
  color: #777;
}

/* Responsive */
@media (max-width: 768px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }
}

.info-card {
  background: #fff;
  border-radius: 16px;
  padding: 35px 25px;
  text-align: center;
  box-shadow: 0 12px 35px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

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

.icon-circle {
  width: 70px;
  height: 70px;
  margin: 0 auto 18px;
  background-color: #e53935; /* same red as your other cards */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-circle i {
  font-size: 28px;
  color: #fff;
}

.info-card h4 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.info-card p {
  color: #555;
  font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 768px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }
}


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

.how-we-work .info-card {
  background: #fff;
  border-radius: 16px;
  padding: 35px 25px;
  text-align: center;
  box-shadow: 0 12px 35px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.how-we-work .info-card:hover {
  transform: translateY(-6px);
}

.icon-circle {
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  background-color: #e53935; /* same red as other sections */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-circle i {
  font-size: 28px;
  color: #fff;
}

.how-we-work h4 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.how-we-work p {
  font-size: 0.95rem;
  color: #555;
}

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

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


.cta-section {
  background: linear-gradient(135deg, #e53935, #c62828);
  text-align: center;
  padding: 70px 0;
}

.cta-box {
  max-width: 850px;
}

.cta-section h2 {
  color: #fff;
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.cta-section p {
  color: rgba(255,255,255,0.9);
  font-size: 1.05rem;
  margin-bottom: 30px;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.outline-btn {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.outline-btn:hover {
  background: #fff;
  color: #c62828;
}

.program-list {
  list-style: none;
  padding: 0;
}

.program-list li {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 14px;
  font-size: 16px;
}

.program-list i {
  color:#B71C1C; /* NGO green */
  font-size: 18px;
  margin-top: 3px;
}

.how-we-work {
  background: #fafafa;
  text-align: center;
}

.section-title {
  color: #c62828;
  font-size: 28px;
  margin-bottom: 10px;
}

.section-subtitle {
  max-width: 700px;
  margin: 0 auto 40px;
  color: #555;
}

.work-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.work-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  transition: transform 0.3s ease;
}

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

.work-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  background: #c62828;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 22px;
}

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

.work-card p {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
}

@media (max-width: 992px) {
  .work-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.areas-we-serve {
  background: #fff;
  text-align: center;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.area-card {
  background: #fafafa;
  padding: 30px 22px;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.06);
  transition: transform 0.3s ease;
}

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

.area-card i {
  font-size: 34px;
  color: #c62828;
  margin-bottom: 15px;
}

.area-card h3 {
  font-size: 18px;
  color: #222;
  margin-bottom: 8px;
}

.area-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

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

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

.why-education {
  background: #fafafa;
}

.why-education-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.section-intro {
  color: #555;
  margin-bottom: 25px;
  max-width: 520px;
}

.why-points {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.why-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.why-item i {
  font-size: 26px;
  color: #c62828;
  margin-top: 4px;
}

.why-item h4 {
  font-size: 16px;
  margin-bottom: 5px;
  color: #222;
}

.why-item p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

.why-image img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

@media (max-width: 992px) {
  .why-education-wrapper {
    grid-template-columns: 1fr;
  }

  .why-image {
    order: -1;
  }
}

.cta-section {
  background: linear-gradient(135deg, #c62828, #b71c1c);
  color: #fff;
  text-align: center;
}

.cta-section p {
  color: #f5f5f5;
}

.cta-section .outline-btn {
  border-color: #fff;
  color: #fff;
}

.cta-section .outline-btn:hover {
  background: #fff;
  color: #c62828;
}

.key-programs {
  background: #fafafa;
}

.key-programs .section-title {
  color: #c62828;
  margin-bottom: 50px;
}

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

.program-card {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

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

.program-icon {
  width: 80px;
  height: 80px;
  background: #e53935;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.program-icon i {
  color: #fff;
  font-size: 34px;
}

.program-card h3 {
  font-size: 18px;
  color: #222;
  margin-bottom: 12px;
}

.program-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
}

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

.program-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.program-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.12);
}

/* IMAGE AREA */
.program-img {
  height: 240px; /* 🔥 increase image height */
  overflow: hidden;
   border-radius: 24px;

  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
}

.program-img img {
  width: 100%;
  height: 100%;
 
  object-fit: cover; /* prevents image from looking small */
  transition: transform 0.4s ease;
        
}

.program-card:hover .program-img img {
  transform: scale(1.05);
}

/* CONTENT */
.program-content {
  padding: 25px;
  text-align: center;
}

.program-content h3 {
  font-size: 20px;
  margin: 15px 0 10px;
  color: #222;
}

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

/* STATUS BADGE */
.program-status {
  display: inline-block;
  padding: 6px 14px;
  font-size: 13px;
  border-radius: 50px;
  font-weight: 600;
}

.status-active {
  background: #e7f8ee;
  color: #1a8f4a;
}

.status-completed {
  background: #f1f1f1;
  color: #555;
}

.why-us-section {
  padding: 80px 20px;
  background: #fff;
  text-align: center;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: 40px auto 0;
}

.why-card {
  background: #fafafa;
  padding: 30px 20px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: transform 0.3s ease;
}

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

.why-card h3 {
  color: #d32f2f;
  margin-bottom: 10px;
}

.why-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 15px;
}

.partners-section {
  padding: 80px 20px;
  background: #fafafa;
  text-align: center;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 40px auto 0;
}

.partner-item {
  background: #fff;
  padding: 30px 20px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: transform 0.3s ease;
}

.partner-item:hover {
  transform: translateY(-6px);
}

.partner-item i {
  font-size: 40px;
  color: #d32f2f; /* your theme red */
  margin-bottom: 15px;
}

.partner-item h4 {
  font-size: 16px;
  color: #333;
  font-weight: 600;
}
/* === Language Selector (Isolated – Safe) === */

.lang-item {
  position: relative;
}

#langToggle {
  background: none;
  border: none;
  font: inherit;
  cursor: pointer;
  padding: 8px 12px;
  color: inherit;
}

.lang-menu {
  position: absolute;
  right: 0;
  top: 100%;
  background: #fff;
  border: 1px solid #ddd;
  min-width: 140px;
  list-style: none;
  padding: 6px 0;
  margin: 6px 0 0;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  display: none;

  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: all 0.25s ease;
  z-index: 3000;
}

.lang-menu li {
  padding: 10px 14px;
  cursor: pointer;
  white-space: nowrap;
}

.lang-menu li:hover {
  background-color: #f5f5f5;
}

/* visible */
.lang-menu.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  display: block;
}

/* Mobile safe */
@media (max-width: 768px) {
  .lang-menu {
    right: auto;
    left: 0;
  }
}
/* ===== Header Stability Fix ===== */

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

/* keep nav in single row */
.nav-menu {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;       /* 🔴 IMPORTANT */
  gap: 22px;               /* spacing between items */
}

/* prevent text breaking into multiple lines */
.nav-menu > li {
  white-space: nowrap;
}

/* language item should behave like others */
.lang-item {
  display: flex;
  align-items: center;
}
/* ===== Logo & Nav Spacing Fix ===== */

.header-left {
  margin-right: 40px;   /* 👈 controls distance from Home */
}
/* === Make Languages look like other nav links === */

#langToggle {
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
  color: inherit;
  padding: 0;
  position: relative;
}

/* hover effect like nav-link */
#langToggle:hover {
  color: #e53935; /* same red as other menu items */
}

/* underline on hover */
#langToggle::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background-color: #e53935;
  transition: width 0.3s ease;
}

#langToggle:hover::after {
  width: 100%;
}

/* active (when dropdown open) */
.lang-menu.show + #langToggle,
.lang-item:has(.lang-menu.show) #langToggle {
  color: #e53935;
}

.lang-item:has(.lang-menu.show) #langToggle::after {
  width: 100%;
}
/* ---------- Language Switcher ---------- */
.lang-item {
  position: relative;
}

#langToggle {
  background: none;
  border: none;
  font-family: inherit;
  font-size: 16px;
  cursor: pointer;
  padding: 8px 12px;
}

#langToggle:hover {
  color: #d32f2f;
}

.lang-menu {
  position: absolute;
  top: 100%;
  right: 0;
  background: #fff;
  list-style: none;
  padding: 8px 0;
  margin: 0;
  min-width: 140px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  border-radius: 6px;
  display: none;
  z-index: 999;
}

.lang-menu li {
  padding: 10px 16px;
  cursor: pointer;
  white-space: nowrap;
}

.lang-menu li:hover {
  background: #f5f5f5;
  color: #d32f2f;
}

.lang-item.show .lang-menu {
  display: block;
}

/* underline hover like other nav items */
#langToggle::after {
  content: "";
  display: block;
  height: 2px;
  background: #d32f2f;
  width: 0;
  transition: width 0.3s ease;
}

#langToggle:hover::after {
  width: 100%;
}
/* Hide Google Translate top banner */
.goog-te-banner-frame {
  display: none !important;
}

body {
  top: 0 !important;
}

/* Hide "Powered by Google" */
.goog-logo-link,
.goog-te-gadget span {
  display: none !important;
}

/* Hide Google dropdown completely */
.goog-te-gadget {
  font-size: 0;
}
/* Kill Google top banner completely */
.goog-te-banner-frame,
.goog-te-banner-frame.skiptranslate {
  display: none !important;
}

/* Prevent page push-down */
body {
  top: 0 !important;
}

/* Hide Google dropdown & branding */
.goog-te-gadget,
.goog-te-gadget-simple,
.goog-logo-link,
.goog-te-gadget span {
  display: none !important;
}


/* ================================
   FORCE 4 cards per row (Index sectors)
================================ */

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

/* Tablet */
@media (max-width: 1024px) {
  .sectors-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

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

/* Small Mobile */
@media (max-width: 480px) {
  .sectors-grid {
    grid-template-columns: 1fr !important;
  }
}
/* ===== Our Work Hero Text Color Fix ===== */

.page-header h1 {
  color: #ffffff !important;
}

.page-header p {
  color: #ffffff !important;
}
/* ===== Our Work Hero Buttons Fix ===== */

/* Base style for buttons inside hero */
.page-header .btn {
  background: transparent !important;
  color: #ffffff !important;
  border: 2px solid #ffffff !important;
}

/* Outline button (Volunteer) */
.page-header .btn-outline {
  background: transparent !important;
  color: #ffffff !important;
  border: 2px solid #ffffff !important;
}

/* Hover effect */
.page-header .btn:hover,
.page-header .btn-outline:hover {
  background: #ffffff !important;
  color: #d62828 !important; /* your red */
}
/* ===== CTA Section Button Fix ===== */

/* Donate button – white border */
.cta-actions .primary-btn {
  background: transparent !important;
  color: #ffffff !important;
  border: 2px solid #ffffff !important;
}

/* Hover effect for Donate */
.cta-actions .primary-btn:hover {
  background: #ffffff !important;
  color: #c62828 !important; /* your red */
}
/* ==============================
   IMPACT HERO FIX (ONLY page-header)
   Paste at END of styles.css
================================ */

.page-header {
  background: #d32f2f;         /* red hero */
  color: #fff;
  text-align: center;
  padding: 80px 20px;          /* clean spacing */
}

.page-header h1 {
  color: #fff;                 /* white heading */
  font-size: 3rem;
  margin-bottom: 12px;
}

.page-header p {
  color: rgba(255,255,255,0.95);
  max-width: 900px;
  margin: 0 auto 28px;
  font-size: 1.1rem;
  line-height: 1.7;
}


/* ==============================
   IMPACT HERO – Make it same as OUR WORK hero
   (white title + two outline buttons)
================================ */

/* Make hero text white */
.page-header h1,
.page-header p {
  color: #ffffff !important;
}

/* Buttons container */
.page-header .cta-actions {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 28px;
}

/* SAME style for BOTH buttons */
.page-header .cta-actions a.btn,
.page-header .cta-actions a.primary-btn,
.page-header .cta-actions a.outline-btn {
  background: transparent !important;
  color: #ffffff !important;
  border: 2px solid #ffffff !important;
  padding: 12px 28px !important;
  border-radius: 8px !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  min-width: auto !important;      /* stops huge buttons */
  box-shadow: none !important;
  transform: none !important;
}

/* Hover effect (same like our work) */
.page-header .cta-actions a.btn:hover,
.page-header .cta-actions a.primary-btn:hover,
.page-header .cta-actions a.outline-btn:hover {
  background: #ffffff !important;
  color: #d62828 !important;
}

/* Mobile: make buttons full width */
@media (max-width: 576px) {
  .page-header .cta-actions a.btn,
  .page-header .cta-actions a.primary-btn,
  .page-header .cta-actions a.outline-btn {
    width: 100% !important;
    max-width: 320px !important;
    text-align: center !important;
  }
}
/* =========================================
   MOBILE FIRST NAV FIX (paste at END)
   Prevent nav auto-open on mobile
========================================= */

/* Default desktop stays same */
.nav-menu {
  display: flex;
  list-style: none;
  gap: 25px;
}

/* Mobile: menu CLOSED by default */
@media (max-width: 768px) {
  .nav-menu {
    display: none !important;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    box-shadow: var(--shadow);
    z-index: 2000;
  }

  .nav-menu.active {
    display: flex !important;
  }

  .mobile-menu-btn {
    display: block !important;
  }
}
/* ===============================
   MOBILE MENU FIX (ALL PAGES)
   Paste at END of styles.css
================================ */

/* default mobile nav hidden */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    z-index: 2000;
  }

  /* open only when active */
  .nav-menu.active {
    display: flex;
  }

  .mobile-menu-btn {
    display: block;
    cursor: pointer;
  }
}
/* ==============================
   MOBILE NAV: make menu scrollable (so Languages dropdown is visible)
   Paste at END of styles.css
================================ */

@media (max-width: 768px) {

  /* Mobile menu becomes a full-screen panel */
  .nav-menu {
    position: fixed !important;
    top: 85px;              /* adjust if your header height differs */
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    background: #ffffff;
    flex-direction: column;
    padding: 18px 20px 30px;
    overflow-y: auto;       /* ✅ key: allows scrolling */
    -webkit-overflow-scrolling: touch;
    display: none;          /* default closed */
    z-index: 2000;
  }

  /* When active, show it */
  .nav-menu.active {
    display: flex;
  }

  /* Keep header always above menu */
  #header {
    z-index: 3000;
  }

  /* Make language dropdown NOT overflow off-screen in mobile */
  .lang-menu {
    position: static !important;   /* ✅ becomes part of list */
    width: 100%;
    margin-top: 10px;
    max-height: 220px;             /* ✅ shows all options */
    overflow-y: auto;
    border-radius: 10px;
  }

  .lang-menu li {
    padding: 12px 14px;
  }
}
/* ✅ Hide only Google top banner (safe) */
.goog-te-banner-frame,
.goog-te-banner-frame.skiptranslate {
  display: none !important;
}

body {
  top: 0 !important;
}

/* ✅ Hide the "powered by" text only (safe) */
.goog-logo-link,
.goog-te-gadget span {
  display: none !important;
}

/* ✅ Keep translate element invisible but working */
#google_translate_element {
  position: absolute;
  left: -9999px;
  top: -9999px;
}
.hc-mini-stats{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin:14px 0 8px;
}
.hc-mini-stats .chip{
  background:#fff;
  border:1px solid #eee;
  border-radius:999px;
  padding:8px 12px;
  font-size:14px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.05);
}
@media(max-width:768px){
  .hc-mini-stats .chip{ width:100%; border-radius:14px; }
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* =========================================
   FIX: Impact section layout (all pages)
   Make each .stat a separate responsive card
   ========================================= */

.impact-stats{
  /* remove the “single big box” look from other pages */
  background: transparent !important;
  padding: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;

  /* responsive cards like index page */
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)) !important;
  gap: 22px !important;
  margin-top: 40px !important;
  align-items: stretch !important;
}

.impact-stats .stat{
  background: #fff !important;
  border-radius: 18px !important;
  padding: 30px 22px !important;
  text-align: center !important;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06) !important;
  width: 100% !important;
  margin: 0 !important;
}

/* remove the forced “bottom centered” layout */
.impact-stats .stat-center{
  grid-column: auto !important;
}

/* keep numbers neat on mobile */
.impact-stats .stat h3{
  line-height: 1.1 !important;
  margin: 0 0 10px !important;
}

@media (max-width: 480px){
  .impact-stats{
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }
  .impact-stats .stat{
    padding: 22px 16px !important;
  }
}
/* =========================================================
   FINAL HEADER / NAV OVERRIDE (ONLY HEADER)
   Fixes spacing + prevents nav text from mixing
   Paste at VERY END of styles.css
========================================================= */

/* Keep header layout stable */
header .header-container{
  display:flex;
  align-items:center;
  justify-content:space-between;
}

/* Desktop / Tablet nav spacing (prevents "HomeAboutUs..." mix) */
@media (min-width: 769px){
  header .nav-menu{
    display:flex !important;
    align-items:center !important;
    flex-wrap:nowrap !important;
    gap:25px !important;              /* ✅ same spacing between all items */
  }

  header .nav-menu > li{
    margin:0 !important;
    padding:0 !important;
    white-space:nowrap !important;
  }

  /* ✅ FIX ONLY the extra space before Languages */
  header .nav-menu > li.lang-item{
    margin-left:0 !important;         /* remove any extra margin */
    padding-left:0 !important;
  }

  /* Make Languages button behave like other links (no extra padding) */
  header #langToggle{
    padding:5px 0 !important;         /* same feel as .nav-link */
    margin:0 !important;
  }
}

/* Mobile menu stays as your existing behavior (no change) */
@media (max-width: 768px){
  header .nav-menu{
    gap:0 !important;                 /* in mobile menu vertical list */
  }
}
/* FIX: remove tiny gap before Home (desktop only) */
@media (min-width: 992px) {
  header nav {
    margin-left: -25px;
  }
}
/* ==========================
   MOBILE MENU LOOK FIX ONLY
   (does NOT affect desktop)
========================== */
@media (max-width: 768px) {

  /* mobile menu panel */
  .nav-menu.active {
    padding: 22px 18px 28px !important;
  }

  /* make items left aligned + clean */
  .nav-menu > li {
    width: 100% !important;
    text-align: left !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .nav-menu .nav-link,
  #langToggle {
    display: block !important;
    width: 100% !important;
    padding: 14px 14px !important;
    border-radius: 12px !important;
    font-size: 18px !important;
    line-height: 1.2 !important;
  }

  /* subtle separation between items */
  .nav-menu .nav-link {
    border: 1px solid rgba(0,0,0,0.06) !important;
    background: #fff !important;
  }

  /* hover/tap feel */
  .nav-menu .nav-link:active,
  #langToggle:active {
    background: rgba(211,47,47,0.08) !important;
  }

  /* keep active underline nice on mobile */
  .nav-menu .nav-link.active::after {
    left: 14px !important;
    width: calc(100% - 28px) !important;
  }

  /* languages button same as others */
  .lang-item {
    width: 100% !important;
  }

  /* dropdown inside mobile menu nicely */
  .lang-menu {
    position: static !important;
    margin: 10px 0 0 !important;
    width: 100% !important;
    border-radius: 12px !important;
    border: 1px solid rgba(0,0,0,0.06) !important;
    box-shadow: none !important;
    overflow: hidden !important;
  }

  .lang-menu li {
    padding: 12px 14px !important;
  }
}

/* ===== WHY US SECTION (2x2 professional grid) ===== */
.why-us-section {
  padding: 60px 0;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)); /* 2 on top, 2 on bottom */
  gap: 28px; /* perfect professional spacing */
  margin-top: 30px;
  align-items: stretch;
}

.why-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}

.why-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
}

.why-card h3 {
  margin: 18px 18px 10px;
  font-size: 20px;
  line-height: 1.2;
}

.why-card p {
  margin: 0 18px 20px;
  color: #555;
  line-height: 1.6;
}

/* Hover (desktop only feel) */
@media (hover: hover) {
  .why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.12);
  }
}

/* Tablet */
@media (max-width: 992px) {
  .why-us-grid {
    gap: 20px;
  }
  .why-card img {
    height: 190px;
  }
}

/* Mobile (1 column) */
@media (max-width: 600px) {
  .why-us-grid {
    grid-template-columns: 1fr;
  }
  .why-card img {
    height: 200px;
  }
}
/* ===== PARTNERS SECTION (3 x 2 GRID) ===== */
.partners-section {
  padding: 60px 0;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)); /* 3 up, 3 down */
  gap: 28px;
  margin-top: 35px;
}

.partner-item {
  background: #fff;
  border-radius: 18px;
  padding: 40px 20px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.partner-item i {
  font-size: 42px;
  color: #d32f2f; /* your red theme */
  margin-bottom: 16px;
  display: block;
}

.partner-item h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

/* Hover effect */
@media (hover: hover) {
  .partner-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.12);
  }
}

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

/* Mobile */
@media (max-width: 600px) {
  .partners-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}
/* ===== EDUCATION: KEY PROGRAMS (2 x 2 GRID) ===== */
.key-programs .programs-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)); /* 2 up, 2 down */
  gap: 28px;
  margin-top: 35px;
  align-items: stretch;
}

/* keep cards same height */
.key-programs .program-card{
  height: 100%;
}

/* Tablet: still 2 columns */
@media (max-width: 992px){
  .key-programs .programs-grid{
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }
}

/* Mobile: 1 column */
@media (max-width: 600px){
  .key-programs .programs-grid{
    grid-template-columns: 1fr;
    gap: 18px;
  }
}
/* ===== ABOUT PAGE: IMPACT PHILOSOPHY (2 x 2 GRID) ===== */

.impact-philosophy .impact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)); /* 2 up, 2 down */
  gap: 32px;
  margin-top: 40px;
  align-items: stretch;
}

/* Equal height cards */
.impact-philosophy .impact-card {
  height: 100%;
}

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

/* Mobile */
@media (max-width: 600px) {
  .impact-philosophy .impact-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}
/* ===== FLAGSHIP PROGRAMS (2 x 2 GRID FIX) ===== */

.flagship-programs .programs-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)); /* force 2 per row */
  gap: 32px;
  margin-top: 40px;
  align-items: stretch;
}

/* Equal height cards */
.flagship-programs .program-card {
  height: 100%;
}

/* Tablet */
@media (max-width: 992px) {
  .flagship-programs .programs-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .flagship-programs .programs-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}
/* ===== 2 x 2 GRID FIX (Transparency + M&E + Roadmap) ===== */

/* 2 columns on desktop */
.section .impact-grid,
.core-values .values-grid,
.transparency .impact-grid,
.monitoring-evaluation .me-grid,
.roadmap .roadmap-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  margin-top: 40px;
  align-items: stretch;
}

/* Make cards equal height */
.section .impact-card,
.core-values .value-card,
.transparency .impact-card,
.monitoring-evaluation .me-card,
.roadmap .roadmap-card {
  height: 100%;
}

/* Tablet */
@media (max-width: 992px) {
  .section .impact-grid,
  .core-values .values-grid,
  .transparency .impact-grid,
  .monitoring-evaluation .me-grid,
  .roadmap .roadmap-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .section .impact-grid,
  .core-values .values-grid,
  .transparency .impact-grid,
  .monitoring-evaluation .me-grid,
  .roadmap .roadmap-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}
/* ===== OUR WORK – KEY FOCUS AREAS (4 UP + 4 DOWN) ===== */

.icon-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  margin-top: 40px;
}

/* Card consistency */
.icon-cards .card {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Tablet: 2 cards per row */
@media (max-width: 1024px) {
  .icon-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

/* Mobile: 1 card per row */
@media (max-width: 600px) {
  .icon-cards {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}
.gallery-tabs{
  display:flex;
  gap:12px;
  margin: 20px 0;
  flex-wrap: wrap;
}

.tab-btn{
  border: 1px solid #ddd;
  background: #fff;
  padding: 10px 14px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
}

.tab-btn.active{
  border-color: var(--primary-red);
  color: var(--primary-red);
}

.gallery-content{
  display:none;
}

.gallery-content.active{
  display:block;
}

/* Responsive video */
.video-container{
  position: relative;
  padding-top: 56.25%;
  border-radius: 12px;
  overflow: hidden;
}

.video-container iframe{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
}
/* FORCE 2 up – 2 down layout */
.doc-grid {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 28px !important;
}

/* Document card styling (safe override) */
.doc-item {
  background: #ffffff;
  padding: 22px;
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.08);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

/* Icon */
.doc-icn {
  font-size: 2.2rem;
  color: #d62828; /* or var(--primary-red) */
  flex-shrink: 0;
}

/* Mobile: 1 per row */
@media (max-width: 768px) {
  .doc-grid {
    grid-template-columns: 1fr !important;
  }
}
/* ================= PROGRAMS DROPDOWN ================= */

.nav-dropdown {
  position: relative;
}

/* Dropdown menu */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  min-width: 220px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  border-radius: 6px;
  padding: 8px 0;
  display: none;
  z-index: 999;
}

/* Dropdown links */
.dropdown-menu li a {
  display: block;
  padding: 10px 16px;
  color: #333;
  font-size: 0.95rem;
  transition: background 0.3s;
}

.dropdown-menu li a:hover {
  background: #f5f5f5;
  color: #d32f2f;
}

/* Desktop hover */
@media (min-width: 992px) {
  .nav-dropdown:hover .dropdown-menu {
    display: block;
  }
}

/* Chevron icon */
.dropdown-toggle i {
  font-size: 0.7rem;
  margin-left: 4px;
}
/* ===== Programs dropdown (mobile friendly) ===== */

/* Desktop: keep your dropdown absolute */
.nav-dropdown { position: relative; }
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 220px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  border-radius: 6px;
  padding: 8px 0;
  display: none;
  z-index: 999;
}

/* Desktop hover */
@media (min-width: 992px) {
  .nav-dropdown:hover .dropdown-menu { display: block; }
}

/* Mobile: dropdown should be INSIDE the opened menu list */
@media (max-width: 991px) {
  .dropdown-menu {
    position: static;
    box-shadow: none;
    background: transparent;
    border-radius: 0;
    min-width: 100%;
    padding: 6px 0 0;
    display: none;
  }

  .nav-dropdown.open .dropdown-menu {
    display: block;
  }

  .dropdown-menu li a {
    padding: 10px 16px 10px 28px; /* indent */
  }
}
/* ================= HERO SLIDER ================= */

.hero-slider {
  position: relative;
  height: 60vh;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
  z-index: 1;
}
/* ================= HERO SLIDER IMAGE FIX ================= */

/* Default (Desktop & Tablet) */
.hero-slide {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

/* Mobile-first optimization */
@media (max-width: 768px) {
  .hero-slider {
    height: 90vh; /* better mobile height */
  }

  .hero-slide {
    background-size: contain; /* show full image */
    background-position: center top;
    background-color: #000; /* fills empty space neatly */
  }

  .hero-overlay {
    background: rgba(0, 0, 0, 0.55); /* better text readability */
    padding-top: 80px;
  }
}

/* Very small phones */
@media (max-width: 480px) {
  .hero-slider {
    height: 85vh;
  }

  .hero-slide {
    background-position: center center;
  }
}


/*.hero-overlay {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  background: rgba(11, 11, 11, 0.45); /* readability 
.hero-overlay h1,
.hero-overlay p {
  color: #fff;
} 
*/

/* ===== Fix CTA buttons (Donate + Volunteer same size) ===== */
.cta-actions{
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Force SAME size for both buttons */
.cta-actions .btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;

  height: 56px;            /* same height */
  min-width: 240px;        /* same width */
  padding: 0 28px;         /* same inner spacing */

  border-radius: 10px;
  font-weight: 600;
  line-height: 1;
  box-sizing: border-box;
  text-align: center;
  white-space: nowrap;
}

/* Primary stays filled */
.cta-actions .primary-btn{
  background: #ffffff;
  color: #c00000;
  border: 2px solid #ffffff;
}

/* Outline stays outlined but SAME sizing */
.cta-actions .outline-btn{
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

/* Hover effect */
.cta-actions .primary-btn:hover{
  background: transparent;
  color: #ffffff;
}

.cta-actions .outline-btn:hover{
  background: #ffffff;
  color: #c00000;
}

/* Mobile: stack full width nicely */
@media (max-width: 600px){
  .cta-actions{
    flex-direction: column;
    align-items: center;
  }
  .cta-actions .btn{
    width: 100%;
    max-width: 320px;
    min-width: 0;
  }
}
/* ===== CTA BUTTON ALIGNMENT FIX ===== */

.cta-actions {
  display: flex;
  justify-content: center;
  align-items: center;   /* 🔥 THIS fixes vertical mismatch */
  gap: 18px;
  flex-wrap: wrap;
}

/* Same size buttons */
.cta-actions .btn {
  display: flex;         /* 🔥 not inline-flex */
  align-items: center;   /* vertical centering */
  justify-content: center;

  height: 56px;
  min-width: 240px;
  padding: 0 28px;

  font-size: 16px;
  font-weight: 600;
  line-height: 1;        /* 🔥 critical */
  box-sizing: border-box;
  border-radius: 10px;
  white-space: nowrap;
}

/* Primary */
.cta-actions .primary-btn {
  background: #ffffff;
  color: #c00000;
  border: 2px solid #ffffff;
}

/* Outline */
.cta-actions .outline-btn {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

/* Hover */
.cta-actions .primary-btn:hover {
  background: transparent;
  color: #ffffff;
}

.cta-actions .outline-btn:hover {
  background: #ffffff;
  color: #c00000;
}

/* Mobile */
@media (max-width: 600px) {
  .cta-actions {
    flex-direction: column;
  }

  .cta-actions .btn {
    width: 100%;
    max-width: 320px;
  }
}


.healthcare-hero {
  background: #f8f8f8;
  padding: 80px 0;
}

.healthcare-hero-wrap {
  max-width: 1100px;
  margin: auto;
}

.hero-top {
  text-align: center;
  margin-bottom: 25px;
}

.hero-top h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  color: #b71c1c;
  font-weight: 700;
}

.hero-middle {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 40px;
}

.hero-middle p {
  font-size: 1.15rem;
  line-height: 1.4;
  color: #444;
  margin-bottom: 30px;
  text-align: justify;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.hero-bottom {
  display: flex;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero-bottom img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center center;
  border-radius: 20px;
  display: block;
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

/* Tablet */
@media (max-width: 992px) {
  .hero-top h1 {
    font-size: 2.7rem;
  }

  .hero-bottom img {
    height: 400px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .healthcare-hero {
    padding: 60px 0;
  }

  .hero-top h1 {
    font-size: 2rem;
  }

  .hero-middle p {
    font-size: 1rem;
  }

  .hero-bottom img {
    height: 260px;
    border-radius: 14px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
}

.intro-header {
  text-align: center;
  margin-bottom: 50px;
}

.intro-header h2 {
  font-size: 3rem;
  color: #b71c1c;
  line-height: 1.2;
  max-width: 900px;
  margin: 0 auto;
}

/* Mobile */
@media (max-width: 768px) {
  .intro-header h2 {
    font-size: 2rem;
  }
}

.program-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.program-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.program-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}

/* Top Image */
.program-image {
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.program-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Bottom Content */
.program-content {
  padding: 30px 24px;
  text-align: center;
}

.program-content .icon {
  width: 70px;
  height: 70px;
  background: #e53935;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -60px auto 20px;
  position: relative;
  z-index: 2;
  font-size: 28px;
  border: 5px solid #fff;
}

.program-content h3 {
  margin-bottom: 12px;
  color: #b71c1c;
  font-size: 1.4rem;
}

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

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

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

  .program-image {
    height: 220px;
  }
}

.health-counter-strip {
  margin-top: 40px;
  background: linear-gradient(135deg, #d32f2f, #b71c1c);
  border-radius: 16px;
  padding: 20px 15px; /* reduced height */
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  text-align: center;
}

.counter-box h3 {
  font-size: 2rem; /* smaller number */
  color: #fff;
  margin-bottom: 4px;
  font-weight: 700;
  line-height: 1;
}

.counter-box p {
  color: rgba(255,255,255,0.9);
  font-size: 13px; /* smaller text */
  margin: 0;
}

/* Tablet */
@media (max-width: 768px) {
  .health-counter-strip {
    grid-template-columns: repeat(2, 1fr);
    padding: 18px 12px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .health-counter-strip {
    grid-template-columns: 1fr;
    padding: 16px 10px;
  }

  .counter-box h3 {
    font-size: 1.7rem;
  }
}

/* =========================
   VIDEO SECTION
========================= */

.healthcare-video-section {
  background: #f9f9f9;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: 2.5rem;
  color: #b71c1c;
  margin-bottom: 12px;
}

.section-header p {
  max-width: 750px;
  margin: auto;
  color: #555;
  line-height: 1.7;
}

/* =========================
   VIDEO ROW
========================= */

.video-row {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 10px;
  scroll-behavior: smooth;
}

/* Scrollbar */
.video-row::-webkit-scrollbar {
  height: 6px;
}

.video-row::-webkit-scrollbar-thumb {
  background: rgba(0,0,0,0.15);
  border-radius: 20px;
}

/* =========================
   VIDEO CARD
========================= */

.video-card {
  position: relative;
  min-width: 260px;
  max-width: 260px;
  border-radius: 18px;
  overflow: hidden;
  background: #000;
  flex-shrink: 0;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

/* Vertical Video */
.video-card video {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

/* =========================
   PLAY / PAUSE BUTTON
========================= */

.video-btn {
  position: absolute;

  top: 50%;
  left: 50%;

  width: 65px;
  height: 65px;

  border-radius: 50%;
  border: none;

  background: rgba(0,0,0,0.7);
  color: #fff;

  font-size: 22px;
  cursor: pointer;

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

  backdrop-filter: blur(4px);

  z-index: 2;

  /* IMPORTANT */
  transform: translate(-50%, -50%);
  transition: background 0.3s ease, transform 0.3s ease;
}

/* Hover */
.video-btn:hover {
  background: #d32f2f;
  transform: translate(-50%, -50%) scale(1.08);
}
.video-card {
  position: relative;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {

  .section-header h2 {
    font-size: 2rem;
  }

  .video-card {
    min-width: 230px;
    max-width: 230px;
  }

  .video-card video {
    height: 420px;
  }
}

@media (max-width: 576px) {

  .video-card {
    min-width: 200px;
    max-width: 200px;
  }

  .video-card video {
    height: 340px;
  }

  .section-header h2 {
    font-size: 1.7rem;
  }
}

/* =========================
   STICKY HELP BUTTON
========================= */

.sticky-help-btn {
  position: fixed;

  bottom: 25px;
  left: 50%;

  transform: translateX(-50%);

  background: linear-gradient(135deg, #e53935, #b71c1c);
  color: #fff;

  padding: 14px 28px;
  border-radius: 50px;

  font-size: 16px;
  font-weight: 600;

  text-decoration: none;

  display: flex;
  align-items: center;
  gap: 10px;

  box-shadow: 0 12px 30px rgba(0,0,0,0.18);

  z-index: 9999;

  transition: all 0.3s ease;
}

/* Hover */
.sticky-help-btn:hover {
  transform: translateX(-50%) translateY(-3px);
  background: linear-gradient(135deg, #f44336, #c62828);
}

/* Icon */
.sticky-help-btn i {
  font-size: 18px;
}

/* Mobile */
@media (max-width: 576px) {

  .sticky-help-btn {
    padding: 12px 22px;
    font-size: 14px;
    bottom: 18px;
  }

}

/* =========================
   STICKY BUTTON
========================= */

.sticky-help-btn {
  position: fixed;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);

  background: linear-gradient(135deg, #e53935, #b71c1c);
  color: #fff;

  border: none;
  border-radius: 50px;

  padding: 14px 28px;

  font-size: 16px;
  font-weight: 600;

  display: flex;
  align-items: center;
  gap: 10px;

  cursor: pointer;

  box-shadow: 0 12px 30px rgba(0,0,0,0.18);

  z-index: 999;
}

.sticky-help-btn:hover {
  transform: translateX(-50%) translateY(-3px);
}

/* =========================
   POPUP
========================= */

.help-popup {
  position: fixed;
  inset: 0;

  background: rgba(0,0,0,0.6);

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

  z-index: 9999;

  padding: 20px;
}

/* ACTIVE */
.help-popup.active {
  display: flex;
}

/* =========================
   POPUP BOX
========================= */

.help-popup-content {
  position: relative;

  width: 100%;
  max-width: 500px;

  background: #fff;

  border-radius: 20px;

  padding: 40px 30px;

  animation: popupShow 0.3s ease;
}

@keyframes popupShow {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.help-popup-content h2 {
  margin-bottom: 10px;
  color: #b71c1c;
}

.help-popup-content p {
  color: #666;
  margin-bottom: 25px;
}

/* =========================
   FORM
========================= */

.form-group {
  margin-bottom: 18px;
}

.form-group input,
.form-group textarea {
  width: 100%;

  padding: 14px 16px;

  border-radius: 10px;
  border: 1px solid #ddd;

  font-size: 15px;

  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #d32f2f;
}

/* SUBMIT BUTTON */
.submit-btn {
  width: 100%;

  padding: 14px;

  border: none;
  border-radius: 12px;

  background: linear-gradient(135deg, #e53935, #b71c1c);
  color: #fff;

  font-size: 16px;
  font-weight: 600;

  cursor: pointer;
}

/* CLOSE BUTTON */
.close-popup {
  position: absolute;

  top: 14px;
  right: 18px;

  border: none;
  background: transparent;

  font-size: 30px;
  cursor: pointer;

  color: #888;
}

/* MOBILE */
@media (max-width: 576px) {

  .help-popup-content {
    padding: 30px 20px;
  }

  .sticky-help-btn {
    bottom: 18px;
    padding: 12px 22px;
    font-size: 14px;
  }

}

/* =========================
   GRID LAYOUT
========================= */

.focus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Center the 10th card on desktop/tablet */
@media (min-width: 993px) {
  .focus-card:nth-child(10) {
    grid-column: 2 / 3;
  }
}

/* =========================
   CARD
========================= */

.focus-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.07);
  transition: 0.3s ease;
}

.focus-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 35px rgba(0,0,0,0.10);
}

/* =========================
   IMAGE
========================= */

.focus-image {
  height: 190px; /* reduced */
  overflow: hidden;
}

.focus-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* =========================
   CONTENT
========================= */

.focus-content {
  padding: 22px 22px 26px;
  text-align: center;
  position: relative;
}

/* ICON */
.focus-icon {
  width: 62px;
  height: 62px;

  margin: -54px auto 16px;

  background: linear-gradient(135deg, #e53935, #b71c1c);

  border-radius: 50%;

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

  color: #fff;
  font-size: 24px;

  border: 4px solid #fff;
}

/* TITLE */
.focus-content h3 {
  font-size: 1.6rem;
  color: #222;
  margin-bottom: 12px;
  line-height: 1.2;
}

/* CONTENT */
.focus-content p {
  color: #555;
  line-height: 1.4;
  font-size: 15px;

  text-align: justify; /* JUSTIFY */

  margin-bottom: 20px;
}

/* BUTTON */
.focus-content .btn {
  border-radius: 30px;
  padding: 9px 22px;
  font-size: 14px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {

  .focus-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width: 576px) {

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

  .focus-image {
    height: 180px;
  }

  .focus-content {
    padding: 20px;
  }

  .focus-content h3 {
    font-size: 1.2rem;
  }

}

/* =========================
   SECTION
========================= */

.program-section {
  background: #f8f9fb;
}

/* =========================
   SECTION HEADER
========================= */

.section-header {
  text-align: center;
  margin-bottom: 45px;
}

.section-header h2 {
  font-size: 2.5rem;
  color: #b71c1c;
  margin-bottom: 12px;
  line-height: 1.2;
}

.section-header p {
  max-width: 760px;
  margin: auto;

  color: #555;

  line-height: 1.8;
  font-size: 15px;
}

/* =========================
   PROGRAM GRID
========================= */

.program-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

/* =========================
   CARD DESIGN
========================= */

.program-card {
  background: #fff;

  border-radius: 22px;

  overflow: hidden;

  box-shadow: 0 8px 24px rgba(0,0,0,0.07);

  transition: 0.35s ease;
}

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

  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

/* =========================
   IMAGE
========================= */

.program-image {
  height: 190px;

  overflow: hidden;

  position: relative;
}

.program-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  display: block;

  transition: 0.4s ease;
}

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

/* =========================
   CONTENT
========================= */

.program-content {
  position: relative;

  padding: 22px 24px 24px;

  text-align: center;
}

/* =========================
   ICON
========================= */

.program-content .icon {
  width: 64px;
  height: 64px;

  margin: -54px auto 16px;

  background: #d72626;

  border-radius: 50%;

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

  color: #fff;

  font-size: 24px;

  border: 5px solid #fff;
}

/* =========================
   TITLE
========================= */

.program-content h3 {
  font-size: 1.4rem;

  font-weight: 700;

  line-height: 1.3;

  color: #111827;

  margin-bottom: 14px;
}

/* =========================
   TEXT
========================= */

.program-content p {
  font-size: 14px;

  line-height: 1.4;

  color: #4b5563;

  text-align: justify;

  margin: 0;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {

  .program-cards {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width: 576px) {

  .program-cards {
    grid-template-columns: 1fr;
  }

  .program-image {
    height: 170px;
  }

  .program-content {
    padding: 20px;
  }

  .program-content h3 {
    font-size: 1.5rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }

}

/* =========================
   DREAMS NGO SECTION
========================= */

.dreams-section{
  position: relative;
  padding: 90px 0 40px;
  overflow: hidden;
  background:
    linear-gradient(rgba(10,10,10,0.78), rgba(10,10,10,0.82)),
    url("assets/healthcare.jpg") center/cover no-repeat;
}

/* subtle red overlay */
.dreams-section::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(
    90deg,
    rgba(183,28,28,0.18),
    rgba(0,0,0,0)
  );
  pointer-events:none;
}

.dreams-grid{
  position: relative;
  z-index: 2;

  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap:70px;
  align-items:center;
}

/* =====================
   LEFT CONTENT
===================== */

.dreams-tag{
  display:inline-block;
  padding:8px 18px;
  border:1px solid rgba(255,255,255,0.15);
  border-radius:50px;
  color:#f5d46b;
  font-size:13px;
  font-weight:600;
  letter-spacing:1px;
  margin-bottom:24px;
  backdrop-filter: blur(6px);
}

.dreams-content h1{
  font-size:68px;
  line-height:1.05;
  font-weight:700;
  color:#ffffff;
  margin-bottom:24px;
}

.dreams-content h1 span{
  color:#f5d46b;
}

.dreams-content p{
  color:rgba(255,255,255,0.78);
  font-size:17px;
  line-height:1.8;
  max-width:620px;
  margin-bottom:34px;
}

/* BUTTONS */

.dreams-buttons{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
  margin-bottom:34px;
}

.dream-btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:15px 28px;
  border-radius:60px;
  font-weight:600;
  transition:0.35s ease;
  font-size:15px;
}

.primary-btn{
  background:#d32f2f;
  color:#fff;
  box-shadow:0 12px 30px rgba(211,47,47,0.3);
}

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

.outline-btn{
  border:1px solid rgba(255,255,255,0.22);
  color:#fff;
  backdrop-filter: blur(8px);
}

.outline-btn:hover{
  background:#fff;
  color:#111;
}

/* =====================
   DONORS
===================== */

.dreams-donors{
  display:flex;
  align-items:center;
  gap:18px;
}

.donor-images{
  display:flex;
}

.donor-images img{
  width:52px;
  height:52px;
  border-radius:50%;
  object-fit:cover;
  border:3px solid #fff;
  margin-left:-12px;
}

.donor-images img:first-child{
  margin-left:0;
}

.donor-text{
  display:flex;
  flex-direction:column;
}

.donor-text strong{
  color:#fff;
  font-size:16px;
}

.donor-text span{
  color:rgba(255,255,255,0.7);
  font-size:14px;
}

/* =====================
   RIGHT IMAGE
===================== */

.dreams-image-wrap{
  position:relative;
}

.dreams-image-card{
  position:relative;
  background:#f5d46b;
  padding:20px;
  border-radius:26px;
  overflow:hidden;
}

.dreams-image-card img{
  width:100%;
  height:560px;
  object-fit:cover;
  border-radius:18px;
}

/* FLOAT CARD */

.donation-card{
  position:absolute;
  left:-30px;
  bottom:60px;

  background:#fff;
  padding:22px 26px;
  border-radius:18px;
  box-shadow:0 18px 40px rgba(0,0,0,0.18);
  min-width:170px;
}

.donation-card .icon{
  width:52px;
  height:52px;
  border-radius:50%;
  background:#fff3f3;
  color:#d32f2f;

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

  margin-bottom:12px;
  font-size:18px;
}

.donation-card h3{
  margin:0;
  color:#111;
  font-size:32px;
  line-height:1;
}

.donation-card p{
  margin-top:6px;
  color:#666;
  font-size:14px;
}

/* =====================
   BOTTOM BOXES
===================== */

.dream-bottom-grid{
  position:relative;
  z-index:2;

  margin-top:70px;

  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:26px;
}

.dream-box{
  position:relative;
  min-height:260px;
  border-radius:24px;
  overflow:hidden;
  border:1px solid rgba(245,212,107,0.4);

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.03),
      rgba(255,255,255,0.01)
    );

  backdrop-filter: blur(8px);
}

.dream-box::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(
      to top,
      rgba(0,0,0,0.85),
      rgba(0,0,0,0.1)
    );
}

.dream-box-content{
  position:absolute;
  left:26px;
  right:26px;
  bottom:26px;
  z-index:2;
}

.dream-box h3{
  font-size:42px;
  color:#fff;
  margin-bottom:18px;
  -webkit-text-stroke:1px rgba(255,255,255,0.35);
  color:transparent;
}

.dream-box a{
  display:inline-flex;
  align-items:center;
  gap:10px;

  background:#f5d46b;
  color:#111;
  padding:12px 20px;
  border-radius:12px;

  font-size:14px;
  font-weight:600;
}

/* =====================
   RESPONSIVE
===================== */

@media (max-width: 1100px){

  .dreams-content h1{
    font-size:56px;
  }

  .dream-bottom-grid{
    grid-template-columns:1fr;
  }

}

@media (max-width: 992px){

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

  .dreams-image-card img{
    height:480px;
  }

  .donation-card{
    left:20px;
    bottom:20px;
  }

}

@media (max-width: 768px){

  .dreams-section{
    padding:70px 0 30px;
  }

  .dreams-content h1{
    font-size:42px;
  }

  .dreams-content p{
    font-size:15px;
  }

  .dreams-image-card img{
    height:380px;
  }

  .dream-box{
    min-height:220px;
  }

  .dream-box h3{
    font-size:34px;
  }

}

@media (max-width: 576px){

  .dreams-buttons{
    flex-direction:column;
  }

  .dream-btn{
    width:100%;
    justify-content:center;
  }

  .dreams-content h1{
    font-size:36px;
  }

  .dreams-image-card{
    padding:14px;
  }

  .dreams-image-card img{
    height:320px;
  }

  .donation-card{
    min-width:140px;
    padding:18px;
  }

}

/* =========================
   NGO HERO SECTION
========================= */

.hero {
  padding: 90px 0;
  background: linear-gradient(135deg, #fff5f5, #ffffff);
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(229,57,53,0.08) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

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

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

/* LEFT CONTENT */

.hero-content .tag {
  color: #e53935;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.hero-title {
  font-size: 64px;
  line-height: 1.08;
  color: #111;
  margin-bottom: 24px;
  font-weight: 700;
}

.hero-title span {
  color: #c62828;
}

.hero-desc {
  font-size: 18px;
  line-height: 1.8;
  color: #555;
  max-width: 650px;
  margin-bottom: 35px;
}

/* BUTTONS */

.hero-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.btn-gold {
  background: #d32f2f;
  color: #fff;
  padding: 16px 34px;
  border-radius: 14px;
  font-weight: 600;
  transition: 0.3s ease;
  box-shadow: 0 10px 25px rgba(211,47,47,0.18);
}

.btn-gold:hover {
  background: #b71c1c;
  transform: translateY(-3px);
}

.btn-outline {
  padding: 16px 34px;
  border: 2px solid #d32f2f;
  border-radius: 14px;
  color: #d32f2f;
  font-weight: 600;
  transition: 0.3s ease;
  background: transparent;
}

.btn-outline:hover {
  background: #d32f2f;
  color: #fff;
}

/* STATS */

.hero-stats {
  display: flex;
  gap: 45px;
  flex-wrap: wrap;
}

.hero-stat strong {
  display: block;
  font-size: 42px;
  color: #c62828;
  margin-bottom: 6px;
  font-weight: 700;
}

.hero-stat span {
  color: #555;
  font-size: 15px;
}

/* RIGHT SIDE */

.hero-right {
  position: relative;
}

.hero-img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.img-block {
  background: linear-gradient(135deg, #ffeaea, #fff5f5);
  border-radius: 28px;
  height: 550px;
  width: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
  position: relative;
  overflow: hidden;
}

.img-block:first-child {
  grid-row: span 2;
  min-height: 520px;
}

.img-placeholder {
  font-size: 80px;
}

/* DONATION BADGE */

.donation-badge {
  position: absolute;
  top: 40px;
  right: -20px;
  background: #fff;
  padding: 24px 28px;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  text-align: center;
}

.donation-badge strong {
  display: block;
  font-size: 34px;
  color: #d32f2f;
  margin-bottom: 6px;
}

.donation-badge span {
  color: #666;
  font-size: 14px;
}

/* RESPONSIVE */

@media (max-width: 1100px) {

  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 52px;
  }

  .hero-right {
    margin-top: 20px;
  }
}

@media (max-width: 768px) {

  .hero {
    padding: 70px 0;
  }

  .hero-title {
    font-size: 40px;
  }

  .hero-desc {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-stats {
    gap: 28px;
  }

  .hero-img-grid {
    grid-template-columns: 1fr;
  }

  .img-block:first-child {
    min-height: 300px;
  }

  .img-block {
    min-height: 220px;
  }

  .donation-badge {
    position: static;
    margin-top: 20px;
    width: fit-content;
  }
}

@media (max-width: 576px) {

  .hero-title {
    font-size: 34px;
    line-height: 1.2;
  }

  .hero-stat strong {
    font-size: 34px;
  }

  .btn-gold,
  .btn-outline {
    width: 100%;
    text-align: center;
  }
}


/* =========================
   NGO STATS STRIP
========================= */

.stats-strip{
  background: linear-gradient(135deg, #c62828, #e53935);
  padding: 22px 0;
  position: relative;
  overflow: hidden;
}

.stats-strip::before{
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 22px 22px;
  pointer-events: none;
}

.stats-strip .container{
  position: relative;
  z-index: 2;
}

.stats-strip-inner{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  align-items: center;
}

.stat-item{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 10px 12px;
}

/* ICON */

.stat-icon{
  width: 62px;
  height: 62px;
  border-radius: 18px;
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #fff;
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.12);
}

/* NUMBER */

.stat-val{
  font-size: 35px;
  line-height: 1;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
  font-family: 'Poppins', sans-serif;
}

/* LABEL */

.stat-lbl{
  font-size: 10px;
  color: rgba(255,255,255,0.88);
  font-weight: 500;
  line-height: 1.4;
}

/* HOVER */

.stat-item:hover .stat-icon{
  transform: translateY(-4px);
  transition: 0.3s ease;
}

.stat-item:hover .stat-val{
  color: #ffe082;
  transition: 0.3s ease;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px){

  .stats-strip-inner{
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

}

@media (max-width: 576px){

  .stats-strip{
    padding: 30px 0;
  }

  .stats-strip-inner{
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .stat-item{
    justify-content: flex-start;
  }

  .stat-val{
    font-size: 32px;
  }

  .stat-icon{
    width: 56px;
    height: 56px;
    font-size: 24px;
  }

}
/* =========================
   DONATE SECTION
========================= */

.donate-section{
  background: #fff;
  padding: 90px 0;
}

.donate-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* LEFT IMAGE */

.img-hero-l{
  background: #fdecec !important;
  border-radius: 24px !important;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.img-hero-l img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* TAG */

.donate-right .tag{
  color: #d32f2f;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 18px;
}

/* HEADING */

.donate-right .h2{
  font-size: 50px;
  line-height: 1.4;
  color: #111827;
  margin-bottom: 24px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
}

/* TEXT */

.text-muted{
  color: #5b6472;
  font-size: 18px;
  line-height: 1.9;
  margin-bottom: 34px;
}

/* OPTIONS */

.donate-options{
  display: flex;
  gap: 18px;
  margin-bottom: 35px;
}

.donate-option{
  flex: 1;
  border: 2px solid #ececec;
  border-radius: 18px;
  padding: 24px;
  background: #fff;
  transition: 0.3s ease;
}

.donate-option strong{
  display: block;
  color: #111827;
  font-size: 24px;
  margin-bottom: 8px;
}

.donate-option span{
  color: #6b7280;
  font-size: 15px;
}

/* ACTIVE */

.donate-option.active{
  border-color: #d32f2f;
  background: #fff5f5;
  box-shadow: 0 10px 25px rgba(211,47,47,0.10);
}

/* CHECKLIST */

.checklist{
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
}

.checklist li{
  position: relative;
  padding-left: 34px;
  margin-bottom: 18px;
  color: #4b5563;
  font-size: 17px;
  line-height: 1.7;
}

.checklist li::before{
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #d32f2f;
  font-weight: 700;
}

/* BUTTON */

.btn-gold{
  background: #d32f2f;
  color: #fff;
  padding: 16px 34px;
  border-radius: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
  box-shadow: 0 12px 28px rgba(211,47,47,0.18);
}

.btn-gold:hover{
  background: #b71c1c;
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media (max-width: 992px){

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

  .donate-right .h2{
    font-size: 46px;
  }

}

@media (max-width: 768px){

  .donate-section{
    padding: 70px 0;
  }

  .donate-right .h2{
    font-size: 38px;
  }

  .donate-options{
    flex-direction: column;
  }

}

@media (max-width: 576px){

  .donate-right .h2{
    font-size: 32px;
  }

  .text-muted{
    font-size: 16px;
  }

  .btn-gold{
    width: 100%;
  }

}

/* =========================
   CTA BANNER
========================= */

.cta-banner{
  padding: 100px 0;
  background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.cta-banner::before{
  content: "IMPACT";
  position: absolute;
  left: -40px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 180px;
  font-weight: 800;
  color: rgba(211,47,47,0.04);
  line-height: 1;
  pointer-events: none;
}

/* =========================
   LAYOUT
========================= */

.cta-inner{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* =========================
   LEFT SIDE
========================= */

.cta-left{
  display: flex;
  align-items: center;
  gap: 28px;
}

.cta-img-wrap{
  width: 320px;
  height: 420px;
  border-radius: 28px;
  overflow: hidden;
  background: #fdecec;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

/* IF IMAGE ADDED */

.cta-img-wrap img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* BADGES */

.cta-badge-wrap{
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.cta-badge{
  min-width: 220px;
  padding: 28px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid #f1dada;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: 0.3s ease;
}

.cta-badge:hover{
  transform: translateY(-4px);
}

.cta-badge strong{
  display: block;
  color: #d32f2f;
  font-size: 42px;
  line-height: 1;
  margin-bottom: 10px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
}

.cta-badge span{
  color: #5f6b7a;
  font-size: 16px;
  line-height: 1.6;
}

/* =========================
   RIGHT CONTENT
========================= */

.cta-right .tag{
  color: #d32f2f;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 18px;
  display: inline-block;
}

.cta-right .h2{
  font-size: 48px;
  line-height: 1.12;
  color: #111827;
  margin-bottom: 22px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
}

.cta-right p{
  color: #5b6472;
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 34px;
  max-width: 560px;
}

/* BUTTON */

.cta-right .btn-gold{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 38px;
  background: #d32f2f;
  color: #fff;
  border-radius: 16px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
  box-shadow: 0 15px 35px rgba(211,47,47,0.18);
}

.cta-right .btn-gold:hover{
  background: #b71c1c;
  transform: translateY(-4px);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1100px){

  .cta-inner{
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .cta-right .h2{
    font-size: 52px;
  }

}

@media (max-width: 768px){

  .cta-banner{
    padding: 70px 0;
  }

  .cta-left{
    flex-direction: column;
    align-items: stretch;
  }

  .cta-img-wrap{
    width: 100%;
    height: 360px;
  }

  .cta-badge{
    min-width: 100%;
  }

  .cta-right .h2{
    font-size: 40px;
  }

  .cta-right p{
    font-size: 16px;
  }

}

@media (max-width: 576px){

  .cta-right .h2{
    font-size: 32px;
    line-height: 1.2;
  }

  .cta-img-wrap{
    height: 300px;
    border-radius: 22px;
  }

  .cta-right .btn-gold{
    width: 100%;
  }

}

@media (max-width: 768px){

  .cta-right .h2{
    font-size: 36px;
    line-height: 1.2;
  }

  .cta-right p{
    font-size: 16px;
    line-height: 1.7;
  }

}


/* =========================
   WHY SECTION
========================= */

.why-section{
  padding: 100px 0;
  background: #fff;
}

.why-grid{
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 80px;
  align-items: center;
}

/* =========================
   LEFT CONTENT
========================= */

.why-left .tag{
  color: #d32f2f;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 18px;
  display: inline-block;
}

.why-left .h2{
  font-size: 58px;
  line-height: 1.12;
  color: #111827;
  margin-bottom: 24px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
}

.why-left .text-muted{
  color: #5b6472;
  font-size: 18px;
  line-height: 1.9;
  margin-bottom: 42px;
  max-width: 620px;
}

/* =========================
   FEATURES
========================= */

.why-features{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.why-feat{
  background: #ffffff;
  border: 1px solid #f1dada;
  border-radius: 22px;
  padding: 28px;
  transition: 0.3s ease;
  box-shadow: 0 10px 25px rgba(0,0,0,0.04);
}

.why-feat:hover{
  transform: translateY(-5px);
  box-shadow: 0 18px 35px rgba(0,0,0,0.08);
}

/* ICON */

.f-icon{
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: #fff5f5;
  color: #d32f2f;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 18px;
}

/* TEXT */

.why-feat h5{
  font-size: 22px;
  line-height: 1.4;
  color: #111827;
  margin-bottom: 12px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
}

.why-feat p{
  color: #5f6b7a;
  font-size: 15px;
  line-height: 1.8;
}

/* =========================
   RIGHT SIDE
========================= */

.why-img-stack{
  position: relative;
}

.why-img-main{
  height: 520px;
  border-radius: 30px;
  background: #fdecec;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 7rem;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

/* IF IMAGE ADDED */

.why-img-main img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* COUNTER BADGE */

.why-counter-badge{
  position: absolute;
  right: -20px;
  bottom: -20px;
  background: #d32f2f;
  padding: 34px 38px;
  border-radius: 24px;
  box-shadow: 0 20px 45px rgba(211,47,47,0.25);
}

.why-counter-badge strong{
  display: block;
  color: #fff;
  font-size: 48px;
  line-height: 1;
  margin-bottom: 10px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
}

.why-counter-badge span{
  color: rgba(255,255,255,0.9);
  font-size: 15px;
  line-height: 1.6;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1100px){

  .why-grid{
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .why-left .h2{
    font-size: 48px;
  }

}

@media (max-width: 768px){

  .why-section{
    padding: 70px 0;
  }

  .why-features{
    grid-template-columns: 1fr;
  }

  .why-left .h2{
    font-size: 38px;
  }

  .why-left .text-muted{
    font-size: 16px;
  }

  .why-img-main{
    height: 380px;
  }

  .why-counter-badge{
    right: 15px;
    bottom: 15px;
    padding: 24px 28px;
  }

}

@media (max-width: 576px){

  .why-left .h2{
    font-size: 32px;
    line-height: 1.2;
  }

  .why-img-main{
    height: 300px;
    border-radius: 22px;
  }

  .why-counter-badge strong{
    font-size: 36px;
  }

}

/* HEADING */

.why-left .h2{
  font-size: 46px;
  line-height: 1.15;
  margin-bottom: 18px;
}

/* DESCRIPTION */

.why-left .text-muted{
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 560px;
}

/* FEATURES GRID */

.why-features{
  gap: 18px;
}

/* FEATURE CARD */

.why-feat{
  padding: 22px;
  border-radius: 18px;
}

/* ICON */

.f-icon{
  width: 52px;
  height: 52px;
  font-size: 24px;
  margin-bottom: 14px;
}

/* CARD TITLE */

.why-feat h5{
  font-size: 18px;
  line-height: 1.45;
  margin-bottom: 8px;
}

/* CARD TEXT */

.why-feat p{
  font-size: 14px;
  line-height: 1.7;
}

/* RIGHT IMAGE */

.why-img-main{
  height: 430px;
  border-radius: 24px;
  font-size: 5.5rem;
}

/* COUNTER BADGE */

.why-counter-badge{
  padding: 24px 28px;
  border-radius: 18px;
}

.why-counter-badge strong{
  font-size: 38px;
  margin-bottom: 6px;
}

.why-counter-badge span{
  font-size: 14px;
}

/* RESPONSIVE */

@media (max-width: 768px){

  .why-left .h2{
    font-size: 34px;
    line-height: 1.2;
  }

  .why-img-main{
    height: 320px;
  }

}

/* =========================
   CAUSES SECTION
========================= */

.causes-section{
  padding: 100px 0;
  background: #fff;
}

/* =========================
   HEADER
========================= */

.causes-header{
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  margin-bottom: 55px;
}

.causes-header .tag{
  color: #d32f2f;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 16px;
  display: inline-block;
}

.causes-header .h2{
  font-size: 48px;
  line-height: 1.15;
  color: #111827;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
}

/* BUTTON */

.btn-dark{
  background: #d32f2f;
  color: #fff;
  padding: 16px 30px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 600;
  transition: 0.3s ease;
  white-space: nowrap;
  box-shadow: 0 12px 28px rgba(211,47,47,0.18);
}

.btn-dark:hover{
  background: #b71c1c;
  transform: translateY(-3px);
}

/* =========================
   CARD GRID
========================= */

.cause-cards{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* =========================
   CARD
========================= */

.cause-card{
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid #f1dada;
  box-shadow: 0 14px 40px rgba(0,0,0,0.05);
  transition: 0.3s ease;
}

.cause-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(0,0,0,0.08);
}

/* =========================
   THUMB
========================= */

.cause-thumb{
  height: 240px;
  background: #fdecec;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}

.cause-thumb.warm{
  background: #fff1f2;
}

.cause-thumb.blue{
  background: #fef2f2;
}

/* IF IMAGE ADDED */

.cause-thumb img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* =========================
   BODY
========================= */

.cause-body{
  padding: 30px;
}

.cause-body h4{
  font-size: 28px;
  line-height: 1.3;
  color: #111827;
  margin-bottom: 14px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
}

.cause-body p{
  color: #5f6b7a;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 24px;
}

/* =========================
   PROGRESS BAR
========================= */

.cause-progress{
  height: 7px;
  background: #f1f1f1;
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 16px;
}

.cause-progress-bar{
  height: 100%;
  background: linear-gradient(90deg,#d32f2f,#ef5350);
  border-radius: 999px;
}

/* STATS */

.cause-body div[style*="justify-content:space-between"]{
  color: #6b7280 !important;
  font-size: 14px !important;
  margin-bottom: 24px !important;
}

/* BUTTON */

.cause-body .btn-gold{
  width: 100%;
  justify-content: center;
  background: #d32f2f;
  color: #fff;
  padding: 16px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 600;
  transition: 0.3s ease;
  box-shadow: 0 12px 28px rgba(211,47,47,0.15);
}

.cause-body .btn-gold:hover{
  background: #b71c1c;
  transform: translateY(-2px);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1100px){

  .cause-cards{
    grid-template-columns: repeat(2, 1fr);
  }

  .causes-header .h2{
    font-size: 40px;
  }

}

@media (max-width: 768px){

  .causes-section{
    padding: 70px 0;
  }

  .causes-header{
    flex-direction: column;
    align-items: flex-start;
  }

  .cause-cards{
    grid-template-columns: 1fr;
  }

  .causes-header .h2{
    font-size: 34px;
    line-height: 1.2;
  }

  .cause-thumb{
    height: 220px;
  }

  .cause-body{
    padding: 24px;
  }

  .cause-body h4{
    font-size: 24px;
  }

}

/* HEADER */

.causes-header{
  margin-bottom: 40px;
}

.causes-header .h2{
  font-size: 40px;
  line-height: 1.12;
}

/* CARD GRID */

.cause-cards{
  gap: 22px;
}

/* CARD */

.cause-card{
  border-radius: 20px;
}

/* IMAGE */

.cause-thumb{
  height: 190px;
  font-size: 4rem;
}

/* BODY */

.cause-body{
  padding: 22px;
}

/* TITLE */

.cause-body h4{
  font-size: 22px;
  line-height: 1.3;
  margin-bottom: 10px;
}

/* DESCRIPTION */

.cause-body p{
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 18px;
}

/* PROGRESS */

.cause-progress{
  height: 6px;
  margin-bottom: 14px;
}

/* STATS */

.cause-body div[style*="justify-content:space-between"]{
  font-size: 13px !important;
  margin-bottom: 18px !important;
}

/* BUTTON */

.cause-body .btn-gold{
  padding: 14px;
  font-size: 14px;
  border-radius: 12px;
}

/* RESPONSIVE */

@media (max-width: 768px){

  .causes-header .h2{
    font-size: 32px;
    line-height: 1.2;
  }

  .cause-thumb{
    height: 180px;
  }

}

/* =========================
   CATEGORY STRIP
========================= */

.categories-strip{
  background: linear-gradient(135deg, #fff5f5, #ffffff);
  padding: 18px 0;
  overflow: hidden;
  border-top: 1px solid #f3dcdc;
  border-bottom: 1px solid #f3dcdc;
}

/* INNER */

.cats-inner{
  display: flex;
  align-items: center;
  gap: 18px;
  width: max-content;
  animation: marquee 28s linear infinite;
}

/* PILL */

.cat-pill{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #f1dada;
  color: #5b6472;
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
  transition: 0.3s ease;
  box-shadow: 0 8px 20px rgba(0,0,0,0.03);
}

/* ACTIVE */

.cat-pill.active{
  background: #d32f2f;
  border-color: #d32f2f;
  color: #fff;
  box-shadow: 0 12px 28px rgba(211,47,47,0.20);
}

/* DOT */

.dot{
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d32f2f;
  flex-shrink: 0;
}

.cat-pill.active .dot{
  background: #fff;
}

/* HOVER */

.cat-pill:hover{
  transform: translateY(-2px);
  border-color: #d32f2f;
  color: #d32f2f;
}

.cat-pill.active:hover{
  color: #fff;
}

/* ANIMATION */

@keyframes marquee{
  from{
    transform: translateX(0);
  }
  to{
    transform: translateX(-50%);
  }
}

/* RESPONSIVE */

@media (max-width: 768px){

  .categories-strip{
    padding: 14px 0;
  }

  .cats-inner{
    gap: 14px;
  }

  .cat-pill{
    padding: 12px 20px;
    font-size: 14px;
  }

}


/* =========================
   VOLUNTEERS SECTION
========================= */

.volunteers-section{
  padding: 100px 0;
  background: #fff;
}

/* =========================
   HEADER
========================= */

.vol-header{
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  margin-bottom: 50px;
}

.vol-header .tag{
  color: #d32f2f;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 16px;
  display: inline-block;
}

.vol-header .h2{
  font-size: 46px;
  line-height: 1.12;
  color: #111827;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
}

/* BUTTON */

.vol-header .btn-dark{
  background: #d32f2f;
  color: #fff;
  padding: 16px 32px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 600;
  transition: 0.3s ease;
  box-shadow: 0 12px 28px rgba(211,47,47,0.18);
}

.vol-header .btn-dark:hover{
  background: #b71c1c;
  transform: translateY(-3px);
}

/* =========================
   CARD GRID
========================= */

.vol-cards{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* =========================
   CARD
========================= */

.vol-card{
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #f1dada;
  box-shadow: 0 14px 35px rgba(0,0,0,0.05);
  transition: 0.3s ease;
}

.vol-card:hover{
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.08);
}

/* =========================
   AVATAR
========================= */

.vol-avatar{
  height: 280px;
  background: #fdecec;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}

/* THEME COLORS */

.vol-avatar.green{
  background: #fff1f2;
}

.vol-avatar.blue{
  background: #fef2f2;
}

.vol-avatar.pink{
  background: #fdecec;
}

/* IMAGE SUPPORT */

.vol-avatar img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* =========================
   INFO
========================= */

.vol-info{
  padding: 26px 20px;
  text-align: center;
}

.vol-name{
  font-size: 28px;
  line-height: 1.3;
  color: #111827;
  margin-bottom: 8px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
}

.vol-role{
  color: #6b7280;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 22px;
}

/* =========================
   SOCIALS
========================= */

.vol-socials{
  display: flex;
  justify-content: center;
  gap: 12px;
}

.vol-socials a{
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff5f5;
  color: #d32f2f;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 600;
  transition: 0.3s ease;
}

.vol-socials a:hover{
  background: #d32f2f;
  color: #fff;
  transform: translateY(-2px);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1100px){

  .vol-cards{
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width: 768px){

  .volunteers-section{
    padding: 70px 0;
  }

  .vol-header{
    flex-direction: column;
    align-items: flex-start;
  }

  .vol-header .h2{
    font-size: 34px;
    line-height: 1.2;
  }

  .vol-cards{
    grid-template-columns: 1fr;
  }

  .vol-avatar{
    height: 240px;
    font-size: 4rem;
  }

  .vol-name{
    font-size: 24px;
  }

}

/* HEADER */

.vol-header{
  margin-bottom: 38px;
}

.vol-header .h2{
  font-size: 40px;
  line-height: 1.12;
}

/* CARD GRID */

.vol-cards{
  gap: 20px;
}

/* CARD */

.vol-card{
  border-radius: 18px;
}

/* AVATAR */

.vol-avatar{
  height: 220px;
  font-size: 4rem;
}

/* INFO */

.vol-info{
  padding: 20px 18px;
}

/* NAME */

.vol-name{
  font-size: 22px;
  line-height: 1.3;
  margin-bottom: 6px;
}

/* ROLE */

.vol-role{
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 18px;
}

/* SOCIAL */

.vol-socials{
  gap: 10px;
}

.vol-socials a{
  width: 38px;
  height: 38px;
  font-size: 14px;
}

/* RESPONSIVE */

@media (max-width: 768px){

  .vol-header .h2{
    font-size: 32px;
    line-height: 1.2;
  }

  .vol-avatar{
    height: 200px;
  }

}

/* =========================
   TESTIMONIALS SECTION
========================= */

.testimonials-section{
  padding: 100px 0;
  background: #fff;
}

/* =========================
   HEADER
========================= */

.test-header{
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  margin-bottom: 50px;
}

.test-header .tag{
  color: #d32f2f;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 16px;
  display: inline-block;
}

.test-header .h2{
  font-size: 46px;
  line-height: 1.12;
  color: #111827;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
}

/* =========================
   RATING SUMMARY
========================= */

.rating-summary{
  display: flex;
  align-items: center;
  gap: 18px;
}

.rating-circles{
  display: flex;
  align-items: center;
}

.r-circle{
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #d32f2f;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  border: 3px solid #fff;
  margin-left: -10px;
}

.r-circle:first-child{
  margin-left: 0;
}

.rating-summary strong{
  color: #111827;
  font-size: 28px !important;
  font-weight: 700;
}

.rating-summary div div{
  color: #6b7280 !important;
  font-size: 14px !important;
}

/* =========================
   TESTIMONIAL CARDS
========================= */

.test-cards{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}

.test-card{
  background: #fff;
  border: 1px solid #f1dada;
  border-radius: 24px;
  padding: 34px;
  transition: 0.3s ease;
  box-shadow: 0 12px 30px rgba(0,0,0,0.04);
}

.test-card:hover{
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

/* FEATURED CARD */

.test-card.featured{
  background: #d32f2f;
  border-color: #d32f2f;
}

.test-card.featured .test-name,
.test-card.featured .stars,
.test-card.featured .quote-mark{
  color: #fff;
}

.test-card.featured .test-sub,
.test-card.featured p{
  color: rgba(255,255,255,0.88);
}

/* =========================
   META
========================= */

.test-meta{
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

/* AVATAR */

.test-avatar{
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #fff5f5;
  color: #d32f2f;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
}

/* FEATURED AVATAR */

.test-card.featured .test-avatar{
  background: rgba(255,255,255,0.16);
  color: #fff;
}

/* NAME */

.test-name{
  font-size: 24px;
  line-height: 1.3;
  color: #111827;
  margin-bottom: 4px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
}

/* SUBTITLE */

.test-sub{
  color: #6b7280;
  font-size: 14px;
  line-height: 1.6;
}

/* QUOTE */

.quote-mark{
  font-size: 50px;
  line-height: 1;
  color: #d32f2f;
  margin-bottom: 14px;
  font-weight: 700;
}

/* STARS */

.stars{
  color: #ffb400;
  font-size: 18px;
  margin-bottom: 18px;
  letter-spacing: 2px;
}

/* TEXT */

.test-card p{
  color: #5f6b7a;
  font-size: 16px;
  line-height: 1.9;
  margin: 0;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px){

  .test-cards{
    grid-template-columns: 1fr;
  }

}

@media (max-width: 768px){

  .testimonials-section{
    padding: 70px 0;
  }

  .test-header{
    flex-direction: column;
    align-items: flex-start;
  }

  .test-header .h2{
    font-size: 34px;
    line-height: 1.2;
  }

  .test-card{
    padding: 26px;
  }

  .test-name{
    font-size: 20px;
  }

  .test-card p{
    font-size: 15px;
    line-height: 1.8;
  }

}


/* =========================
   EVENTS SECTION
========================= */

.events-section{
  padding: 90px 0;
  background: #fff;
}

/* =========================
   HEADER
========================= */

.events-header{
  text-align: center;
  margin-bottom: 50px;
}

.events-header .tag{
  color: #d32f2f;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 14px;
  display: inline-block;
}

.events-header .h2{
  font-size: 44px;
  line-height: 1.12;
  color: #111827;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
}

/* =========================
   GRID
========================= */

.events-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

/* =========================
   CARD
========================= */

.event-card{
  display: flex;
  background: #fff;
  border: 1px solid #f1dada;
  border-radius: 22px;
  overflow: hidden;
  transition: 0.3s ease;
  box-shadow: 0 12px 30px rgba(0,0,0,0.04);
}

.event-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

/* =========================
   THUMB
========================= */

.event-thumb{
  width: 180px;
  min-width: 180px;
  background: #fdecec;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

/* ALT */

.event-thumb.alt{
  background: #fff1f2;
}

/* IMAGE SUPPORT */

.event-thumb img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* =========================
   BODY
========================= */

.event-body{
  padding: 24px;
}

/* DATE */

.event-date{
  color: #d32f2f;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 14px;
}

/* TITLE */

.event-body h4{
  font-size: 24px;
  line-height: 1.3;
  color: #111827;
  margin-bottom: 12px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
}

/* TEXT */

.event-body p{
  color: #5f6b7a;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 18px;
}

/* TAG */

.event-tag{
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: #fff5f5;
  color: #d32f2f;
  font-size: 12px;
  font-weight: 600;
}

/* =========================
   BUTTON
========================= */

.btn-gold{
  background: #d32f2f;
  color: #fff;
  padding: 15px 32px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 600;
  transition: 0.3s ease;
  box-shadow: 0 12px 28px rgba(211,47,47,0.18);
}

.btn-gold:hover{
  background: #b71c1c;
  transform: translateY(-3px);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px){

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

}

@media (max-width: 768px){

  .events-section{
    padding: 70px 0;
  }

  .events-header .h2{
    font-size: 34px;
    line-height: 1.2;
  }

  .event-card{
    flex-direction: column;
  }

  .event-thumb{
    width: 100%;
    min-width: 100%;
    height: 200px;
    font-size: 3.5rem;
  }

  .event-body{
    padding: 20px;
  }

  .event-body h4{
    font-size: 20px;
  }

}

/* HEADER */

.events-header{
  margin-bottom: 38px;
}

.events-header .h2{
  font-size: 38px;
  line-height: 1.12;
}

/* GRID */

.events-grid{
  gap: 18px;
}

/* CARD */

.event-card{
  border-radius: 18px;
}

/* THUMB */

.event-thumb{
  width: 150px;
  min-width: 150px;
  font-size: 3.2rem;
}

/* BODY */

.event-body{
  padding: 20px;
}

/* DATE */

.event-date{
  font-size: 12px;
  margin-bottom: 10px;
}

/* TITLE */

.event-body h4{
  font-size: 20px;
  line-height: 1.3;
  margin-bottom: 10px;
}

/* DESCRIPTION */

.event-body p{
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 14px;
}

/* TAG */

.event-tag{
  padding: 7px 12px;
  font-size: 11px;
}

/* BUTTON */

.btn-gold{
  padding: 14px 28px;
  font-size: 14px;
  border-radius: 12px;
}

/* RESPONSIVE */

@media (max-width: 768px){

  .events-header .h2{
    font-size: 32px;
    line-height: 1.2;
  }

  .event-thumb{
    height: 170px;
    font-size: 3rem;
  }

}

/* =========================
   FAQ SECTION
========================= */

.faq-section{
  padding: 90px 0;
  background: #fff;
}

/* =========================
   GRID
========================= */

.faq-grid{
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: flex-start;
}

/* =========================
   LEFT CONTENT
========================= */

.faq-left .tag{
  color: #d32f2f;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 16px;
  display: inline-block;
}

.faq-left .h2{
  font-size: 44px;
  line-height: 1.12;
  color: #111827;
  margin-bottom: 24px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
}

.faq-left .text-muted{
  color: #5f6b7a;
  font-size: 17px;
  line-height: 1.9;
  margin-bottom: 38px;
  max-width: 520px;
}

/* =========================
   STATS
========================= */

.faq-stats{
  display: flex;
  gap: 50px;
}

.faq-stat strong{
  display: block;
  color: #d32f2f;
  font-size: 56px;
  line-height: 1;
  margin-bottom: 10px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
}

.faq-stat span{
  color: #6b7280;
  font-size: 16px;
  line-height: 1.7;
}

/* =========================
   FAQ ITEMS
========================= */

.faq-items{
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item{
  background: #fff;
  border: 1px solid #f1dada;
  border-radius: 18px;
  overflow: hidden;
  transition: 0.3s ease;
}

.faq-item.open{
  border-color: #d32f2f;
  box-shadow: 0 14px 35px rgba(211,47,47,0.08);
}

/* =========================
   QUESTION
========================= */

.faq-question{
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
}

.faq-question span:first-child{
  font-size: 22px;
  line-height: 1.4;
  color: #111827;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
}

/* ICON */

.faq-icon{
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 50%;
  background: #fff5f5;
  color: #d32f2f;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  transition: 0.3s ease;
}

.faq-item.open .faq-icon{
  background: #d32f2f;
  color: #fff;
  transform: rotate(45deg);
}

/* =========================
   ANSWER
========================= */

.faq-answer{
  padding: 0 28px 24px;
  color: #5f6b7a;
  font-size: 16px;
  line-height: 1.9;
  max-width: 95%;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px){

  .faq-grid{
    grid-template-columns: 1fr;
    gap: 50px;
  }

}

@media (max-width: 768px){

  .faq-section{
    padding: 70px 0;
  }

  .faq-left .h2{
    font-size: 34px;
    line-height: 1.2;
  }

  .faq-left .text-muted{
    font-size: 16px;
  }

  .faq-question{
    padding: 20px;
  }

  .faq-question span:first-child{
    font-size: 18px;
  }

  .faq-answer{
    padding: 0 20px 20px;
    font-size: 15px;
    line-height: 1.8;
  }

  .faq-stat strong{
    font-size: 42px;
  }

}

/* GRID */

.faq-grid{
  gap: 50px;
}

/* HEADING */

.faq-left .h2{
  font-size: 38px;
  line-height: 1.12;
  margin-bottom: 18px;
}

/* DESCRIPTION */

.faq-left .text-muted{
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 30px;
  max-width: 500px;
}

/* STATS */

.faq-stats{
  gap: 36px;
}

.faq-stat strong{
  font-size: 42px;
  margin-bottom: 6px;
}

.faq-stat span{
  font-size: 14px;
  line-height: 1.6;
}

/* FAQ LIST */

.faq-items{
  gap: 12px;
}

/* ITEM */

.faq-item{
  border-radius: 14px;
}

/* QUESTION */

.faq-question{
  padding: 18px 22px;
}

.faq-question span:first-child{
  font-size: 18px;
  line-height: 1.4;
}

/* ICON */

.faq-icon{
  width: 36px;
  height: 36px;
  min-width: 36px;
  font-size: 18px;
}

/* ANSWER */

.faq-answer{
  padding: 0 22px 18px;
  font-size: 14px;
  line-height: 1.75;
  max-width: 100%;
}

/* RESPONSIVE */

@media (max-width: 768px){

  .faq-left .h2{
    font-size: 32px;
    line-height: 1.2;
  }

  .faq-question{
    padding: 16px 18px;
  }

  .faq-question span:first-child{
    font-size: 16px;
  }

  .faq-answer{
    padding: 0 18px 16px;
    font-size: 13px;
  }

}

/* =========================
   BLOG SECTION
========================= */

.blog-section{
  padding: 90px 0;
  background: #fff;
}

/* =========================
   HEADER
========================= */

.blog-header{
  text-align: center;
  margin-bottom: 45px;
}

.blog-header .tag{
  color: #d32f2f;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 14px;
  display: inline-block;
}

.blog-header .h2{
  font-size: 46px;
  line-height: 1.12;
  color: #111827;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
}

/* =========================
   GRID
========================= */

.blog-cards{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* =========================
   CARD
========================= */

.blog-card{
  background: #fff;
  border: 1px solid #f1dada;
  border-radius: 22px;
  overflow: hidden;
  transition: 0.3s ease;
  box-shadow: 0 12px 30px rgba(0,0,0,0.04);
}

.blog-card:hover{
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

/* =========================
   THUMB
========================= */

.blog-thumb{
  height: 230px;
  background: #fdecec;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4.5rem;
}

.blog-thumb.alt1{
  background: #fff1f2;
}

.blog-thumb.alt2{
  background: #fef2f2;
}

/* IMAGE SUPPORT */

.blog-thumb img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* =========================
   BODY
========================= */

.blog-body{
  padding: 26px;
}

/* DATE */

.blog-date{
  color: #d32f2f;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 14px;
}

/* TITLE */

.blog-body h4{
  font-size: 26px;
  line-height: 1.4;
  color: #111827;
  margin-bottom: 14px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
}

/* TEXT */

.blog-body p{
  color: #5f6b7a;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 22px;
}

/* READ MORE */

.read-more{
  color: #d32f2f;
  font-size: 15px;
  font-weight: 600;
  transition: 0.3s ease;
}

.read-more:hover{
  color: #b71c1c;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1100px){

  .blog-cards{
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width: 768px){

  .blog-section{
    padding: 70px 0;
  }

  .blog-header .h2{
    font-size: 34px;
    line-height: 1.2;
  }

  .blog-cards{
    grid-template-columns: 1fr;
  }

  .blog-thumb{
    height: 200px;
    font-size: 4rem;
  }

  .blog-body{
    padding: 22px;
  }

  .blog-body h4{
    font-size: 22px;
  }

  .blog-body p{
    font-size: 14px;
  }

}

/* HEADER */

.blog-header{
  margin-bottom: 36px;
}

.blog-header .h2{
  font-size: 38px;
  line-height: 1.1;
}

/* GRID */

.blog-cards{
  gap: 20px;
}

/* CARD */

.blog-card{
  border-radius: 18px;
}

/* IMAGE */

.blog-thumb{
  height: 190px;
  font-size: 3.8rem;
}

/* BODY */

.blog-body{
  padding: 20px;
}

/* DATE */

.blog-date{
  font-size: 12px;
  margin-bottom: 10px;
}

/* TITLE */

.blog-body h4{
  font-size: 21px;
  line-height: 1.35;
  margin-bottom: 10px;
}

/* DESCRIPTION */

.blog-body p{
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 16px;
}

/* READ MORE */

.read-more{
  font-size: 14px;
}

/* RESPONSIVE */

@media (max-width: 768px){

  .blog-header .h2{
    font-size: 32px;
    line-height: 1.18;
  }

  .blog-thumb{
    height: 170px;
    font-size: 3.2rem;
  }

}

/* ==============================
   ABOUT PAGE CSS
================================ */


/* ABOUT HERO */
.about-hero {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
}

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

.about-hero .container {
  position: relative;
  z-index: 2;
  text-align: center;
}

.about-hero h1 {
  color: #fff;
  font-size: 3rem;
}

.about-hero p {
  color: #eee;
  max-width: 800px;
  margin: 15px auto 0;
  font-size: 1.2rem;
}

/* WHO WE ARE */
.who-we-are {
  padding: 80px 0;
  background: #ffffff;
}

.two-col {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.who-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.who-content .lead {
  font-size: 18px;
  color: #444;
  margin-bottom: 16px;
}

.who-content p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 18px;
}

.impact-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 32px;
}

.impact-list li {
  margin-bottom: 10px;
  font-size: 16px;
  color: #333;
}

.who-image img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

/* CORE VALUES */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}

.value-card {
  background: #f9fafb;
  padding: 30px 24px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  transition: transform 0.3s ease;
}

.value-card:hover {
  transform: translateY(-8px);
}

.value-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  background: #dc2626;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}

.value-card h3 {
  margin-bottom: 10px;
  color: #1f2937;
}

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

/* SECTORS */
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  margin-top: 40px;
}

.sector-card {
  background: #f9fafb;
  padding: 28px 24px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  transition: transform 0.3s ease;
}

.sector-card:hover {
  transform: translateY(-8px);
}

.sector-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  background: #dc2626;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}

/* IMPACT */
.impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  margin-top: 40px;
}

.impact-card {
  background: #ffffff;
  padding: 28px 24px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  transition: transform 0.3s ease;
}

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

.impact-icon {
  width: 60px;
  height: 60px;
  background: #e53935;
  color: #ffffff;
  font-size: 1.6rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

/* CTA */
.cta-actions {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .two-col {
    grid-template-columns: 1fr;
  }

  .about-hero h1 {
    font-size: 2.2rem;
  }
}

@media (max-width: 576px) {
  .about-hero h1 {
    font-size: 1.8rem;
  }

  .about-hero p {
    font-size: 1rem;
  }

  .section {
    padding: 50px 15px;
  }
}

/* =========================
   HERO IMAGE GRID
========================= */

.hero-img-grid{
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  grid-template-rows: repeat(2, 240px);
  gap: 22px;
  max-width: 560px;
}

/* COMMON BLOCK */



.img-block:hover{
  transform: translateY(-6px);
}

/* IMAGE */


/* TALL IMAGE */

.img-block.tall{
  grid-row: span 2;
  height: 100%;
}

/* SMALL IMAGES */

.img-block.small{
  height: 100%;
}

/* OVERLAY EFFECT */

.img-block::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.18),
    rgba(0,0,0,0.02)
  );
  opacity: 0;
  transition: 0.3s ease;
}

.img-block:hover::after{
  opacity: 1;
}

/* RESPONSIVE */

@media (max-width: 992px){

  .hero-img-grid{
    max-width: 100%;
  }

}

@media (max-width: 768px){

  .hero-img-grid{
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .img-block.tall{
    grid-row: auto;
    height: 320px;
  }

  .img-block.small{
    height: 220px;
  }

}

/* =========================
   DONATE SECTION
========================= */

.donate-section{
  padding: 90px 0;
  background: #fff;
}

.donate-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

/* =========================
   LEFT IMAGE
========================= */

.img-hero-l{
  height: 520px;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  background: #fdecec;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.img-hero-l img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 0.5s ease;
}

.img-hero-l:hover img{
  transform: scale(1.05);
}

/* OVERLAY */

.img-hero-l::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.22),
    rgba(0,0,0,0.02)
  );
}

/* =========================
   RIGHT CONTENT
========================= */

.donate-right .tag{
  color: #d32f2f;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: inline-block;
}

.donate-right .h2{
  font-size: 48px;
  line-height: 1.12;
  color: #111827;
  margin-bottom: 20px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
}

.text-muted{
  color: #5f6b7a;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 30px;
  max-width: 580px;
}

/* =========================
   OPTIONS
========================= */

.donate-options{
  display: flex;
  gap: 18px;
  margin-bottom: 28px;
}

.donate-option{
  flex: 1;
  padding: 22px;
  border-radius: 18px;
  border: 1px solid #f1dada;
  background: #fff;
  transition: 0.3s ease;
}

.donate-option.active{
  background: #fff5f5;
  border-color: #d32f2f;
  box-shadow: 0 12px 28px rgba(211,47,47,0.08);
}

.donate-option strong{
  display: block;
  color: #111827;
  font-size: 20px;
  line-height: 1.4;
  margin-bottom: 6px;
  font-weight: 700;
}

.donate-option span{
  color: #6b7280;
  font-size: 14px;
}

/* =========================
   CHECKLIST
========================= */

.checklist{
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}

.checklist li{
  position: relative;
  padding-left: 30px;
  color: #5f6b7a;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 14px;
}

.checklist li::before{
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #d32f2f;
  font-weight: 700;
}

/* =========================
   BUTTON
========================= */

.btn-gold{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  background: #d32f2f;
  color: #fff;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 600;
  transition: 0.3s ease;
  box-shadow: 0 12px 30px rgba(211,47,47,0.18);
}

.btn-gold:hover{
  background: #b71c1c;
  transform: translateY(-3px);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px){

  .donate-grid{
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .img-hero-l{
    height: 420px;
  }

}

@media (max-width: 768px){

  .donate-section{
    padding: 70px 0;
  }

  .donate-right .h2{
    font-size: 34px;
    line-height: 1.2;
  }

  .donate-options{
    flex-direction: column;
  }

  .img-hero-l{
    height: 320px;
    border-radius: 22px;
  }

}

/* =========================
   MISSION SECTION
========================= */

.mission-section{
  padding: 90px 0;
  background: linear-gradient(135deg,#fff5f5,#ffffff);
}

/* =========================
   HEADER
========================= */

.mission-header{
  text-align: center;
  max-width: 760px;
  margin: 0 auto 50px;
}

.mission-header .tag{
  color: #d32f2f;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 16px;
  display: inline-block;
}

.mission-header .h2{
  font-size: 46px;
  line-height: 1.12;
  color: #111827;
  margin-bottom: 14px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
}

.mission-header .text-muted{
  color: #5f6b7a;
  font-size: 16px;
  line-height: 1.8;
}

/* =========================
   CARD GRID
========================= */

.mission-cards{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* =========================
   CARD
========================= */

.mission-card{
  background: #fff;
  border-radius: 24px;
  padding: 34px 28px;
  text-align: center;
  border: 1px solid #f1dada;
  box-shadow: 0 14px 35px rgba(0,0,0,0.04);
  transition: 0.35s ease;
  position: relative;
  overflow: hidden;
}

.mission-card::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #d32f2f;
  transform: scaleX(0);
  transition: 0.35s ease;
}

.mission-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 22px 45px rgba(0,0,0,0.08);
}

.mission-card:hover::before{
  transform: scaleX(1);
}

/* =========================
   ICON
========================= */

.mission-card .icon{
  width: 82px;
  height: 82px;
  border-radius: 22px;
  background: #fff5f5;
  color: #d32f2f;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  margin: 0 auto 24px;
  transition: 0.3s ease;
}

.mission-card:hover .icon{
  background: #d32f2f;
  color: #fff;
  transform: rotate(-6deg);
}

/* =========================
   TITLE
========================= */

.mission-card h4{
  font-size: 24px;
  line-height: 1.35;
  color: #111827;
  margin-bottom: 14px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
}

/* =========================
   TEXT
========================= */

.mission-card p{
  color: #5f6b7a;
  font-size: 15px;
  line-height: 1.8;
  margin: 0;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1100px){

  .mission-cards{
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width: 768px){

  .mission-section{
    padding: 70px 0;
  }

  .mission-header{
    margin-bottom: 38px;
  }

  .mission-header .h2{
    font-size: 34px;
    line-height: 1.2;
  }

  .mission-cards{
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .mission-card{
    padding: 28px 22px;
  }

  .mission-card .icon{
    width: 70px;
    height: 70px;
    font-size: 34px;
    margin-bottom: 18px;
  }

  .mission-card h4{
    font-size: 20px;
  }

  .mission-card p{
    font-size: 14px;
    line-height: 1.7;
  }

}

/* =========================
   CTA SECTION
========================= */

.cta-banner{
  padding: 100px 0;
  background: linear-gradient(135deg,#fff5f5,#ffffff);
  overflow: hidden;
  position: relative;
}

.cta-banner::before{
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(211,47,47,0.05) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

/* =========================
   LAYOUT
========================= */

.cta-inner{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* =========================
   LEFT SIDE
========================= */

.cta-left{
  display: flex;
  align-items: center;
  gap: 24px;
}

/* IMAGE */

.cta-img-wrap{
  width: 500px;
  height: 500px;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  background: #fdecec;
  box-shadow: 0 24px 55px rgba(0,0,0,0.08);
  flex-shrink: 0;
}

.cta-img-wrap img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 0.5s ease;
}

.cta-img-wrap:hover img{
  transform: scale(1.06);
}

.cta-img-wrap::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.18),
    rgba(0,0,0,0.02)
  );
}

/* =========================
   BADGES
========================= */

.cta-badge-wrap{
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cta-badge{
  background: #fff;
  border: 1px solid #f1dada;
  border-radius: 22px;
  padding: 28px;
  min-width: 220px;
  box-shadow: 0 14px 35px rgba(0,0,0,0.05);
  transition: 0.3s ease;
}

.cta-badge:hover{
  transform: translateY(-4px);
}

.cta-badge strong{
  display: block;
  color: #d32f2f;
  font-size: 42px;
  line-height: 1;
  margin-bottom: 10px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
}

.cta-badge span{
  color: #5f6b7a;
  font-size: 15px;
  line-height: 1.7;
}

/* =========================
   RIGHT CONTENT
========================= */

.cta-right .tag{
  color: #d32f2f;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 16px;
  display: inline-block;
}

.cta-right .h2{
  font-size: 50px;
  line-height: 1.1;
  color: #111827;
  margin-bottom: 22px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
}

.cta-right p{
  color: #5f6b7a;
  font-size: 16px;
  line-height: 1.85;
  margin-bottom: 34px;
  max-width: 560px;
}

/* =========================
   BUTTON
========================= */

.btn-gold{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 34px;
  background: #d32f2f;
  color: #fff;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 600;
  transition: 0.3s ease;
  box-shadow: 0 14px 35px rgba(211,47,47,0.18);
}

.btn-gold:hover{
  background: #b71c1c;
  transform: translateY(-3px);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1100px){

  .cta-inner{
    grid-template-columns: 1fr;
    gap: 50px;
  }

}

@media (max-width: 768px){

  .cta-banner{
    padding: 70px 0;
  }

  .cta-left{
    flex-direction: column;
    align-items: stretch;
  }

  .cta-img-wrap{
    width: 100%;
    height: 340px;
  }

  .cta-badge{
    min-width: 100%;
    padding: 22px;
  }

  .cta-right .h2{
    font-size: 34px;
    line-height: 1.2;
  }

  .cta-right p{
    font-size: 15px;
  }

}

/* =========================
   WHY SECTION
========================= */

.why-section{
  padding: 100px 0;
  background: linear-gradient(135deg,#fff5f5,#ffffff);
  overflow: hidden;
}

/* =========================
   GRID
========================= */

.why-grid{
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
  align-items: center;
}

/* =========================
   LEFT CONTENT
========================= */

.why-left .tag{
  color: #d32f2f;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: inline-block;
}

.why-left .h2{
  font-size: 46px;
  line-height: 1.12;
  color: #111827;
  margin-bottom: 20px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
}

.why-left .text-muted{
  color: #5f6b7a;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 580px;
}

/* =========================
   FEATURES
========================= */

.why-features{
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 20px;
}

.why-feat{
  background: #fff;
  border: 1px solid #f1dada;
  border-radius: 22px;
  padding: 24px;
  transition: 0.35s ease;
  box-shadow: 0 12px 30px rgba(0,0,0,0.04);
}

.why-feat:hover{
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* ICON */

.f-icon{
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: #fff5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.f-icon img{
  width: 30px;
  height: 30px;
  object-fit: contain;
}

/* TITLE */

.why-feat h5{
  font-size: 20px;
  line-height: 1.4;
  color: #111827;
  margin-bottom: 10px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
}

/* TEXT */

.why-feat p{
  color: #5f6b7a;
  font-size: 14px;
  line-height: 1.75;
}

/* =========================
   RIGHT IMAGE
========================= */

.why-img-stack{
  position: relative;
}

.why-img-main{
  height: 540px;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  background: #fdecec;
  box-shadow: 0 24px 55px rgba(0,0,0,0.08);
}

.why-img-main img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 0.5s ease;
}

.why-img-main:hover img{
  transform: scale(1.05);
}

.why-img-main::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.18),
    rgba(0,0,0,0.02)
  );
}

/* =========================
   COUNTER BADGE
========================= */

.why-counter-badge{
  position: absolute;
  right: -20px;
  bottom: 30px;
  background: #d32f2f;
  padding: 26px 30px;
  border-radius: 22px;
  box-shadow: 0 20px 45px rgba(211,47,47,0.22);
}

.why-counter-badge strong{
  display: block;
  color: #fff;
  font-size: 42px;
  line-height: 1;
  margin-bottom: 8px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
}

.why-counter-badge span{
  color: rgba(255,255,255,0.9);
  font-size: 14px;
  line-height: 1.6;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1100px){

  .why-grid{
    grid-template-columns: 1fr;
    gap: 50px;
  }

}

@media (max-width: 768px){

  .why-section{
    padding: 70px 0;
  }

  .why-left .h2{
    font-size: 34px;
    line-height: 1.2;
  }

  .why-features{
    grid-template-columns: 1fr;
  }

  .why-img-main{
    height: 340px;
    border-radius: 22px;
  }

  .why-counter-badge{
    right: 15px;
    bottom: 15px;
    padding: 20px 24px;
  }

  .why-counter-badge strong{
    font-size: 32px;
  }

}


/* =========================
   CAUSES SECTION
========================= */

.causes-section{
  padding: 100px 0;
  background: linear-gradient(135deg,#fff5f5,#ffffff);
}

/* =========================
   HEADER
========================= */

.causes-header{
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  margin-bottom: 45px;
}

.causes-header .tag{
  color: #d32f2f;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: inline-block;
}

.causes-header .h2{
  font-size: 44px;
  line-height: 1.1;
  color: #111827;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
}

/* BUTTON */

.btn-dark{
  background: #d32f2f;
  color: #fff;
  padding: 16px 30px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 600;
  transition: 0.3s ease;
  box-shadow: 0 12px 30px rgba(211,47,47,0.18);
}

.btn-dark:hover{
  background: #b71c1c;
  transform: translateY(-3px);
}

/* =========================
   GRID
========================= */

.cause-cards{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
}

/* =========================
   CARD
========================= */

.cause-card{
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid #f1dada;
  box-shadow: 0 18px 40px rgba(0,0,0,0.05);
  transition: 0.35s ease;
}

.cause-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(0,0,0,0.08);
}

/* =========================
   IMAGE
========================= */

.cause-thumb{
  height: 240px;
  overflow: hidden;
  position: relative;
}

.cause-thumb img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 0.5s ease;
}

.cause-card:hover .cause-thumb img{
  transform: scale(1.08);
}

.cause-thumb::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.18),
    rgba(0,0,0,0.02)
  );
}

/* =========================
   BODY
========================= */

.cause-body{
  padding: 24px;
}

.cause-body h4{
  font-size: 24px;
  line-height: 1.3;
  color: #111827;
  margin-bottom: 12px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
}

.cause-body p{
  color: #5f6b7a;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 22px;
}

/* =========================
   PROGRESS
========================= */

.cause-progress{
  height: 7px;
  background: #f1f1f1;
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 14px;
}

.cause-progress-bar{
  height: 100%;
  background: linear-gradient(90deg,#d32f2f,#ef5350);
  border-radius: 999px;
}

/* STATS */

.cause-stats{
  display: flex;
  justify-content: space-between;
  color: #6b7280;
  font-size: 13px;
  margin-bottom: 22px;
}

/* BUTTON */

.btn-gold{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  background: #d32f2f;
  color: #fff;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 600;
  transition: 0.3s ease;
  box-shadow: 0 12px 28px rgba(211,47,47,0.18);
}

.btn-gold:hover{
  background: #b71c1c;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1100px){

  .cause-cards{
    grid-template-columns: repeat(2,1fr);
  }

}

@media (max-width: 768px){

  .causes-section{
    padding: 70px 0;
  }

  .causes-header{
    flex-direction: column;
    align-items: flex-start;
  }

  .causes-header .h2{
    font-size: 34px;
    line-height: 1.2;
  }

  .cause-cards{
    grid-template-columns: 1fr;
  }

  .cause-thumb{
    height: 210px;
  }

}


/* =========================
   EVENTS SECTION
========================= */

.events-section{
  padding: 100px 0;
  background: linear-gradient(135deg,#fff5f5,#ffffff);
}

/* =========================
   HEADER
========================= */

.events-header{
  text-align: center;
  margin-bottom: 50px;
}

.events-header .tag{
  color: #d32f2f;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: inline-block;
}

.events-header .h2{
  font-size: 44px;
  line-height: 1.1;
  color: #111827;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
}

/* =========================
   GRID
========================= */

.events-grid{
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 24px;
}

/* =========================
   CARD
========================= */

.event-card{
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid #f1dada;
  box-shadow: 0 18px 40px rgba(0,0,0,0.05);
  transition: 0.35s ease;
}

.event-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(0,0,0,0.08);
}

/* =========================
   IMAGE
========================= */

.event-thumb{
  height: 240px;
  overflow: hidden;
  position: relative;
}

.event-thumb img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 0.5s ease;
}

.event-card:hover .event-thumb img{
  transform: scale(1.08);
}

.event-thumb::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.18),
    rgba(0,0,0,0.02)
  );
}

/* =========================
   BODY
========================= */

.event-body{
  padding: 24px;
}

/* DATE */

.event-date{
  color: #d32f2f;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 12px;
}

/* TITLE */

.event-body h4{
  font-size: 24px;
  line-height: 1.3;
  color: #111827;
  margin-bottom: 12px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
}

/* TEXT */

.event-body p{
  color: #5f6b7a;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 18px;
}

/* TAG */

.event-tag{
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: #fff5f5;
  color: #d32f2f;
  font-size: 12px;
  font-weight: 600;
}

/* =========================
   BUTTON
========================= */

.events-btn-wrap{
  text-align: center;
  margin-top: 40px;
}

.btn-gold{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 34px;
  background: #d32f2f;
  color: #fff;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 600;
  transition: 0.3s ease;
  box-shadow: 0 14px 35px rgba(211,47,47,0.18);
}

.btn-gold:hover{
  background: #b71c1c;
  transform: translateY(-3px);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px){

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

}

@media (max-width: 768px){

  .events-section{
    padding: 70px 0;
  }

  .events-header{
    margin-bottom: 38px;
  }

  .events-header .h2{
    font-size: 34px;
    line-height: 1.2;
  }

  .event-thumb{
    height: 220px;
  }

  .event-body{
    padding: 20px;
  }

  .event-body h4{
    font-size: 20px;
  }

  .event-body p{
    font-size: 13px;
    line-height: 1.7;
  }

}

/* =========================
   FAQ SECTION
========================= */

.faq-section{
  padding: 100px 0;
  background: linear-gradient(135deg,#fff5f5,#ffffff);
}

.faq-grid{
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: start;
}

/* =========================
   LEFT SIDE
========================= */

.faq-left .tag{
  color: #d32f2f;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: inline-block;
}

.faq-left .h2{
  font-size: 44px;
  line-height: 1.12;
  color: #111827;
  margin-bottom: 18px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
}

.faq-left .text-muted{
  color: #5f6b7a;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 34px;
}

/* =========================
   STATS
========================= */

.faq-stats{
  display: flex;
  gap: 30px;
}

.faq-stat{
  background: #fff;
  border: 1px solid #f1dada;
  border-radius: 18px;
  padding: 22px;
  min-width: 150px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.04);
}

.faq-stat strong{
  display: block;
  color: #d32f2f;
  font-size: 38px;
  line-height: 1;
  margin-bottom: 8px;
  font-weight: 700;
}

.faq-stat span{
  color: #5f6b7a;
  font-size: 14px;
  line-height: 1.6;
}

/* =========================
   FAQ ITEMS
========================= */

.faq-items{
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* =========================
   ACCORDION ITEM
========================= */

.faq-item{
  background: #fff;
  border: 1px solid #f1dada;
  border-radius: 18px;
  overflow: hidden;
  transition: 0.3s ease;
  box-shadow: 0 10px 25px rgba(0,0,0,0.04);
}

.faq-item.open{
  border-color: #d32f2f;
  box-shadow: 0 16px 35px rgba(211,47,47,0.10);
}

/* =========================
   QUESTION
========================= */

.faq-question{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 24px;
  cursor: pointer;
}

.faq-question span:first-child{
  font-size: 18px;
  line-height: 1.4;
  color: #111827;
  font-weight: 600;
}

/* ICON */

.faq-icon{
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 50%;
  background: #fff5f5;
  color: #d32f2f;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  transition: 0.3s ease;
}

.faq-item.open .faq-icon{
  background: #d32f2f;
  color: #fff;
  transform: rotate(45deg);
}

/* =========================
   ANSWER
========================= */

.faq-answer{
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  color: #5f6b7a;
  font-size: 14px;
  line-height: 1.8;
  padding: 0 24px;
}

.faq-item.open .faq-answer{
  max-height: 300px;
  padding: 0 24px 22px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px){

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

}

@media (max-width: 768px){

  .faq-section{
    padding: 70px 0;
  }

  .faq-left .h2{
    font-size: 34px;
    line-height: 1.2;
  }

  .faq-stats{
    flex-wrap: wrap;
  }

  .faq-question{
    padding: 18px 20px;
  }

  .faq-question span:first-child{
    font-size: 16px;
  }

  .faq-item.open .faq-answer{
    padding: 0 20px 18px;
  }

}

/* =========================
   BLOG SECTION
========================= */

.blog-section{
  padding: 100px 0;
  background: linear-gradient(135deg,#fff5f5,#ffffff);
}

/* =========================
   HEADER
========================= */

.blog-header{
  text-align: center;
  margin-bottom: 50px;
}

.blog-header .tag{
  color: #d32f2f;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: inline-block;
}

.blog-header .h2{
  font-size: 44px;
  line-height: 1.1;
  color: #111827;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
}

/* =========================
   GRID
========================= */

.blog-cards{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
}

/* =========================
   CARD
========================= */

.blog-card{
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid #f1dada;
  box-shadow: 0 18px 40px rgba(0,0,0,0.05);
  transition: 0.35s ease;
}

.blog-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(0,0,0,0.08);
}

/* =========================
   IMAGE
========================= */

.blog-thumb{
  height: 240px;
  overflow: hidden;
  position: relative;
}

.blog-thumb img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 0.5s ease;
}

.blog-card:hover .blog-thumb img{
  transform: scale(1.08);
}

.blog-thumb::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.18),
    rgba(0,0,0,0.02)
  );
}

/* =========================
   BODY
========================= */

.blog-body{
  padding: 24px;
}

/* DATE */

.blog-date{
  color: #d32f2f;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 12px;
}

/* TITLE */

.blog-body h4{
  font-size: 24px;
  line-height: 1.35;
  color: #111827;
  margin-bottom: 14px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
}

/* TEXT */

.blog-body p{
  color: #5f6b7a;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* READ MORE */

.read-more{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #d32f2f;
  font-size: 14px;
  font-weight: 600;
  transition: 0.3s ease;
}

.read-more:hover{
  color: #b71c1c;
  transform: translateX(3px);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1100px){

  .blog-cards{
    grid-template-columns: repeat(2,1fr);
  }

}

@media (max-width: 768px){

  .blog-section{
    padding: 70px 0;
  }

  .blog-header{
    margin-bottom: 38px;
  }

  .blog-header .h2{
    font-size: 34px;
    line-height: 1.2;
  }

  .blog-cards{
    grid-template-columns: 1fr;
  }

  .blog-thumb{
    height: 220px;
  }

  .blog-body{
    padding: 20px;
  }

  .blog-body h4{
    font-size: 20px;
  }

  .blog-body p{
    font-size: 13px;
    line-height: 1.7;
  }

}

/* =========================
   WHATSAPP FLOAT BUTTON
========================= */

.whatsapp-float{
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 35px rgba(37,211,102,0.35);
  z-index: 9999;
  transition: 0.3s ease;
  animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover{
  transform: translateY(-4px) scale(1.05);
}

.whatsapp-float img{
  width: 32px;
  height: 32px;
  object-fit: contain;
}

/* PULSE ANIMATION */

@keyframes whatsappPulse{

  0%{
    box-shadow: 0 0 0 0 rgba(37,211,102,0.5);
  }

  70%{
    box-shadow: 0 0 0 18px rgba(37,211,102,0);
  }

  100%{
    box-shadow: 0 0 0 0 rgba(37,211,102,0);
  }

}

/* MOBILE */

@media (max-width: 768px){

  .whatsapp-float{
    width: 56px;
    height: 56px;
    right: 18px;
    bottom: 18px;
  }

  .whatsapp-float img{
    width: 28px;
    height: 28px;
  }

}

/* =========================
   MODERN NGO FOOTER
========================= */

.main-footer {
  background: #2f2f33;
  padding: 70px 0 25px;
  color: #d1d1d1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1.6fr 0.9fr 0.9fr;
  gap: 50px;
  align-items: flex-start;
}

/* LOGO */
.footer-logo-wrap {
  margin-bottom: 16px;
}

.footer-logo-wrap img {
  width: 200px;
  height: auto;
  display: block;
  object-fit: contain;
}

/* TEXT */
.footer-desc {
  color: #cfcfcf;
  line-height: 1.8;
  margin-bottom: 18px;
  font-size: 15px;
  max-width: 340px;
}

.footer-reg {
  color: #ffffff;
  margin-bottom: 24px;
  font-size: 16px;
}

/* TITLES */
.footer-column h3 {
  color: #ffffff;
  font-size: 24px;
  margin-bottom: 24px;
  position: relative;
}

.footer-column h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 42px;
  height: 3px;
  background: #e53935;
  border-radius: 30px;
}

/* LINKS */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 16px;
}

.footer-links a {
  color: #c7c7c7;
  text-decoration: none;
  transition: 0.3s ease;
  font-size: 15px;
}

.footer-links a:hover {
  color: #ffffff;
  padding-left: 6px;
}

/* 2-column variant for Our Sectors */
.footer-links-2col {
  columns: 2;
  column-gap: 18px;
}

.footer-links-2col li {
  break-inside: avoid;
}

/* SOCIALS */
.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 10px;
}

.footer-socials a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 17px;
  transition: 0.3s ease;
}

.footer-socials a:hover {
  background: #e53935;
  transform: translateY(-4px);
}

/* BOTTOM */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 55px;
  padding-top: 22px;
  text-align: center;
}

.footer-bottom p {
  color: #bdbdbd;
  font-size: 15px;
  margin-bottom: 8px;
}

.footer-credit {
  color: #ffffff;
  font-weight: 500;
}

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

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

}

@media (max-width: 576px) {

  .main-footer {
    padding: 55px 0 20px;
  }

  /* 2-column grid so Quick Links + Transparency sit side by side */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px 20px;
  }

  /* Logo/about block and Our Sectors span full width */
  .footer-about {
    grid-column: 1 / -1;
  }

  .footer-column--wide {
    grid-column: 1 / -1;
  }

  .footer-column h3 {
    font-size: 18px;
  }

  .footer-desc {
    max-width: 100%;
  }

  .footer-socials {
    justify-content: flex-start;
  }

}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: nowrap;   /* IMPORTANT */
  overflow-x: auto;    /* prevents breaking */
  margin-top: 18px;
}

.footer-socials a {
  min-width: 42px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 17px;
  transition: 0.3s ease;
  flex-shrink: 0;   /* IMPORTANT */
}

.footer-socials a:hover {
  background: #e53935;
  transform: translateY(-4px);
}

/* =========================
   DROPDOWN MENU
========================= */

.nav-dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
}

.dropdown-toggle i {
  font-size: 12px;
}

/* Dropdown box */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 250px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  padding: 8px 0 12px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  z-index: 999;
}

/* Show dropdown */
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition-delay: 0s;
}

/* Closing delay — prevents snap-close when cursor briefly leaves */
.nav-dropdown .dropdown-menu {
  transition-delay: 0.15s;
}
.nav-dropdown:hover .dropdown-menu {
  transition-delay: 0s;
}

/* Menu items */
.dropdown-menu li {
  border-bottom: 1px solid #f3f3f3;
}

.dropdown-menu li:last-child {
  border-bottom: none;
}

.dropdown-menu a {
  display: block;
  padding: 12px 18px;
  color: #333;
  font-size: 15px;
  transition: 0.3s ease;
}

.dropdown-menu a:hover {
  background: #f8f8f8;
  color: #d62828;
  padding-left: 24px;
}

/* MOBILE */
@media (max-width: 768px) {

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border-radius: 0;
    display: none;
    padding-left: 15px;
  }

  .nav-dropdown.active .dropdown-menu {
    display: block;
  }

}

/* =========================
   FOUNDER SECTION
========================= */

.founder-section {
  background: #ffffff;
}

.founder-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 60px;
  align-items: center;
}

.founder-image img {
  width: 100%;
  height: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}

.founder-content h2 {
  font-size: 2.5rem;
  line-height: 1.25;
  margin-bottom: 18px;
  color: #B71C1C;
}

.founder-lead {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 18px;
  line-height: 1.8;
}

.founder-content p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 18px;
}

.founder-info {
  margin-top: 28px;
  padding-left: 18px;
  border-left: 4px solid #DC2626;
  margin-bottom: 28px;
}

.founder-info h4 {
  font-size: 1.2rem;
  margin-bottom: 4px;
  color: #222;
}

.founder-info span {
  color: #777;
  font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 992px) {
  .founder-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .founder-content h2 {
    font-size: 2rem;
  }

  .founder-image img {
    max-height: 400px;
  }
}

@media (max-width: 576px) {

  .founder-content h2 {
    font-size: 1.7rem;
  }

  .founder-lead {
    font-size: 1rem;
  }

  .founder-image img {
    max-height: 300px;
  }
}

/* =========================
   FOUNDER SECTION
========================= */

.founder-section {
  background: #ffffff;
}

.founder-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 60px;
  align-items: center;
}

.founder-image img {
  width: 100%;
  height: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}

.founder-content h2 {
  font-size: 2.5rem;
  line-height: 1.25;
  margin-bottom: 18px;
  color: #B71C1C;
}

.founder-lead {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 18px;
  line-height: 1.8;
}

.founder-content p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 18px;
}

.founder-info {
  margin-top: 28px;
  padding-left: 18px;
  border-left: 4px solid #DC2626;
  margin-bottom: 28px;
}

.founder-info h4 {
  font-size: 1.2rem;
  margin-bottom: 4px;
  color: #222;
}

.founder-info span {
  color: #777;
  font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 992px) {
  .founder-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .founder-content h2 {
    font-size: 2rem;
  }

  .founder-image img {
    max-height: 400px;
  }
}

@media (max-width: 576px) {

  .founder-content h2 {
    font-size: 1.7rem;
  }

  .founder-lead {
    font-size: 1rem;
  }

  .founder-image img {
    max-height: 300px;
  }
}

.stat-icon {
  width: 60px;
  height: 60px;
  background: #DC2626;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  flex-shrink: 0;
}


/* Mission Card Icons */
.mission-card .icon {
  width: 72px;
  height: 72px;
  background: #DC2626;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.mission-card .icon i {
  color: #fff;
  font-size: 28px;
}

/* WHY SECTION ICONS */
.f-icon {
  width: 65px;
  height: 65px;
  background: #DC2626;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  flex-shrink: 0;
}

.f-icon i {
  color: #fff;
  font-size: 26px;
}

/* EVENT DATE ICON */
.event-date {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #DC2626;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 14px;
}

.event-date i {
  font-size: 15px;
}


/* BLOG DATE ICON */
.blog-date {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #DC2626;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 14px;
}

.blog-date i {
  font-size: 14px;
}

/* ============================================================
   SKILL DEVELOPMENT — HERO
============================================================ */
 .sd-hero {
  background: linear-gradient(135deg, #f9f9f9 0%, #fff 100%);
  border-bottom: 3px solid #c00000;
  padding: 56px 0 40px;
} 

.sd-hero-wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sd-hero-wrap .hero-top h1 {
  font-size: clamp(1.7rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #b71c1c;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 0;
}

.sd-hero-wrap .hero-middle p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #444;
  max-width: 760px;
}

.sd-hero-wrap .hero-bottom img {
  width: 100%;
  border-radius: 10px;
  display: block;
  aspect-ratio: 16 / 5;
  object-fit: cover;
  object-position: center;
}

/* ============================================================
   SKILL DEVELOPMENT — STAT CHIPS
============================================================ */
.sd-mini-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.sd-mini-stats .chip {
  background: #fff3f3;
  border: 1px solid rgba(192, 0, 0, 0.18);
  border-radius: 6px;
  padding: 6px 14px;
  font-size: 13px;
  color: #333;
}

/* ============================================================
   SKILL DEVELOPMENT — COUNTER STRIP
============================================================ */
.skill-counter-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
  padding: 28px 24px;
  background: linear-gradient(90deg, #e02424, #c81010);
  border-radius: 24px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .skill-counter-strip {
    grid-template-columns: repeat(4, 1fr);
  }
}

.skill-counter-strip .counter-box {
  text-align: center;
  color: #fff;
}

.skill-counter-strip .counter-box h3 {
  font-size: 3rem;
  font-weight: 800;
  margin: 0 0 8px;
  line-height: 1;
  color: #fff;
}

.skill-counter-strip .counter-box p {
  font-size: 1rem;
  font-weight: 500;
  margin: 0;
  color: rgba(255, 255, 255, 0.95);
}
/* ============================================================
   SKILL DEVELOPMENT — IMAGE MEDIA HELPERS
============================================================ */
.sd-media {
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
  background: #f3f4f6;
}

.sd-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-position: center;
}

.sd-16x9 { aspect-ratio: 16 / 9; }
.sd-4x3  { aspect-ratio: 4 / 3; }
.sd-cover img { object-fit: cover; }

/* ============================================================
   SKILL DEVELOPMENT — STICKY HELP BUTTON
============================================================ */
/* .sticky-help-btn {
  position: fixed;
  bottom: 100px;
  right: 20px;
  z-index: 999;
  background: #c00000;
  color: #fff;
  border: none;
  padding: 12px 18px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(192, 0, 0, 0.35);
  transition: background 0.2s ease;
}

.sticky-help-btn:hover {
  background: #a00000;
} */

/* ============================================================
   SKILL DEVELOPMENT — HELP POPUP
============================================================ */
.help-popup {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.help-popup.active {
  display: flex;
}

.help-popup-content {
  background: #fff;
  border-radius: 14px;
  padding: 32px;
  width: 90%;
  max-width: 480px;
  position: relative;
}

.close-popup {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: #555;
}

.help-form .form-group {
  margin-bottom: 14px;
}

.help-form input,
.help-form textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}

.help-form input:focus,
.help-form textarea:focus {
  border-color: #c00000;
}

.help-form .submit-btn {
  width: 100%;
  padding: 12px;
  background: #c00000;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.help-form .submit-btn:hover {
  background: #a00000;
}

/* ============================================================
   SKILL DEVELOPMENT — VIDEO CARDS (vertical reels style)
============================================================ */
.video-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 32px;
}

@media (min-width: 768px) {
  .video-row {
    grid-template-columns: repeat(3, 1fr);
  }
}

.video-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 9 / 16;
  background: #000;
  cursor: pointer;
}

.custom-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 54px;
  height: 54px;
  background: rgba(192, 0, 0, 0.88);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.video-btn:hover {
  background: rgba(160, 0, 0, 0.95);
}

/* ============================================================
   SKILL DEVELOPMENT — CTA SECTION BUTTONS
============================================================ */
.primary-btn {
  display: inline-block;
  padding: 12px 28px;
  background: #fff;
  color: #c00000;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}

.primary-btn:hover {
  background: #f0f0f0;
}

.outline-btn {
  display: inline-block;
  padding: 12px 28px;
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.outline-btn:hover {
  background: #fff;
  color: #c00000;
}

/* ============================================================
   SKILL DEVELOPMENT — GALLERY GRID (4x2, responsive)
============================================================ */
.sd-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

@media (min-width: 600px) {
  .sd-gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 992px) {
  .sd-gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.sd-gallery-item {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.sd-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.sd-gallery-item:hover img {
  transform: scale(1.04);
}

/* ============================================================
   SKILL DEVELOPMENT — INTRO TWO-COL LAYOUT
============================================================ */
.sd-intro .two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 768px) {
  .sd-intro .two-col {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

/* ============================================================
   SKILL DEVELOPMENT — RESPONSIVE ADJUSTMENTS
============================================================ */
@media (max-width: 768px) {
  .sd-hero-wrap .hero-top h1 {
    font-size: 1.7rem;
  }

  .sd-hero-wrap .hero-bottom img {
    aspect-ratio: 16 / 7;
  }

  .skill-counter-strip .counter-box h3 {
    font-size: 1.6rem;
  }

  .help-popup-content {
    padding: 24px 18px;
  }
}

/* =========================
   PROGRAM CARDS FIX
========================= */

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

/* CARD */
.program-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  transition: 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* IMAGE */
.program-img {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.program-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ICON */
.program-icon {
  width: 78px;
  height: 78px;
  background: #e53935;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  bottom: -38px;
  transform: translateX(-50%);
  border: 6px solid #fff;

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

  color: #fff;
  font-size: 30px;
}

/* CONTENT */
.program-content {
  padding: 60px 28px 30px;
  text-align: center;

  display: flex;
  flex-direction: column;
  flex: 1;
}

.program-content h3 {
  font-size: 32px;
  line-height: 1.25;
  margin-bottom: 16px;
  color: #111827;
}

.program-content p {
  font-size: 17px;
  line-height: 1.8;
  color: #4b5563;
  margin-bottom: 30px;
}

/* BUTTON */
.program-btn {
  margin-top: auto;
}

.program-btn a {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 14px 34px;
  border: 2px solid #e53935;
  border-radius: 40px;

  color: #e53935;
  font-weight: 600;
  font-size: 18px;

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

.program-btn a:hover {
  background: #e53935;
  color: #fff;
}

/* HOVER */
.program-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 50px rgba(0,0,0,0.12);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1200px) {
  .programs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .program-content h3 {
    font-size: 26px;
  }

  .program-content p {
    font-size: 16px;
  }
}

.help-popup {
  position: fixed;
  inset: 0;

  background: rgba(0,0,0,0.6);

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

  z-index: 9999;

  padding: 20px;
}

/* ACTIVE */
.help-popup.active {
  display: flex;
}

/* =========================
   POPUP BOX
========================= */

.help-popup-content {
  position: relative;

  width: 100%;
  max-width: 500px;

  background: #fff;

  border-radius: 20px;

  padding: 40px 30px;

  animation: popupShow 0.3s ease;
}

@keyframes popupShow {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.help-popup-content h2 {
  margin-bottom: 10px;
  color: #b71c1c;
}

.help-popup-content p {
  color: #666;
  margin-bottom: 25px;
}

/* =========================
   FORM
========================= */

.form-group {
  margin-bottom: 18px;
}

.form-group input,
.form-group textarea {
  width: 100%;

  padding: 14px 16px;

  border-radius: 10px;
  border: 1px solid #ddd;

  font-size: 15px;

  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #d32f2f;
}

/* SUBMIT BUTTON */
.submit-btn {
  width: 100%;

  padding: 14px;

  border: none;
  border-radius: 12px;

  background: linear-gradient(135deg, #e53935, #b71c1c);
  color: #fff;

  font-size: 16px;
  font-weight: 600;

  cursor: pointer;
}

/* CLOSE BUTTON */
.close-popup {
  position: absolute;

  top: 14px;
  right: 18px;

  border: none;
  background: transparent;

  font-size: 30px;
  cursor: pointer;

  color: #888;
}

/* MOBILE */
@media (max-width: 576px) {

  .help-popup-content {
    padding: 30px 20px;
  }

  .sticky-help-btn {
    bottom: 18px;
    padding: 12px 22px;
    font-size: 14px;
  }

}

/* =========================
   NEED HELP MULTI-STEP POPUP
========================= */

.nhp-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 20px;
}

.nhp-overlay.active {
  opacity: 1;
  visibility: visible;
}

.nhp-modal {
  background: #fff;
  width: 100%;
  max-width: 600px;
  max-height: calc(100dvh - 40px);
  border-radius: 20px;
  position: relative;
  overflow-y: auto;
  overscroll-behavior: contain;
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.nhp-overlay.active .nhp-modal {
  transform: translateY(0);
}

.nhp-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  font-size: 28px;
  color: #666;
  cursor: pointer;
  transition: color 0.3s;
  z-index: 2;
}

.nhp-close:hover {
  color: #d32f2f;
}

.nhp-header {
  padding: 30px 30px 20px;
  text-align: center;
  border-bottom: 1px solid #eee;
}

.nhp-header-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #e53935, #b71c1c);
  color: #fff;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 15px;
}

.nhp-title {
  font-size: 1.8rem;
  color: #222;
  margin-bottom: 5px;
}

.nhp-subtitle {
  color: #666;
  font-size: 15px;
}

/* PROGRESS BAR */
.nhp-progress-wrap {
  height: 4px;
  background: #eee;
  width: 100%;
}

.nhp-progress-bar {
  height: 100%;
  background: #d32f2f;
  transition: width 0.4s ease;
}

/* STEP INDICATORS */
.nhp-steps-indicator {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  background: #fafafa;
  border-bottom: 1px solid #eee;
}

.nhp-step-dot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  opacity: 0.5;
  transition: 0.3s;
}

.nhp-step-dot span {
  width: 32px;
  height: 32px;
  background: #ccc;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 14px;
}

.nhp-step-dot small {
  font-size: 12px;
  font-weight: 600;
  color: #555;
}

.nhp-step-dot.active {
  opacity: 1;
}

.nhp-step-dot.active span {
  background: #d32f2f;
}

.nhp-step-dot.done {
  opacity: 1;
}

.nhp-step-dot.done span {
  background: #2e7d32;
}

.nhp-step-line {
  flex: 1;
  height: 2px;
  background: #ddd;
  margin: 0 15px;
  margin-top: -18px;
}

.nhp-step-line.done {
  background: #2e7d32;
}

/* FORM STYLES */
#nhpForm {
  padding: 30px;
}

.nhp-hidden {
  display: none !important;
}

.nhp-hp-trap {
  display: none;
}

.nhp-section-title {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nhp-section-title i {
  color: #d32f2f;
}

.nhp-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.nhp-field label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #444;
  margin-bottom: 6px;
}

.req {
  color: #d32f2f;
}

.nhp-field input,
.nhp-field select,
.nhp-field textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s;
}

.nhp-field input:focus,
.nhp-field select:focus,
.nhp-field textarea:focus {
  border-color: #d32f2f;
}

.nhp-err {
  border-color: #d32f2f !important;
  background: #fff5f5;
}

.nhp-field-full {
  grid-column: span 2;
}

/* CONSENT */
.nhp-consent {
  margin-top: 15px;
  margin-bottom: 20px;
}

.nhp-checkbox-label {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #555;
  cursor: pointer;
  gap: 10px;
}

/* NAVIGATION */
.nhp-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.nhp-btn {
  padding: 12px 25px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s;
  border: none;
}

.nhp-btn-back {
  background: #eee;
  color: #555;
  position: absolute;
  left: 0;
}

.nhp-btn-back:hover {
  background: #ddd;
}

.nhp-btn-next,
.nhp-btn-submit {
  background: linear-gradient(135deg, #e53935, #b71c1c);
  color: #fff;
}

.nhp-btn-next:hover,
.nhp-btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(229, 57, 53, 0.3);
}

.nhp-error-msg {
  color: #d32f2f;
  font-size: 14px;
  text-align: center;
  margin-top: 15px;
  font-weight: 600;
}

.nhp-antispam {
  font-size: 12px;
  color: #888;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
}

/* CHECKMARK — custom checkbox */
.nhp-checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  accent-color: #d32f2f;
  cursor: pointer;
  margin: 0;
}
.nhp-checkmark { display: none; }

/* RESPONSIVE — tablet and below */
@media (max-width: 640px) {
  .nhp-overlay {
    padding: 12px;
    align-items: flex-end;
  }

  .nhp-modal {
    max-height: calc(100dvh - 24px);
    overflow-y: auto;
    overscroll-behavior: contain;
    border-radius: 20px 20px 16px 16px;
    -webkit-overflow-scrolling: touch;
  }

  .nhp-header {
    padding: 20px 20px 14px;
  }

  .nhp-header-icon {
    width: 46px;
    height: 46px;
    font-size: 18px;
    margin-bottom: 10px;
  }

  .nhp-title {
    font-size: 1.35rem;
  }

  .nhp-subtitle {
    font-size: 13px;
  }

  .nhp-steps-indicator {
    padding: 12px 16px;
  }

  .nhp-step-dot span {
    width: 26px;
    height: 26px;
    font-size: 12px;
  }

  .nhp-step-dot small {
    font-size: 10px;
  }

  .nhp-step-line {
    margin: 0 8px;
    margin-top: -14px;
  }

  #nhpForm {
    padding: 18px 16px 20px;
  }

  .nhp-grid-2 {
    grid-template-columns: 1fr;
  }

  .nhp-field-full {
    grid-column: span 1;
  }

  .nhp-field input,
  .nhp-field select,
  .nhp-field textarea {
    padding: 10px 12px;
    font-size: 16px; /* prevents iOS zoom on focus */
  }

  .nhp-section-title {
    font-size: 1rem;
    margin-bottom: 14px;
  }

  .nhp-nav {
    margin-top: 18px;
    padding-top: 14px;
  }

  .nhp-btn {
    padding: 11px 20px;
    font-size: 14px;
  }
}

/* Very small phones — 360px and below */
@media (max-width: 380px) {
  .nhp-overlay {
    padding: 8px;
  }

  .nhp-header {
    padding: 16px 14px 12px;
  }

  .nhp-title {
    font-size: 1.15rem;
  }

  .nhp-steps-indicator {
    padding: 10px 10px;
  }

  .nhp-step-dot small {
    display: none;
  }

  #nhpForm {
    padding: 14px 12px 16px;
  }

  .nhp-btn {
    padding: 10px 16px;
    font-size: 13px;
  }

  .nhp-close {
    font-size: 22px;
    top: 10px;
    right: 14px;
  }
}

/* ========================= NHP THANK-YOU OVERLAY ========================= */

.nhp-ty-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 20px;
}

.nhp-ty-overlay.active {
  opacity: 1;
  visibility: visible;
}

.nhp-thankyou-box {
  background: #fff;
  border-radius: 20px;
  padding: 48px 36px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
  animation: nhpTySlideIn 0.35s ease forwards;
}

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

.nhp-ty-icon {
  font-size: 56px;
  color: #25c862;
  margin-bottom: 16px;
  line-height: 1;
}

.nhp-thankyou-box h2 {
  font-size: 26px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 12px;
}

.nhp-thankyou-box p {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
  margin: 0 0 8px;
}

.nhp-ty-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: #fff;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  margin: 20px 0 14px;
  transition: background 0.2s;
}

.nhp-ty-wa:hover {
  background: #1ebe5a;
}

.nhp-ty-close {
  display: block;
  margin: 0 auto;
  background: none;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 9px 28px;
  font-size: 13px;
  color: #888;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}

.nhp-ty-close:hover {
  border-color: #c00000;
  color: #c00000;
}

@media (max-width: 480px) {
  .nhp-thankyou-box {
    padding: 32px 18px;
  }
  .nhp-ty-icon {
    font-size: 44px;
  }
  .nhp-ty-wa {
    padding: 11px 20px;
    font-size: 13px;
  }
}

@media (max-width: 380px) {
  .nhp-thankyou-box {
    padding: 24px 14px;
  }
  .nhp-thankyou-box h2 {
    font-size: 20px;
  }
  .nhp-ty-icon {
    font-size: 38px;
  }
}


/* =====================================================
   MOBILE HEADER MASTER FIX — appended last, wins all
   Covers all phones (≤991px). JS sets nav top dynamically.
====================================================== */

/* Show hamburger on all mobile/tablet, hide desktop nav */
@media (max-width: 991px) {
  .mobile-menu-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #d32f2f;
    cursor: pointer;
    padding: 6px;
    background: none;
    border: none;
    z-index: 3100;
  }

  header .nav-menu {
    display: none !important;
    position: fixed !important;
    top: 70px;            /* fallback; JS overrides this at runtime */
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    background: #ffffff !important;
    flex-direction: column !important;
    gap: 0 !important;
    padding: 16px 18px 30px !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
    z-index: 3000 !important;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12) !important;
  }

  header .nav-menu.active {
    display: flex !important;
  }

  /* Nav items full-width rows */
  header .nav-menu > li {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  /* Nav links: large, touch-friendly */
  header .nav-menu .nav-link,
  header #langToggle {
    display: block !important;
    width: 100% !important;
    padding: 13px 14px !important;
    font-size: 1rem !important;
    border-radius: 10px !important;
    border: 1px solid rgba(0,0,0,0.07) !important;
    background: #fff !important;
    color: #222 !important;
    margin-bottom: 4px !important;
  }

  header .nav-menu .nav-link:active {
    background: rgba(211,47,47,0.07) !important;
  }

  /* Dropdown stays inline in the panel */
  header .dropdown-menu {
    position: static !important;
    box-shadow: none !important;
    background: transparent !important;
    border-radius: 0 !important;
    min-width: 100% !important;
    padding: 4px 0 0 !important;
    display: none !important;
  }

  header .nav-dropdown.open .dropdown-menu {
    display: block !important;
  }

  header .dropdown-menu li a {
    padding: 10px 14px 10px 28px !important;
    font-size: 0.95rem !important;
    color: #444 !important;
  }
}

/* Keep header above the mobile panel */
#header {
  position: sticky !important;
  top: 0 !important;
  z-index: 3100 !important;
}

/* ===== HAMBURGER → RIGHT CORNER (mobile) ===== */
@media (max-width: 991px) {
  /* Remove nav wrapper from flex flow so it can't push hamburger inward */
  header nav {
    position: fixed;
    pointer-events: none;
  }
  header nav .nav-menu.active {
    pointer-events: auto;
  }

  /* Force hamburger to the far right */
  .mobile-menu-btn {
    margin-left: auto !important;
    order: 2 !important;
  }
}

.hero-slider {
  position: relative;
  width: 500px;
  height: 500px;          /* desktop height */
  overflow: hidden;
  background: transparent; /* no black background */
  margin: 0;              /* prevents unwanted gaps */
  padding: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;       /* fills the slider */
  background-position: center;  /* keep center crop */
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

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

/* Tablet */
@media (max-width: 992px) {
  .hero-slider {
    height: 320px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .hero-slider {
    height: 240px; /* 🔥 this matches your screenshot style */
  }

  .hero-slide {
    background-position: center;
  }
}

/* Small phones */
@media (max-width: 480px) {
  .hero-slider {
    height: 210px;
  }
}

/* Hero content below slider */
.hero-content {
  padding: 40px 0;
}
.hero-slider::before,
.hero-slider::after {
  content: none !important;
}

/* ── Hero single full image override ── */
.hero-inner {
  grid-template-columns: 1fr 1.4fr !important;
}

.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-img-grid {
  display: block !important;
  width: min(100%, 420px) !important;
  height: 520px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.hero-img-grid .img-block {
  width: 100% !important;
  height: 100% !important;
  min-height: unset !important;
  border-radius: 20px !important;
}

.hero-img-grid .img-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Index hero slider image override */
#heroSlider.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

#heroSlider .hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  pointer-events: none;
}

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

#heroSlider .hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ── Hero responsive overrides ── */
@media (max-width: 1024px) {
  .hero {
    min-height: unset !important;
  }
  .hero-inner {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
  }
  .hero-right {
    order: -1 !important;
  }
  .hero-content {
    order: 1 !important;
    padding: 28px 0 24px !important;
    text-align: center !important;
  }
  .hero-content .tag,
  .hero-title,
  .hero-desc,
  .hero-stat {
    text-align: center !important;
  }
  .hero-actions {
    justify-content: center !important;
    align-items: center !important;
  }
  .hero-stats {
    justify-content: center !important;
  }
  .hero-img-grid {
    height: 320px !important;
    border-radius: 0 !important;
    width: 100vw !important;
    margin-left:0.5px;
  }
  .hero-img-grid .img-block {
    border-radius: 0 !important;
  }
}

@media (max-width: 768px) {
  .hero-right {
    display: flex !important;
    justify-content: center !important;
  }

  .hero-img-grid {
    height: 260px !important;
    width: min(100%, 360px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .hero-content,
  .hero-content .tag,
  .hero-title,
  .hero-desc,
  .hero-stat {
    text-align: center !important;
  }
  .hero-desc {
    font-size: 0.95rem !important;
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .hero-stats {
    gap: 12px !important;
    margin-top: 24px !important;
    justify-content: center !important;
    align-items: center !important;
  }
  .hero-actions {
    flex-direction: row !important;
    flex-wrap: wrap !important;
    gap: 12px !important;
    justify-content: center !important;
    align-items: center !important;
  }
}

@media (max-width: 480px) {
  .hero-img-grid {
    height: 230px !important;
  }
  .hero-content {
    padding: 22px 0 20px !important;
  }
  .hero-title {
    font-size: clamp(1.7rem, 7.5vw, 2.2rem) !important;
  }
  .hero-stats {
    gap: 10px !important;
    margin-top: 20px !important;
  }
  .hero-stat strong {
    font-size: 1.3rem !important;
  }
}

@media (max-width: 360px) {
  .hero-img-grid {
    height: 195px !important;
  }
  .hero-content {
    padding: 18px 0 16px !important;
  }
  .hero-title {
    font-size: 1.55rem !important;
  }
}




.hero-img-grid .img-block {
  width: 500px;
  height: 500px;
  min-height: unset !important;
  border-radius: 20px !important;
}

.hero-img-grid .img-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.right-sidebar{
  display: flex;
  flex-direction: column;
  align-items: center;
}

.rs-image-card{
  padding: 0;
  overflow: hidden;
  border-radius: 14px;
  width: min(100%, 300px);
  margin: 0 auto 20px;
  background: #fff;
}

.rs-image-card img{
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: center;
  border-radius: inherit;
}

@media (min-width: 992px){
  .right-sidebar{
    position: sticky;
    top: 20px;
    align-self: start;
  }
}

/* ── Sidebar right image ── */
/* Image is 720x1280. Black bar top=172px, bottom=127px. Content=720x981.
   object-position Y = 172 / (1280-981) = 172/299 = 57.5% crops bars exactly. */
.sidebar-right-img {
  width: 100%;
  aspect-ratio: 720 / 981;
  border-radius: 14px;
  overflow: hidden;
  margin: 0 auto 20px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  margin-top:145px;
}

.sidebar-right-img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 57.5%;
}


/* MOBILE ONLY */
@media (max-width: 768px){

  .video-card{
    width: 90%;
    max-width: 320px;
    height: 320px; /* decreased card height */
    margin: 0 auto;
  }

  .custom-video{
    width: 100%;
    height: 100%;
    object-fit: cover; /* fixes black empty area */
    display: block;
  }

}

.program-content h3 {
  font-size: 25px;
  line-height: 1.5;
  margin-bottom: 16px;
  color: #111827;
}

.program-content p {
  font-size: 14px;
  line-height: 1.5;
  color: #4b5563;
  margin-bottom: 20px;
}

/* ==============================
   SITE SEARCH
================================ */
.header-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}

.search-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--dark-gray);
  font-size: 1.05rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 36px;
  height: 36px;
}

.search-btn:hover {
  color: var(--primary-red);
  background: rgba(211, 47, 47, 0.08);
}

.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 99999;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 90px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.search-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.search-box {
  background: #fff;
  border-radius: 14px;
  padding: 22px 22px 16px;
  width: 100%;
  max-width: 640px;
  margin: 0 20px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.28);
  transform: translateY(-16px);
  transition: transform 0.2s ease;
}

.search-overlay.active .search-box {
  transform: translateY(0);
}

.search-input-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 2px solid #e5e5e5;
  border-radius: 8px;
  padding: 10px 14px;
  margin-bottom: 14px;
  transition: border-color 0.2s;
}

.search-input-wrap:focus-within {
  border-color: var(--primary-red);
}

.search-input-wrap > i {
  color: #aaa;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.search-input-wrap input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 1rem;
  font-family: 'Roboto', sans-serif;
  color: var(--dark-gray);
  background: none;
  min-width: 0;
}

.search-input-wrap input::placeholder {
  color: #bbb;
}

.search-close {
  background: none;
  border: none;
  cursor: pointer;
  color: #aaa;
  font-size: 0.95rem;
  padding: 4px;
  transition: color 0.2s;
  flex-shrink: 0;
  line-height: 1;
}

.search-close:hover {
  color: var(--primary-red);
}

.search-results {
  max-height: 360px;
  overflow-y: auto;
  margin: 0 -4px;
}

.search-empty {
  text-align: center;
  color: #aaa;
  padding: 28px 0 20px;
  font-size: 0.9rem;
}

.search-result-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 11px 10px;
  border-radius: 8px;
  text-decoration: none;
  color: var(--dark-gray);
  transition: background 0.15s;
}

.search-result-item:hover {
  background: rgba(211, 47, 47, 0.06);
}

.search-result-icon {
  width: 38px;
  height: 38px;
  background: rgba(211, 47, 47, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-red);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.search-result-info {
  flex: 1;
  min-width: 0;
}

.search-result-title {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--dark-gray);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.search-result-desc {
  font-size: 0.78rem;
  color: var(--medium-gray);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 2px;
}

.search-result-badge {
  font-size: 0.68rem;
  padding: 3px 8px;
  border-radius: 20px;
  background: rgba(211, 47, 47, 0.09);
  color: var(--primary-red);
  font-weight: 500;
  flex-shrink: 0;
  white-space: nowrap;
}

.search-hint {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #f0f0f0;
  font-size: 0.75rem;
  color: #ccc;
}

.search-hint kbd {
  background: #f4f4f4;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 2px 5px;
  font-size: 0.7rem;
  font-family: monospace;
  color: #666;
}

@media (max-width: 768px) {
  .search-overlay {
    padding-top: 70px;
  }

  .search-box {
    margin: 0 12px;
    padding: 16px 16px 12px;
  }

  .search-results {
    max-height: 280px;
  }

  .search-hint {
    display: none;
  }
}

/* ===================================================
   GLOBAL RESPONSIVE OVERFLOW FIX
=================================================== */

html {
  overflow-x: hidden;
}

/* ===================================================
   BANK TABLE — donate.html
=================================================== */

.bank-table {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-collapse: collapse;
}

.bank-table tr {
  border-bottom: 1px solid #f0f0f0;
}

.bank-table td {
  padding: 10px 14px;
  vertical-align: top;
  font-size: 0.9rem;
  word-break: break-word;
}

.bank-table td:first-child {
  font-weight: 600;
  color: #444;
  white-space: nowrap;
  min-width: 130px;
}

/* ===================================================
   BUDGET TABLE — programs.html
=================================================== */

.budget-table {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-collapse: collapse;
}

.budget-table th,
.budget-table td {
  padding: 10px 14px;
  text-align: left;
  border: 1px solid #e0e0e0;
  font-size: 0.9rem;
  white-space: nowrap;
}

.budget-table thead th {
  background: #c00000;
  color: #fff;
  font-weight: 600;
}

.budget-table tbody tr:nth-child(even) {
  background: #fafafa;
}

@media (max-width: 576px) {
  .budget-table th,
  .budget-table td {
    font-size: 0.82rem;
    padding: 8px 10px;
  }
}

/* ===================================================
   TEAM CARDS — about.html  (override inline styles)
=================================================== */

.team-card {
  max-width: 260px !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

.team-photo {
  max-width: 200px !important;
  width: 100% !important;
  aspect-ratio: 1 !important;
  height: auto !important;
}

@media (max-width: 360px) {
  .team-card {
    max-width: 100% !important;
  }
  .team-photo {
    max-width: 160px !important;
  }
}

/* ===================================================
   DREAMS SECTION — floating card containment
=================================================== */

.dreams-image-wrap {
  overflow: hidden;
}

/* ===================================================
   NAV — small tablets (769px–900px)
=================================================== */

@media (max-width: 900px) and (min-width: 769px) {
  header .nav-menu {
    gap: 14px !important;
  }
  header .nav-menu > li > a,
  header .nav-menu > li > .dropdown-toggle {
    font-size: 0.85rem !important;
  }
}

/* ===================================================
   SECTION PADDING — tighter on small screens
=================================================== */

@media (max-width: 480px) {
  .section,
  [class*="section"] {
    padding-left: 15px;
    padding-right: 15px;
  }
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
}
