: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 {
            background-color: var(--white);
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }
        
        .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: 60px;
            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-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: 100px;      /* desktop size */
  height: 100px;     /* keeps square */
  flex-shrink: 0;
}

/* PNG image */
.logo img {
  width: 100%;
  height: 100%;
  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;
  gap: 6px;   /* 👈 CHANGE THIS TO CONTROL SPACE */
}

/* Logo */
.logo {
  width: 100px;
  height: 100px;
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

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

/* Mobile */
@media (max-width: 768px) {
  .header-left {
    gap: 4px;
  }

  .logo {
    width: 70px;
    height: 70px;
  }

  .logo-text img {
    height: 40px;
  }
}

.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: 3 / 4;   /* 🔥 FIXES HEIGHT ISSUE */
}

/* 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: 4 / 3;
  }
}


/* ==============================
   ABOUT PAGE BASE
================================ */
.about-hero {
  background-size: cover;
  background-position: center;
  position: relative;
}

.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: #1a365d;
  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: #0f2a44;
}

.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;
  }
}
