body {
    font-family: 'Poppins', sans-serif;
}
/* ===== HEADER ===== */
.top-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    background: #fff;
  }
  
  /* Emergency Bar */
  .emergency-bar {
    background: #e53935;
    color: #fff;
    font-size: 14px;
    padding: 6px 0;
  }
  
  .emergency-flex {
    display: flex;
    justify-content: space-between;
  }
  
  /* Main Header */
  .main-header {
    border-bottom: 1px solid #eee;
    background: #fff;
  }
  
  .header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
  }
  
  /* Logo */
  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .logo-icon {
    background: #e53935;
    color: #fff;
    font-size: 20px;
    padding: 10px;
    border-radius: 50%;
  }
  
  .logo-text strong {
    display: block;
    font-size: 18px;
  }
  
  .logo-text small {
    font-size: 12px;
    color: #777;
  }
  
  /* Navigation */
  .nav-menu {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .nav-menu a {
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 20px;
    color: #333;
    font-weight: 500;
    transition: 0.3s;
  }
  
  .nav-menu a:hover {
    background: #fdeaea;
    color: #e53935;
  }
  
  /* Active Menu */
  .nav-menu a.active {
    background: #fdeaea;
    color: #e53935;
  }
  
  /* Donate Button */
  .donate-btn {
    background: #e53935;
    color: #fff !important;
  }
  
  .donate-btn:hover {
    background: #c62828;
  }
  
  /* Mobile Menu */
  .menu-icon {
    display: none;
    font-size: 26px;
    cursor: pointer;
  }
  
  #menu-toggle {
    display: none;
  }
  
  /* Responsive */
  @media (max-width: 900px) {
    .menu-icon {
      display: block;
    }
  
    .nav-menu {
      position: absolute;
      top: 100%;
      right: 0;
      background: #fff;
      flex-direction: column;
      width: 220px;
      padding: 15px;
      display: none;
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }
  
    #menu-toggle:checked + .menu-icon + .nav-menu {
      display: flex;
    }
  }
  
  /* Push content down because header is fixed */
  body {
    padding-top: 120px;
  }
  

.impact-card {
    background: #fff;
    padding: 35px 25px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    height: 100%;
    transition: transform 0.3s ease;
}

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

.icon-box {
    width: 70px;
    height: 70px;
    background: #fdeaea;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.icon-box i {
    font-size: 28px;
    color: #e32626;
}

.impact-card h3 {
    font-size: 36px;
    font-weight: 700;
    color: #e32626;
    margin-bottom: 5px;
}

.impact-card h3::after {
    content: "+";
}

.impact-card .title {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 5px;
}

.impact-card .desc {
    font-size: 14px;
    color: #6b7280;
}




.cta-section {
    padding:80px 0;
    background:#fdecec;
}

.cta-section span {
    color:#e32626;
}




.core-causes-section {
    background: #fff7f5;
    padding: 80px 0;
}

.core-causes-header {
    max-width: 720px;
    margin: 0 auto 50px;
}

.core-causes-tag {
    color: #e32626;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
}

.core-causes-title {
    font-size: 38px;
    font-weight: 700;
    margin: 10px 0;
}

.core-causes-subtitle {
    color: #6b7280;
    font-size: 16px;
}

.core-causes-card {
    background: #fff;
    border-radius: 18px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

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

.core-causes-card.active {
    box-shadow: 0 25px 60px rgba(227,38,38,0.18);
}

.core-causes-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.core-causes-icon.red {
    background: #e32626;
    color: #fff;
}

.core-causes-icon.green {
    background: #18a999;
    color: #fff;
}

.core-causes-card h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.core-causes-card p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
}

.core-causes-link {
    display: inline-block;
    margin-top: 15px;
    color: #e32626;
    font-weight: 500;
    text-decoration: none;
}

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

.events-tag {
    color: #e32626;
    font-size: 13px;
    font-weight: 600;
}

.events-title {
    font-size: 36px;
    font-weight: 700;
}

.events-view-btn {
    border: 1px solid #e32626;
    padding: 10px 18px;
    border-radius: 10px;
    color: #e32626;
    text-decoration: none;
    font-weight: 500;
}

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

.events-date {
    background: #e32626;
    color: #fff;
    padding: 12px 18px;
    font-weight: 600;
}

.events-body {
    padding: 20px;
}

.events-body h4 {
    font-size: 18px;
    font-weight: 600;
}

.events-body p {
    font-size: 14px;
    color: #6b7280;
}

.events-body ul {
    list-style: none;
    padding: 0;
    font-size: 14px;
}

.events-body ul li {
    margin-bottom: 6px;
}

.events-btn {
    display: block;
    margin-top: 15px;
    background: #e32626;
    color: #fff;
    text-align: center;
    padding: 12px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 500;
}

.testimonials-section {
    background: #1f2633;
    padding: 80px 20px;
    color: #fff;
  }
  
  .testimonials-container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
  }
  
  .testimonials-tag {
    color: #ff3b3b;
    font-size: 12px;
    letter-spacing: 2px;
  }
  
  .testimonials-title {
    font-size: 40px;
    margin: 10px 0;
  }
  
  .testimonials-subtitle {
    color: #b0b8c1;
    max-width: 600px;
    margin: 0 auto 50px;
  }
  
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
  }
  
  .testimonials-card {
    background: #2a3242;
    padding: 30px;
    border-radius: 14px;
    text-align: left;
  }
  
  .testimonials-quote {
    font-size: 40px;
    color: #ff3b3b;
  }
  
  .testimonials-text {
    margin: 15px 0;
    color: #d1d7de;
  }
  
  .testimonials-rating {
    color: #ff3b3b;
    margin-bottom: 15px;
  }
  
  .testimonials-author h4 {
    margin: 0;
  }
  
  .testimonials-author span {
    font-size: 14px;
    color: #b0b8c1;
  }
  
  .testimonials-author small {
    display: block;
    color: #ff3b3b;
  }

  .cta-section {
    background: #fdecec;
    padding: 80px 20px;
    text-align: center;
  }
  
  .cta-container {
    max-width: 800px;
    margin: auto;
  }
  
  .cta-icon {
    font-size: 40px;
    margin-bottom: 15px;
  }
  
  .cta-title {
    font-size: 36px;
    color: #1f2633;
  }
  
  .cta-title span {
    color: #ff3b3b;
  }
  
  .cta-text {
    color: #5f6b7a;
    margin: 20px 0 35px;
  }
  
  .cta-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
  }
  
  .cta-btn {
    padding: 14px 26px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
  }
  
  .cta-btn-primary {
    background: #ff3b3b;
    color: #fff;
  }
  
  .cta-btn-secondary {
    background: #e53030;
    color: #fff;
  }
  
  .footer-section {
    background: #1f2633;
    color: #cbd5df;
    padding: 70px 20px 0;
  }
  
  .footer-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
  }
  
  .footer-logo {
    display: flex;
    gap: 12px;
    align-items: center;
  }
  
  .footer-logo-icon {
    background: #ff3b3b;
    color: #fff;
    padding: 10px;
    border-radius: 50%;
  }
  
  .footer-org-name {
    color: #fff;
    margin: 0;
  }
  
  .footer-org-location {
    color: #9aa5b1;
  }
  
  .footer-about-text {
    margin: 15px 0 20px;
    font-size: 14px;
  }
  
  .footer-social {
    display: flex;
    gap: 10px;
  }
  
  .footer-social-icon {
    width: 36px;
    height: 36px;
    background: #2a3242;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
  }
  
  .footer-title {
    color: #fff;
    margin-bottom: 15px;
  }
  
  .footer-links-list {
    list-style: none;
    padding: 0;
  }
  
  .footer-links-list li {
    margin-bottom: 10px;
  }
  
  .footer-links-list a {
    color: #cbd5df;
    text-decoration: none;
  }
  
  .footer-contact-item {
    margin-bottom: 10px;
    font-size: 14px;
  }
  
  .footer-office-hours {
    background: #2a3242;
    padding: 15px;
    border-radius: 10px;
    margin-top: 15px;
  }
  
  .footer-office-hours strong {
    color: #ff3b3b;
  }
  
  .footer-newsletter-text {
    font-size: 14px;
    margin-bottom: 15px;
  }
  
  .footer-newsletter-input {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: none;
    margin-bottom: 12px;
  }
  
  .footer-newsletter-btn {
    width: 100%;
    padding: 12px;
    background: #e02626;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
  }
  
  .footer-bottom {
    border-top: 1px solid #2a3242;
    margin-top: 40px;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    font-size: 14px;
  }
  
  .footer-bottom-links a {
    margin-left: 15px;
    color: #cbd5df;
    text-decoration: none;
  }
  

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

.header-section {
    width: 100%;
    font-family: "Inter", sans-serif;
  }
  
  /* Top Bar */
  .header-section-topbar {
    background: #e02626;
    color: #fff;
    display: flex;
    justify-content: space-between;
    padding: 10px 30px;
    font-size: 14px;
  }
  
  .header-section-topbar-left,
  .header-section-topbar-right {
    display: flex;
    align-items: center;
  }
  
  /* Navbar */
  .header-section-navbar {
    background: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  }
  
  .header-section-navbar-container {
    max-width: 1200px;
    margin: auto;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  /* Logo */
  .header-section-logo {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  
  .header-section-logo-icon {
    background: #e02626;
    color: #fff;
    padding: 12px;
    border-radius: 50%;
    font-size: 18px;
  }
  
  .header-section-logo-title {
    margin: 0;
    color: #1f2633;
  }
  
  .header-section-logo-subtitle {
    color: #7b8794;
  }
  
  /* Menu */
  .header-section-menu {
    display: flex;
    gap: 25px;
  }
  
  .header-section-menu-link {
    text-decoration: none;
    color: #1f2633;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 20px;
    transition: 0.3s;
  }
  
  .header-section-menu-link:hover,
  .header-section-menu-link.active {
    background: #fdecec;
    color: #e02626;
  }
  
  /* CTA */
  .header-section-donate-btn {
    background: #e02626;
    color: #fff;
    padding: 12px 22px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
  }
  
  .header-section-donate-btn:hover {
    background: #c91f1f;
  }
  
  /* Responsive */
  @media (max-width: 992px) {
    .header-section-menu {
      display: none; /* later convert to mobile menu */
    }
  }
  


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

.hero {
    position: relative;
    background: linear-gradient(135deg, #8f1414, #b01818);
    color: #ffffff;
    padding: 120px 20px 140px;
    overflow: hidden;
    font-family: Inter, system-ui, sans-serif;
  }
  
  /* CONTENT */
  .hero-content {
    max-width: 980px;
    margin: auto;
    text-align: center;
    position: relative;
    z-index: 2;
  }
  
  /* BADGE */
  .hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 22px;
  }
  
  /* HEADING */
  .hero h1 {
    font-size: 54px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
  }
  
  /* TEXT */
  .hero p {
    font-size: 17px;
    max-width: 720px;
    margin: 0 auto 36px;
    color: rgba(255, 255, 255, 0.9);
  }
  
  /* ACTIONS */
  .hero-actions {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 38px;
  }
  
  /* BUTTON BASE */
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
  
    padding: 14px 26px;
    min-width: 190px;
  
    border-radius: 14px; /* EXACT */
    font-size: 15px;
    font-weight: 600;
  
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  
  /* ICON MICRO ANIMATION */
  .btn .icon {
    transition: transform 0.25s ease;
  }
  
  .btn:hover .icon {
    transform: translateX(4px);
  }
  
  /* PRIMARY */
  .btn.primary {
    background: #e12626;
    color: #ffffff;
    box-shadow: 0 10px 26px rgba(225, 38, 38, 0.4);
  }
  
  /* SECONDARY */
  .btn.secondary {
    background: #ffffff;
    color: #e12626;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.15);
  }
  
  /* OUTLINE */
  .btn.outline {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.7);
  }
  
  /* HOVER */
  .btn:hover {
    transform: translateY(-2px);
  }
  
  /* FEATURES */
  .hero-features {
    display: flex;
    justify-content: center;
    gap: 28px;
    font-size: 14px;
    opacity: 0.85;
    flex-wrap: wrap;
  }
  
  /* WAVE */
  .hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
  }
  
  .hero-wave svg {
    width: 100%;
    height: 120px;
  }
  
  /* ===============================
     FLOATING ICONS (ZIG-ZAG)
  ================================ */
  
  .float-icon {
    position: absolute;
    opacity: 0.15;
    animation: zigzag 6s ease-in-out infinite;
  }
  
  .float-icon.drop {
    width: 34px;
    height: 46px;
    background: url("data:image/svg+xml,%3Csvg fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C8 8 4 11 4 16a8 8 0 0016 0c0-5-4-8-8-14z'/%3E%3C/svg%3E")
      no-repeat center / contain;
    top: 18%;
    left: 8%;
  }
  
  .float-icon.drop.small {
    width: 24px;
    height: 32px;
    top: 65%;
    right: 12%;
    animation-duration: 5s;
  }
  
  .float-icon.hand {
    width: 44px;
    height: 44px;
    background: url("data:image/svg+xml,%3Csvg fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M12 21l-1.5-1.4C5 14 2 11 2 7.5A4.5 4.5 0 016.5 3c1.7 0 3.4 1 4.2 2.5C11.6 4 13.3 3 15 3A4.5 4.5 0 0119.5 7.5c0 3.5-3 6.5-8.5 12z'/%3E%3C/svg%3E")
      no-repeat center / contain;
    top: 28%;
    right: 10%;
  }
  
  /* ZIG ZAG */
  @keyframes zigzag {
    0% {
      transform: translate(0, 0);
    }
    50% {
      transform: translate(10px, -14px);
    }
    100% {
      transform: translate(0, 0);
    }
  }
  
  /* MOBILE */
  @media (max-width: 768px) {
    .hero h1 {
      font-size: 38px;
    }
  
    .btn {
      min-width: 100%;
      justify-content: center;
    }
  }
  




  /* ================= PROGRAMS PAGE ================= */

.program-wrapper {
    max-width: 1200px;
    margin: auto;
    padding: 80px 20px;
  }
  
  .program-section {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 120px;
  }
  
  .program-section.reverse {
    flex-direction: row-reverse;
  }
  
  .program-content {
    flex: 1;
  }
  
  .program-icon {
    width: 48px;
    height: 48px;
    background: #d63a2f;
    color: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
  }
  
  .program-icon.green {
    background: #4aa39a;
  }
  
  .program-content h2 {
    font-size: 28px;
    margin-bottom: 12px;
  }
  
  .program-content p {
    color: #666;
    margin-bottom: 20px;
    max-width: 520px;
  }
  
  .program-list {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
  }
  
  .program-list li {
    padding-left: 26px;
    margin-bottom: 10px;
    position: relative;
    color: #555;
  }
  
  .program-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #4aa39a;
    font-size: 14px;
  }
  
  /* Image Placeholder */
  .program-image {
    flex: 1;
    height: 360px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .program-red-box {
    background: #c7372f;
  }
  
  .program-green-box {
    background: #4aa39a;
  }
  
  .program-image-icon {
    font-size: 70px;
    opacity: 0.4;
  }
  
  /* Buttons */
  .program-btn {
    display: inline-block;
    background: #d63a2f;
    color: #fff;
    padding: 12px 22px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
  }
  
  .program-btn:hover {
    background: #b92f26;
  }
  
  .program-btn.outline {
    background: transparent;
    border: 2px solid #d63a2f;
    color: #d63a2f;
  }
  
  .program-btn.large {
    padding: 14px 28px;
  }
  
  /* CTA Section */
  .program-cta {
    background: #fdeeee;
    text-align: center;
    padding: 80px 20px;
  }
  
  .program-cta h2 {
    font-size: 34px;
    margin-bottom: 15px;
  }
  
  .program-cta p {
    max-width: 600px;
    margin: auto;
    color: #666;
  }
  
  .program-cta-buttons {
    margin-top: 30px;
    display: flex;
    gap: 20px;
    justify-content: center;
  }
  
  /* Responsive */
  @media (max-width: 900px) {
    .program-section,
    .program-section.reverse {
      flex-direction: column;
      gap: 40px;
    }
  
    .program-image {
      width: 100%;
      height: 280px;
    }
  
    .program-cta-buttons {
      flex-direction: column;
    }
  }

/* ================= HERO ================= */
.about-hero {
  background: linear-gradient(135deg, #b31217, #e52d27);
  color: #fff;
  padding: 150px 20px 130px;
  text-align: center;
  position: relative;
}

.about-pill {
  background: rgba(255,255,255,.15);
  padding: 8px 22px;
  border-radius: 30px;
  font-size: 14px;
}

.about-hero h1 {
  font-size: 64px;
  margin: 22px 0;
}

.about-gradient-text {
  background: linear-gradient(to right,#fff,#ffd6d6,#fff);
  -webkit-background-clip: text;
  color: transparent;
}

.about-subtitle {
  max-width: 720px;
  margin: auto;
  font-size: 19px;
  opacity: .95;
}

.about-stats {
  display: flex;
  justify-content: center;
  gap: 70px;
  margin-top: 55px;
}

.about-stats strong {
  font-size: 42px;
  display: block;
}

/* ================= MISSION / VISION ================= */
.about-mission-vision {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 50px;
  padding: 120px 8%;
  background: #fff7f7;
}

.mv-card {
  background: #fff;
  padding: 55px;
  border-radius: 30px;
  box-shadow: s 0 25px 60px rgba(0,0,0,.08);
  transition: .4s;
}

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

.mv-icon {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 26px;
  margin-bottom: 22px;
}

.mv-icon.red { background: #e53935; }
.mv-icon.blue { background: #3f51b5; }

/* ================= JOURNEY ================= */
/* ================= JOURNEY ================= */
.about-journey {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    padding: 120px 8%;
    align-items: flex-start;
  }
  
  /* Left text */
  .journey-quote {
    border-left: 3px solid #f2c6c6;
    padding-left: 22px;
    margin: 28px 0;
    color: #555;
    font-size: 16px;
    line-height: 1.7;
  }
  
  /* Timeline container */
  .journey-timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 34px;
  }
  
  /* Each row */
  .timeline-row {
    display: flex;
    align-items: flex-start;
    gap: 28px;
    position: relative;
  }
  
  /* Vertical line (broken into segments) */
  .timeline-line-segment {
    position: absolute;
    left: 10px;
    top: -34px;
    bottom: -34px;
    width: 2px;
    background: #f1c1c1;
    z-index: 0;
  }
  
  /* First & last fix */
  .timeline-row:first-child .timeline-line-segment {
    top: 18px;
  }
  .timeline-row:last-child .timeline-line-segment {
    bottom: 18px;
  }
  
  /* Circle */
  .timeline-dot {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid #e53935;
    background: #fff;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    transition: all .3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .timeline-dot span {
    width: 6px;
    height: 6px;
    background: #e53935;
    border-radius: 50%;
    transition: all .3s ease;
  }
  
  /* Card */
  .timeline-card {
    background: #fff;
    padding: 22px 30px;
    border-radius: 14px;
    box-shadow: 0 8px 22px rgba(0,0,0,.06);
    transition: all .35s ease;
    border: 1px solid transparent;
  }
  
  .timeline-card strong {
    color: #e53935;
    font-size: 16px;
  }
  
  .timeline-card h4 {
    margin: 6px 0 4px;
    font-size: 17px;
  }
  
  /* Hover effects */
  .timeline-row:hover .timeline-card,
  .timeline-row.active .timeline-card {
    transform: translateY(-6px);
    border-color: #f1c1c1;
    box-shadow: 0 18px 40px rgba(229,57,53,.15);
  }
  
  /* Circle hover */
  .timeline-row:hover .timeline-dot,
  .timeline-row.active .timeline-dot {
    background: #e53935;
  }
  
  .timeline-row:hover .timeline-dot span,
  .timeline-row.active .timeline-dot span {
    background: #fff;
  }
  
/* ================= CORE VALUES ================= */
.about-values {
  padding: 120px 8%;
  text-align: center;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 32px;
  margin-top: 55px;
}

.value-card {
  background: #fff;
  padding: 45px 30px;
  border-radius: 28px;
  box-shadow: 0 20px 50px rgba(0,0,0,.08);
  transition: .4s;
}

.value-card:hover {
  transform: translateY(-12px);
  color: #fff;
}

.value-card.red:hover { background: #e53935; }
.value-card.blue:hover { background: #3f51b5; }
.value-card.green:hover { background: #2e9e91; }
.value-card.orange:hover { background: #ff9800; }

/* ================= TEAM ================= */
/* ================= TEAM ================= */
.about-team {
  padding: 120px 8%;
  text-align: center;
}

.team-pill {
  display: inline-block;
  background: #fdeaea;
  color: #e53935;
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 13px;
  margin-bottom: 12px;
}

.team-subtitle {
  max-width: 620px;
  margin: 0 auto 60px;
  color: #666;
}

/* Grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 36px;
}

/* Card */
.team-card {
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 18px 45px rgba(0,0,0,.08);
  overflow: hidden;
  transition: all .45s ease;
  border: 1px solid transparent;
}

.team-card:hover {
  transform: translateY(-10px);
  border-color: #f3bcbc;
  box-shadow: 0 25px 60px rgba(229,57,53,.15);
}

/* Image container */
.team-image {
  position: relative;
  height: 290px;
  overflow: hidden;
}

/* Image */
.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}

.team-card:hover img {
  transform: scale(1.08);
}

/* Bottom soft gradient (always visible like screenshot) */
.team-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #ffffff 35%, transparent 65%);
  pointer-events: none;
}

/* Red hover gradient */
.team-hover-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(229,57,53,.35), transparent 60%);
  opacity: 0;
  transition: opacity .35s ease;
}

.team-card:hover .team-hover-gradient {
  opacity: 1;
}

/* Social icons (top-right) */
.team-social {
  position: absolute;
  top: 14px;
  right: 14px;
  display: flex;
  gap: 10px;
  opacity: 0;
  transform: translateY(-8px);
  transition: all .35s ease;
  z-index: 3;
}

.team-card:hover .team-social {
  opacity: 1;
  transform: translateY(0);
}

.team-social a {
  width: 36px;
  height: 36px;
  background: #fff;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0,0,0,.15);
  transition: .3s;
}

.team-social a:hover {
  background: #e53935;
  color: #fff;
}

/* Content */
.team-content {
  padding: 28px 26px 32px;
}

.team-content h3 {
  font-size: 20px;
  margin-bottom: 6px;
}

.team-role {
  display: inline-block;
  background: #fdeaea;
  color: #e53935;
  font-size: 13px;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}

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

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

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

  .team-image {
    height: 260px;
  }
}


/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .about-mission-vision,
  .about-journey {
    grid-template-columns: 1fr;
  }

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

  .about-stats {
    flex-direction: column;
    gap: 25px;
  }
}

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

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


