  body { margin:0; font-family: Arial, sans-serif; color:#333; }
    h2 { text-align:center; color:#a80000; margin-bottom:20px; }

    html {
       scroll-behavior: smooth;}
    #donate {
     scroll-margin-top: 100px; /* adjust based on header height */
    }

.popup {
  position: fixed;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  background: #28a745;
  color: white;
  padding: 15px 25px;
  border-radius: 10px;
  font-size: 1.1rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 9999;
}
.popup.show {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

    /* HERO SECTION */
    .hero {
      position:relative;
      height:100vh;
      display:flex;
      align-items:center;
      justify-content:center;
      text-align:center;
      color:white;
      overflow:hidden;
    }
    .hero video {
      position:absolute;
      top:0; left:0;
      width:100%; height:100%;
      object-fit:cover;
      z-index:-1;
    }
    .hero-content { z-index:1; animation: popin 1.5s ease; }
    .hero h1 { font-size:2.8rem; }
    .hero p { font-size:1.2rem; margin:15px 0; }
    .btn { padding:12px 20px; border-radius:6px; text-decoration:none; font-weight:600; }
    .btn-primary { background:#a80000; color:#fff; }
    .btn-primary:hover { background:#ff7a00; }

    @keyframes popin {
      from { transform:scale(0.8); opacity:0; }
      to { transform:scale(1); opacity:1; }
    }

    /* ABOUT SECTION */
    .about { padding:60px 20px; background:#f9f9f9; display:flex; align-items:center; gap:20px; }
    .about img { width:50%; border-radius:10px; }
    .about-content { flex:1; animation:slideIn 2s ease; }
    @keyframes slideIn {
      from { transform:translateX(-100px); opacity:0; }
      to { transform:translateX(0); opacity:1; }
    }

    /* TAKE ACTION */
    .actions { padding:60px 20px; text-align:center; }
    .cards { display:flex; gap:20px; justify-content:center; flex-wrap:wrap; }
    .card {
      background:white; padding:20px; width:250px; border-radius:8px;
      box-shadow:0 4px 10px rgba(0,0,0,0.1); transition:transform .3s;
    }
    .card:hover { transform:scale(1.05); }

    /* TESTIMONIES (Carousel) */
    .testimonies { padding:60px 20px; background:#f9f9f9; }
    .carousel { display:flex; overflow-x:auto; scroll-behavior:smooth; gap:20px; }
    .testimonial {
      min-width:300px; flex-shrink:0; background:white; padding:20px; border-radius:10px;
      box-shadow:0 4px 8px rgba(0,0,0,0.1);
    }
    .testimonial video { width:100%; border-radius:10px; }

    /* IMAGE SCROLLER */
    .gallery-scroll { overflow:hidden; background:#fff; padding:20px 0; }
    .gallery-track { display:flex; animation:scroll 15s linear infinite; }
    .gallery-track img { width:200px; margin:0 10px; border-radius:8px; }
    @keyframes scroll {
      from { transform:translateX(0); }
      to { transform:translateX(-50%); }
    }

    /* CONNECT FORM */
    .connect { padding:60px 20px; text-align:center; }
    form { max-width:500px; margin:auto; display:flex; flex-direction:column; gap:12px; }
    input, textarea { padding:10px; border-radius:6px; border:1px solid #ccc; }
    button { background:#a80000; color:#fff; border:none; padding:12px; border-radius:6px; cursor:pointer; }
    button:hover { background:#ff7a00; }

    /* DONATE SECTION */
    .donate { padding:60px 20px; background:#f9f9f9; text-align:center; }
    .donate button { margin:10px; }

    /* Header */
  .site-header{
    background:#fff;
    border-bottom:1px solid #ddd;
    padding:12px 0;
  }
  .container{
    width:95%;
    max-width:1200px;
    margin:0 auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
  }

  /* Logo + Title */
  .brand{
    display:flex;
    align-items:center;
    text-decoration:none;
  }
  .logo{
    height:50px;
    margin-right:10px;
  }
  .brand-title{
    font-size:1.3rem;
    font-weight:700;
    color:#a80000;
  }

  /* Navigation */
  .navbar .menu{
    list-style:none;
    margin:0;
    padding:0;
    display:flex;
    align-items:center;
  }
  .navbar .menu > li{
    position:relative;
    margin:0 12px;
  }
  .navbar .menu > li > a{
    text-decoration:none;
    font-weight:600;
    color:#333;
    padding:8px 10px;
  }
  .navbar .menu > li > a:hover{
    color:#a80000;
  }
/*.nav-icon {
  width: 18px;
  height: 18px;
  margin-right: 6px;
  vertical-align: middle; 
  position: relative;
  top: -2px;              
}
*/

  /* Dropdown */
  .submenu{
    list-style:none;
    margin:0;
    padding:8px 0;
    background:#fff;
    border:1px solid #ddd;
    border-radius:6px;
    position:absolute;
    top:100%;
    left:0;
    min-width:180px;
    display:none;
    box-shadow:0 4px 12px rgba(0,0,0,0.1);
    z-index: 1000;
  }
  .submenu li a{
    display:flex;
    padding:10px 15px;
    align-items: center;
    text-decoration:none;
    color:#333;
    font-size:0.95rem;
    gap: 8px;
  }
  .submenu li a:hover{
    background:#f4f4f4;
    color:#a80000;
  }

  .submenu li a .icon {
  width: 18px;
  height: 18px;
}

/* Dropdown Fix */
.dropdown:hover .submenu,
.dropdown:focus-within .submenu {
  display: block;   /* stays open if hovered or focused */
}

  /* Donate Button */
.donate {
  text-align: center;
  padding: 60px 20px;
  background: #f9f9f9;
}

.donate h2 {
  color: #a80000;
  margin-bottom: 15px;
}

.donate p {
  margin-bottom: 25px;
  color: #444;
}

.donate-btn {
  display: inline-block;
  margin: 10px;
  padding: 12px 20px;
  background: #a80000;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.3s ease;
}
  .donate-btn:hover{
    background:#ff7a00;
  }

  .site-footer {
    background:#333;
    color:#fff;
    padding:40px 20px 20px;
  }
  .footer-container {
    display:flex;
    justify-content:space-between;
    max-width:1200px;
    margin:auto;
    flex-wrap:wrap;
    gap:20px;
  }
  .footer-col h3 {
    margin-bottom:12px;
    font-size:1.2rem;
    color:#ffcc00;
  }
  .footer-col ul {
    list-style:none;
    padding:0;
    margin:0;
  }
  .footer-col ul li {
    margin-bottom:8px;
  }
  .footer-col ul li a {
    text-decoration:none;
    color:#ddd;
    transition:color 0.3s;
  }
  .footer-col ul li a:hover {
    color:#fff;
  }
  .socials a {
    display:flex;
    align-items:center;
    margin-bottom:8px;
    text-decoration:none;
    color:#ddd;
    transition:color 0.3s;
  }
  .socials a:hover { color:#fff; }
  .socials img {
    width:20px; height:20px;
    margin-right:8px;
  }

  .socials {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.socials a img {
  width: 28px;
  height: 28px;
  filter: brightness(0) invert(1); /* makes icons white */
  transition: transform 0.3s, filter 0.3s;
}

.socials a img:hover {
  transform: scale(1.2);
  filter: none; /* original colors on hover */
}
.footer-bottom {
    margin-top:20px;
    text-align:center;
    border-top:1px solid #555;
    padding-top:10px;
    font-size:0.9rem;
    color:#bbb;}

    /* ===================== */
/* RESPONSIVE DESIGN     */
/* ===================== */

/* Tablets and smaller */
@media (max-width: 992px) {
  .container {
    flex-direction: column;
    align-items: flex-start;
  }

  .navbar .menu {
    flex-direction: column;
    width: 100%;
    margin-top: 10px;
  }

  .navbar .menu > li {
    margin: 5px 0;
  }

  .about {
    flex-direction: column;
    text-align: center;
  }

  .about img {
    width: 100%;
    margin-bottom: 20px;
  }

  .cards {
    flex-direction: column;
    align-items: center;
  }
}

/* Phones */
@media (max-width: 600px) {
  .hero h1 {
    font-size: 1.8rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .btn {
    display: block;
    margin: 10px auto;
    width: 80%;
    text-align: center;
  }

  .testimonial {
    min-width: 100%;
  }

  .gallery-track img {
    width: 150px;
  }

  .connect form {
    width: 100%;
  }

  .site-footer .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .socials a {
    justify-content: center;
  }
}

/* Mobile Dropdown Fix */
@media (max-width: 600px) {
  .navbar .menu {
    width: 100%;
  }

  .navbar .menu > li {
    width: 100%;
  }

  .submenu {
    position: static;   /* no absolute positioning */
    width: 100%;
    border: none;
    box-shadow: none;
  }

  .submenu li a {
    padding-left: 20px;
    display: block;
  }
}

/* Testimonies Section */
.testimonies {
  padding: 60px 20px;
  background: #f9f9f9;
  max-width: 1100px;
  margin: auto;
}

.testimonies h2 {
  text-align: center;
  color: #a80000;
  margin-bottom: 40px;
}

.testimony-row {
  display: flex;
  flex-direction: column; /* default: stacked on mobile */
  gap: 20px;
  margin-bottom: 50px;    /* space between rows */
  align-items: center;
}

.testimony-video video {
  width: 100%;
  max-width: 480px;
  border-radius: 10px;
}

.testimony-text {
  flex: 1;
}
.testimony-text h3 {
  color: #a80000;
  margin-bottom: 10px;
}
.testimony-text p {
  line-height: 1.6;
  color: #444;
}

/* Desktop: side by side */
@media (min-width: 768px) {
  .testimony-row {
    flex-direction: row;   /* video left, text right */
    gap: 40px;
  }
  .testimony-video, .testimony-text {
    flex: 1;
  }
}

/*progress css*/
/* ====== OUR PROGRESS SECTION (Unique Classes) ====== */
.progressSection {
  background: #f6efff;
  padding: 100px 20px;
  text-align: center;
}

.progressSection-container {
  max-width: 1000px;
  margin: 0 auto;
}

.progressSection h2 {
  font-size: 2.4rem;
  color: #6a1b9a;
  font-weight: 700;
  margin-bottom: 15px;
}

.progressSection p {
  font-size: 1.1rem;
  color: #444;
  max-width: 750px;
  margin: 0 auto 60px;
  line-height: 1.7;
}

/* Cards Layout */
.progressSection-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 35px;
  margin-bottom: 40px;
}

/* Card Styling */
.progressSection-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(130, 70, 255, 0.1);
  padding: 60px 25px;
  flex: 1 1 280px;
  max-width: 300px;
  transition: all 0.3s ease;
}

.progressSection-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(130, 70, 255, 0.15);
}

.progressSection-card h3 {
  font-size: 2.5rem;
  color: #7a1bb9;
  font-weight: 800;
  margin-bottom: 10px;
}

.progressSection-card p {
  font-size: 1.05rem;
  color: #333;
  font-weight: 600;
}

/* Button Styling */
.progressSection-btn {
  display: inline-block;
  background: #8a2be2;
  color: #fff;
  padding: 12px 35px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.progressSection-btn:hover {
  background: #6a1b9a;
  transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
  .progressSection h2 {
    font-size: 1.9rem;
  }
  .progressSection p {
    font-size: 1rem;
  }
  .progressSection-card h3 {
    font-size: 2rem;
  }
}

/* ====== SUMMARY SECTION 01 ====== */
.summary-section-01 {
  background: #faf9ff;
  padding: 80px 20px;
  text-align: center;
  color: #333;
}

.summary-container-01 {
  max-width: 850px;
  margin: 0 auto;
}

.summary-title-01 {
  font-size: 2rem;
  color: #6a1b9a;
  margin-bottom: 20px;
}

.summary-text-01 {
  color: #555;
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .summary-title-01 {
    font-size: 1.6rem;
  }
  .summary-text-01 {
    font-size: 0.95rem;
  }
}

/* ====== SUMMARY SECTION 02 ====== */
.summary-section-02 {
  background: linear-gradient(135deg, #f8f5ff 0%, #f3e7ff 100%);
  padding: 80px 20px;
  text-align: center;
  color: #333;
  position: relative;
  overflow: hidden;
}

.summary-container-02 {
  max-width: 900px;
  margin: 0 auto;
  animation: fadeInUp 1.2s ease-out;
}

.summary-title-02 {
  font-size: 2.3rem;
  color: #6a1b9a;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.summary-text-02 {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.8;
  max-width: 750px;
  margin: 0 auto 40px auto;
}

/* ===== GRID ===== */
.summary-grid-02 {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.summary-item-02 {
  background: white;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  padding: 30px 40px;
  width: 250px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.summary-item-02:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.summary-number-02 {
  font-size: 2.5rem;
  color: #6a1b9a;
  font-weight: 800;
  margin-bottom: 10px;
  transition: color 0.3s;
}

.summary-item-02:hover .summary-number-02 {
  color: #9c27b0;
}

.summary-item-02 p {
  color: #444;
  font-weight: 600;
  font-size: 1.1rem;
}

/* ===== ANIMATION ===== */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .summary-title-02 {
    font-size: 1.8rem;
  }
  .summary-text-02 {
    font-size: 0.95rem;
  }
  .summary-item-02 {
    width: 90%;
  }
}







