*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins', sans-serif;
}

/* ▬ TOP BAR ▬ */
.top-bar{
    background:#efe8e3;
    padding:12px 20px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.top-left a{
    margin-right:15px;
    color:#3a3a3a;
    font-size:15px;
}
.top-left a:hover{ color:#d34932; }

.top-right span{
    margin-left:30px;
    font-size:14px;
    color:#4a4a4a;
}
.top-right i{
    color:#d34932;
    margin-right:6px;
}

/* MAIN HEADER */
.header{
    width:100%;
    display:flex;
    background-color: #efe8e3;
    align-items:center;
    position:relative;
}

/* LEFT RED SECTION */
.header-red{
    background:#e53935;
    color:#fff;
    padding:20px 20px;
    padding-right:150px;
    display:flex;
    width:18%;
    align-items:center;
    gap:45px;
    height:95px;
    border-top-right-radius:60px;
    border-bottom-right-radius:60px;
}

.logo{
    height:60px;
}

/* DESKTOP MENU */
nav ul{
    display:flex;
    list-style:none;
    gap:38px;
    margin-left:50px;
}
nav ul li a{
    text-decoration:none;
    color:#1c0606;
    font-size:16px;
    font-weight:600;
    transition:0.2s;
}
nav ul li a:hover{ color:#f30909; }

/* BLACK BUTTON */
.header-black-btn{
    background:#1b1d22;
    height:95px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    padding:0 50px;
    color:#fff;
    font-size:18px;
    font-weight:600;
    text-decoration:none;
    width:45%;
    border-top-left-radius:60px;
    border-bottom-left-radius:60px;
    margin-left:60px;
    position:relative;
    overflow:hidden;
    transition:0.4s ease;
}

.header-black-btn i{ color:#e53935; }

/* Hover Effects */
.header-black-btn:hover::before{ left:0; }
.header-black-btn:hover i,
.header-black-btn:hover span{ color:#fff; }
.header-black-btn:hover span::after{
    width:100%;
    background:#fff;
}

/* DESKTOP DROPDOWN */
.dropdown{ position:relative; }
.dropdown-menu{
    position:absolute;
    top:100%;
    left:0;
    background:#e53935;
    padding:10px 0;
    min-width:150px;
    display:none;
    flex-direction:column;
    border-radius:6px;
}
.dropdown-menu li a{
    padding:10px 20px;
    color:#fff;
    display:block;
}
.dropdown:hover .dropdown-menu{ display:flex; }

/* ========== MOBILE VIEW ========== */
.menu-toggle{ display:none; }

@media(max-width:768px){

    .header{
        flex-direction:column;
        width:100%;
    }

    .header-red{
        width:100%;
        padding:15px;
        height:auto;
        border-radius:0;
        justify-content:space-between;
        gap:0;
    }

    .menu-toggle{
        display:block;
        font-size:34px;
        cursor:pointer;
        color:#fff;
        margin-left:auto;
    }

    .home-main {
        margin-left: 170px;

    }
    nav{ width:100%;}
    nav ul{
        flex-direction:column;
        width:100%;
        background:#e53935;
        display:none;
        margin-left: -1px;
    }
    nav.active ul{ display:flex; }

    nav ul li{
        width:100%;
        text-align:center;
        padding:12px 0;
    }
    nav ul li a{ color:#fff; font-size:18px; }

    /* HOME + ARROW LINE */
    .dropdown{
        width:100%;
    }

    .dropdown-header{
        display:flex;
        justify-content:space-between;
        align-items:center;
        padding:12px 20px;
        width:100%;
    }

    .dropdown-header a{
        color:#fff;
        font-size:18px;
        flex:1;
        text-align:center;
    }

    .dropdown-toggle{
        display:block;
        font-size:18px;
        color:#fff;
        margin-right: 140px;
        cursor:pointer;
    }

    /* DROPDOWN ITEMS */
    .dropdown-menu{
        position:relative !important;
        width:100% !important;
        background:#c72828;
        padding:0;
        margin:0;
        display:none !important;
        border-radius:0;
    }

    .dropdown-menu li{
        padding:12px 20px;
        text-align:left;
    }

    .dropdown.open .dropdown-menu{
        display:block !important;
    }

    /* Disable desktop hover */
    .dropdown:hover .dropdown-menu{
        display:none !important;
    }

    /* Full width create account */
    .header-black-btn{
        width:100%;
        margin-left:0;
        border-radius:0;
        height:70px;
    }


}



/* MOBILE DROPDOWN FIX */
@media(max-width:768px){

    .dropdown { width:100%; }

    /* Home + Arrow row */
    .dropdown-header{
        display:flex;
        justify-content:space-between;
        align-items:center;
        padding:12px 20px;
        width:100%;
    }

    /* Home text centered */
    .dropdown-header a{
        color:#fff;
        font-size:18px;
        flex:1;
        text-align:center;
    }

    /* Arrow positioned on right */
    .dropdown-toggle{
        display:block;
        font-size:18px;
        color:#fff;
        cursor:pointer;
        margin-left:10px;
    }

    /* Dropdown items below Home */
    .dropdown-menu{
        position:relative !important;
        width:100%;
        background:#c72828;
        display:none !important;
        padding:0;
        margin:0;
        border-radius:0;
    }

    /* Center Home 1 & Home 2 */
    .dropdown-menu li{
        padding:12px 0;
        text-align:center;
    }

    /* Show when clicking arrow */
    .dropdown.open .dropdown-menu{
        display:block !important;
    }

    /* Disable desktop hover */
    .dropdown:hover .dropdown-menu{
        display:none !important;
    }
}


/* DESKTOP DROPDOWN */
.dropdown{
    position: relative;
}
.dropdown-menu{
    position: absolute;
    top: 100%;
    left: 0;
    background: #e53935;
    padding: 10px 0;
    min-width: 150px;
    display: none;
}
.dropdown:hover .dropdown-menu{
    display: block;
}

/* ========== MOBILE VIEW ========== */
@media(max-width:768px){

    /* Disable desktop hover */
    .dropdown:hover .dropdown-menu{
        display: none !important;
    }

    .top-bar {
        display: none;
    }

    /* Home row */
    .dropdown-header{
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 12px 20px;
        width: 100%;
    }

    /* Home text centered */
    .dropdown-header a{
        flex: 1;
        text-align: center;
        color: #fff;
        font-size: 18px;
    }

    /* Arrow on right */
    .dropdown-toggle{
        display: block;
        font-size: 18px;
        cursor: pointer;
        color: #fff;
    }

    /* Dropdown under Home */
    .dropdown-menu{
        position: relative !important;
        width: 100%;
        background: #c72828;
        display: none !important;
        padding: 0;
        margin: 0;
    }

    /* Center submenu items */
    .dropdown-menu li{
        padding: 12px 0;
        text-align: center;
    }

    /* Show on arrow click */
    .dropdown.open .dropdown-menu{
        display: block !important;
    }
}


/* ========== DESKTOP DROPDOWN ========== */
.dropdown {
    position: relative;
}

.dropdown-header {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Desktop arrow visible */
.dropdown-toggle {
    display: inline-block;
    font-size: 14px;
    color: #1c0606;
    cursor: default;     /* desktop = no click */
    transition: 0.3s;
}

/* Desktop dropdown box */
.dropdown-menu {
    position: absolute;
    top: 100%;
    z-index: 99999;
    left: 0;
    margin-left: -10px;
    background: #e53935;
    padding: 10px 0;
    min-width: 120px;
    display: none;
    border-radius: 6px;
    flex-direction: column;
}

.dropdown-menu li a {
    padding: 10px 20px;
    color: white;
    display: block;
}

/* KEEP MENU OPEN WHEN CURSOR MOVES DOWN */
.dropdown:hover .dropdown-menu,
.dropdown-menu:hover {
    display: flex;
    color: white;
}

/* FIX: Desktop dropdown text hover color */
.dropdown-menu li a:hover {
    background: #fff;      /* white background */
    color: #e53935 !important;   /* red text */
}

/* ========== MOBILE DROPDOWN ========== */
@media (max-width:768px) {

    /* Disable desktop hover on mobile */
    .dropdown:hover .dropdown-menu {
        display: none !important;
    }

    /* Show arrow clickable on mobile */
    .dropdown-toggle {
        display: block;
        font-size: 18px;
        color: #fff;
        cursor: pointer;
    }

    .dropdown-header {
        justify-content: space-between;
        width: 100%;
        padding: 12px 20px;
    }

    /* Mobile dropdown list */
    .dropdown-menu {
        position: relative !important;
        background: #c72828;
        width: 100%;
        display: none !important;
        border-radius: 0;
        padding: 0;
        margin: 0;
    }

    .dropdown-menu li {
        text-align: center;
        padding: 12px 0;
    }

    /* OPEN ON MOBILE CLICK */
    .dropdown.open .dropdown-menu {
        display: block !important;
    }
}

/* MOBILE NAV ITEM FIX */
@media(max-width:768px){

    /* Reduce space between items */
    nav ul li{
        width:100%;
        text-align:center;
        padding:10px 0;       /* reduced from big padding */
        margin:0;
        position:relative;
    }

    /* Add bottom separator line */
    nav ul li::after{
        content:"";
        position:absolute;
        bottom:0;
        left:20px;
        right:20px;
        height:1px;
        background:rgba(255,255,255,0.35);  /* light white line */
    }

    /* For dropdown-sub items also */
    .dropdown-menu li{
        padding:10px 0;
        text-align:center;
        position:relative;
    }

    .dropdown-menu li::after{
        content:"";
        position:absolute;
        bottom:0;
        left:30px;
        right:30px;
        height:1px;
        background:rgba(255,255,255,0.25);
    }
}

@media(max-width:768px){

    .dropdown-header{
        display:flex;
        justify-content:center;     /* Center everything */
        align-items:center;
        padding:12px 20px;
        width:100%;
        position:relative;
    }

    /* Center HOME text */
    .dropdown-header a{
        flex:0;
        margin:auto;
        text-align:center;
        color:#fff;
        font-size:18px;
    }

    /* Arrow EXACTLY on right side - NO SHIFT */
    .dropdown-toggle{
        position:absolute;
        right:130px;               /* Always right side */
        font-size:18px;
        color:#fff;
        margin:0 !important;      /* Remove old right margin */
        padding:0;
        cursor:pointer;
    }

    /* Dropdown list full width */
    .dropdown-menu{
        position:relative !important;
        width:100% !important;
        background:#c72828;
        display:none !important;
        border-radius:0;
        padding:0;
        margin:0;
    }

}


/* SLIDER BACKGROUND (GREY DOT GRID) */
.hero-slider {
  width: 100%;
  height: 600px;
  padding: 60px 60px;
  background-color: #f7f4ef;
  background: #f7f4ef;
  background-size: 25px 25px;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
}

/* SLIDES */
.slide {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  opacity: 0;
  transform: translateX(-40px);
  transition: 0.7s ease;
}

.slide.active {
  opacity: 1;
  transform: translateX(0);
}

/* LEFT SIDE CONTENT */
.left-section {
  width: 45%;
  animation: fadeLeft 0.8s ease forwards;
}

.left-section::before {
  content: "";
  position: absolute;
  top: -40px;
  left: 0;
  width: 350px;             /* size of dotted area */
  height: 450px;
  background-image: radial-gradient(#d6d6d6 2px, transparent 2px);
  background-size: 22px 22px;
  opacity: 0.5;
  z-index: -1;              /* stays behind text */
}

.left-section h1 {
  margin-left: 100px;  /* small right shift */
}

.left-section p {
  margin-left: 100px;
}

.hero-btn {
  margin-left: 100px;
}


.left-section h1 {
  font-size: 65px;
  line-height: 1.1;
  font-weight: 800;
  color: #1c1c1c;
}

.left-section span {
  color: #c72828;
}

.left-section p {
  margin-top: 15px;
  font-size: 18px;
  color: #333;
}

/* DONATE BUTTON */
.hero-btn {
  margin-top: 25px;
  display: inline-block;
  padding: 15px 36px;
  background: #c72828;
  color: #fff;
  border-radius: 40px;
  font-size: 18px;
  text-decoration: none;
  transition: 0.3s ease;  /* smooth animation */
}

.hero-btn:hover {
  background: #a72020; 
  box-shadow: 0 8px 20px rgba(199, 40, 40, 0.35);
  transform: translateY(-3px);
}


/* RIGHT SIDE */
.right-section {
  width: 50%;
  height: 100%;
  position: relative;
}

/* PAINT BACKGROUND */
.paint-bg {
  position: absolute;
  right: 0;
  top: 0;
  width: 0%;
  height: 100%;
  background: #c72828;
  clip-path: polygon(20% 20%, 100% 0%, 100% 100%, 0% 100%);
  animation: paintAnim 1s ease forwards;
}

/* MAIN IMAGE */
.hero-img {
  position: absolute;
  bottom: 0;
  right: 100px;
  height: 500px;
  opacity: 0;
  animation: imageAnim 1.1s ease forwards 0.6s;
}

/* RIGHT SIDE DOTS */
.right-dots {
  position: absolute;
  top: 30px;
  right: 400px;
  width: 200px;
  height: 200px;
  background-image: radial-gradient(#c72828 4px, transparent 4px);
  background-size: 28px 28px;
  opacity: 0;
  animation: dotAnim 1s ease forwards 1s;
}

/* ARROWS */
.nav-arrow {
  position: absolute;
  top: 50%;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  border: 2px solid #c72828;
  color: #c72828;
  background: #fff;
  transform: translateY(-50%);
  font-size: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.nav-arrow.left { left: 10px; }
.nav-arrow.right { right: 10px; }

.nav-arrow:hover {
    background: #c72828;
    color: #fff;
    border-color: #c72828;
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 4px 12px rgba(199, 40, 40, 0.4);
    transition: 0.3s ease;
}


/* ANIMATIONS */
@keyframes fadeLeft {
  0% { opacity: 0; transform: translateX(-40px); }
  100% { opacity: 1; transform: translateX(0); }
}

@keyframes paintAnim {
  from { width: 0%; }
  to { width: 55%; }
}

@keyframes imageAnim {
  from { opacity: 0; transform: translateX(120px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes dotAnim {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

.slide {
    pointer-events: none;   /* disabled for all slides by default */
}

.slide.active {
    pointer-events: auto;   /* only active slide clickable */
    z-index: 10;            /* bring active slide top */
}

.nav-arrow {
  z-index: 9999 !important;
}

/* ============================================
   📱 MOBILE RESPONSIVE (MAX-WIDTH: 768PX)
============================================ */
@media (max-width: 768px){

  .hero-slider {
    height: 100vh;
    padding: 30px 20px;
    overflow: hidden;
    border-radius: 20px;
  }

  /* SLIDE: Stack items vertically */
  .slide {
    flex-direction: column;
    text-align: center;
    padding-top: 20px;
  }

  /* LEFT SECTION */
  .left-section {
    width: 100%;
    animation: none !important;
  }

  .left-section::before {
    left: 50%;
    transform: translateX(-50%);
    top: -10px;
    width: 260px;
    height: 300px;
  }

  .left-section h1 {
    font-size: 36px;
    line-height: 1.2;
    margin-left: 0;
  }

  .left-section p {
    font-size: 16px;
    margin-left: 0;
  }

  .hero-btn {
    margin-left: 0;
    padding: 12px 28px;
    font-size: 16px;
  }

  /* RIGHT SECTION */
  .right-section {
    width: 100%;
    height: auto;
    margin-top: 20px;
  }

  .paint-bg {
    display: none; /* hide heavy shape for mobile */
  }

  .hero-img {
    position: relative;
    height: 280px;
    right: 0;
    margin: 0 auto;
    animation: none !important;
    opacity: 1;
  }

  .right-dots {
    display: none; /* hide decorative dots for mobile */
  }

  /* ARROWS */
  .nav-arrow {
    width: 50px;
    height: 50px;
    font-size: 18px;
    top: auto;
    bottom: 20px;
    transform: translateY(0);
  }

  .nav-arrow.left {
    left: 20px;
  }

  .nav-arrow.right {
    right: 20px;
  }
}

.about-section {
  padding: 70px 5%;
  background: #faf9f7;
  overflow: hidden;
}

.about-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 50px;
}

/* LEFT IMAGES */
.about-left {
  width: 50%;
  position: relative;
}

.img-top {
  display: flex;
  gap: 20px;
}

.img1 {
  width: 300px;
  height: 280px;
  border-radius: 20px;
}

.img2 {
 width: 280px;
  height: 280px;
  margin-top: 100px;
  margin-left: -50px;
  border-radius: 20px;

}

.service-box {
  position: absolute;
  bottom: -30px;
  left: 20px;
  background: #f6a915;
  padding: 25px 40px;
  border-radius: 18px;
  color: #000;
}

.service-box h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 5px;
}

.service-box p {
  font-size: 16px;
}

/* RIGHT SIDE CONTENT */
.about-right {
  width: 50%;
}

.sub-title {
  color: #e53935;
  letter-spacing: 2px;
  font-size: 15px;
  font-weight: 600;
}

.title {
  font-size: 50px;
  line-height: 1.2;
  font-weight: 700;
  margin: 15px 0 25px;
}

/* TAB BUTTONS */
.tab-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.tab-btn {
  padding: 12px 28px;
  border-radius: 8px;
  background: transparent;
  border: 2px solid #d4d4d4;
  cursor: pointer;
  font-size: 15px;
  transition: .3s;
  font-weight: 600;
}

.tab-btn.active {
  background: #10c069;
  border-color: #10c069;
  color: #fff;
}

/* TAB CONTENT */
.tab-content {
  display: none;
  font-size: 17px;
  line-height: 1.7;
  color: #444;
}

.tab-content.active {
  display: block;
}


.about-bottom-row {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 35px;
}

/* DONATE BUTTON */
.donate-btn {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 12px 28px;
  border: 2px solid #e53935;
  border-radius: 40px;
  color: #1b1b1b;
  font-weight: 600;
  letter-spacing: .8px;
  text-decoration: none;
  transition: 0.3s ease;
}

.donate-btn:hover {
  background: #e53935;
  color: #fff;
}

/* Arrow Circle inside button */
.arrow-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #e53935;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
}

/* HELP BOX */
.help-box {
  display: flex;
  align-items: center;
  gap: 12px;
}

.help-icon {
  font-size: 38px;
  color: #e53935;
}

.help-text {
  margin: 0;
  font-size: 14px;
  color: #555;
}

.help-number {
  margin: 0;
  font-weight: 700;
  color: #222;
  font-size: 18px;
}

.service-icon {
  font-size: 36px;
  color: #000;
}

/* ============================================
   📱 MOBILE RESPONSIVE (MAX-WIDTH: 768PX)
============================================ */
@media (max-width: 768px) {

  .about-section {
    padding: 50px 20px;
  }

  /* Stack left + right vertically */
  .about-container {
    flex-direction: column;
    gap: 40px;
  }

  /* LEFT SIDE IMAGES */
  .about-left {
    width: 100%;
  }

  .img-top {
    flex-direction: column;
    gap: 20px;
  }

  .img1, 
  .img2 {
    width: 100%;
    height: auto;
    margin: 0;
  }

  .img2 {
    margin-top: 0;
  }

  /* Service Box */
  .service-box {
    position: relative;
    bottom: 0;
    left: 0;
    margin-top: 20px;
    width: 100%;
    text-align: center;
    padding: 20px;
  }

  .service-box h2 {
    font-size: 32px;
  }

  /* RIGHT SIDE */
  .about-right {
    width: 100%;
  }

  .title {
    font-size: 32px;
    line-height: 1.3;
  }

  /* TAB BUTTONS */
  .tab-buttons {
    flex-wrap: wrap;
    gap: 10px;
  }

  .tab-btn {
    padding: 10px 20px;
    font-size: 14px;
  }

  /* Bottom Row */
  .about-bottom-row {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  /* Donate Button */
  .donate-btn {
    justify-content: center;
    width: 100%;
    padding: 14px 20px;
  }

  /* Help Box */
  .help-box {
    justify-content: center;
  }

}


/* DARK HEADER BACKGROUND */
.charity-section {
    padding: 80px 5%;
    background: linear-gradient(to bottom, #2f2f2f 30%, #ffffff 30%);
    overflow: hidden;
}

/* MAIN HEADING AREA */
.charity-header {
    text-align: center;
    margin-bottom: 50px;
}

.charity-header h4 {
    color: #d0d0d0;
    font-size: 14px;
    letter-spacing: 1px;
}

.charity-header h2 {
    margin-top: 10px;
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.charity-header span {
    color: #e53935; /* Orange text */
}

.circle-decor {
    width: 12px;
    height: 12px;
    border: 2px solid #e53935;
    border-radius: 50%;
    margin: 15px auto 0;
}

/* GRID */
.charity-grid {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 35px;
    padding-top: 20px;
}

/* CARD */
.charity-card {
    width: 300px;
    background: #fff;
    border-radius: 18px;
    padding-bottom: 25px;
    text-align: center;
    box-shadow: 0px 8px 25px rgba(0,0,0,0.12);
    transition: .3s ease;
}

.charity-card:hover {
    transform: translateY(-6px);
}

/* IMAGE */
.charity-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 18px 18px 0 0;
}

/* TEXT */
.charity-card h3 {
    margin-top: 18px;
    font-size: 20px;
    font-weight: 700;
}

.charity-card p {
    padding: 0 20px;
    font-size: 14px;
    color: #555;
    margin-bottom: 20px;
}

/* RAISED / GOAL */
.fund-row {
    display: flex;
    justify-content: space-between;
    padding: 0 25px;
    margin-bottom: 10px;
}

.fund-row h5 {
    font-size: 13px;
    color: #999;
}

.fund-row p {
    margin-top: 5px;
    font-size: 15px;
    font-weight: 600;
    color: #333;
}

/* PROGRESS BAR */
.progress-bar {
    width: 85%;
    background: #e4e4e4;
    height: 4px;
    border-radius: 6px;
    margin: 0 auto 20px;
}

.progress-fill {
    height: 100%;
    background: #2ecc71;
    border-radius: 6px;
}

/* DONATE BUTTON */
.donate-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 12px 25px;
    border: 2px solid #e53935;
    border-radius: 40px;
    color: #222;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

.donate-card-btn:hover {
    background: #e53935;
    color: #fff;
}

.btn-circle {
    width: 32px;
    height: 32px;
    background: #e53935;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
}


/* ============================================
   📱 MOBILE RESPONSIVE (MAX-WIDTH: 768PX)
============================================ */
@media (max-width: 768px) {

    /* SECTION */
    .charity-section {
        padding: 50px 20px;
        background: #2f2f2f; /* Remove gradient cut-off for mobile */
    }

    /* HEADER */
    .charity-header h2 {
        font-size: 32px;
        line-height: 1.3;
    }

    .charity-header h4 {
        font-size: 13px;
    }

    /* GRID STACK */
    .charity-grid {
        flex-direction: column;
        gap: 25px;
        align-items: center;
    }

    /* CARD */
    .charity-card {
        width: 100%;
        max-width: 350px;
    }

    .charity-img {
        height: 190px;
    }

    .charity-card h3 {
        font-size: 18px;
    }

    .charity-card p {
        font-size: 14px;
        padding: 0 15px;
    }

    /* FUND ROW */
    .fund-row {
        padding: 0 18px;
    }

    .fund-row h5 {
        font-size: 12px;
    }

    .fund-row p {
        font-size: 14px;
    }

    /* PROGRESS */
    .progress-bar {
        width: 90%;
    }

    /* DONATE BUTTON */
    .donate-card-btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .btn-circle {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }
}



/* MAIN SECTION */
.donation-section {
    display: flex;
    width: 100%;
    height: 450px;
    background: #2f2f2f;
    overflow: hidden;
}

/* LEFT IMAGE */
.donation-left {
    width: 50%;
}

.donation-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* RIGHT SIDE */
.donation-right {
    width: 50%;
    padding: 60px;
    color: #fff;
    position: relative;
}

/* LABEL */
.donation-sub {
    color: #e53935;
    font-size: 14px;
    margin-bottom: 10px;
    font-weight: 500;
    letter-spacing: .5px;
}

/* MAIN HEADING */
.donation-title {
    font-size: 40px;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 30px;
}

/* AMOUNT BUTTONS */
.donation-options {
    display: flex;
    gap: 12px;
    margin-bottom: 25px;
}

.amount-btn {
    background: #3c3c3c;
    border: none;
    padding: 10px 25px;
    border-radius: 30px;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: .3s ease;
}

.amount-btn.active,
.amount-btn:hover {
    background: #e53935;
}

/* CUSTOM AMOUNT */
.custom-amount-box {
    margin-bottom: 30px;
}

.custom-input {
    width: 260px;
    padding: 12px 18px;
    border-radius: 30px;
    border: none;
    outline: none;
    background: #3c3c3c;
    color: #fff;
    font-size: 16px;
}

/* DONATE NOW BUTTON */
.donate-now-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 12px 30px;
    background: #e53935;
    border-radius: 40px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: .5px;
    transition: .3s ease;
}

.donate-now-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(255, 107, 60, 0.4);
}

/* ORANGE CIRCLE ARROW */
.circle-arrow {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #fff;
    color: #e53935;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
}


/* ============================================
   📱 MOBILE RESPONSIVE (MAX-WIDTH: 768PX)
============================================ */
@media (max-width: 768px) {

    /* MAIN SECTION -> Stack Vertically */
    .donation-section {
        flex-direction: column;
        height: auto;
    }

    /* LEFT IMAGE */
    .donation-left {
        width: 100%;
        height: 260px;
    }

    .donation-left img {
        height: 100%;
        object-fit: cover;
    }

    /* RIGHT AREA */
    .donation-right {
        width: 100%;
        padding: 30px 20px;
        text-align: center;
    }

    /* SUB TITLE */
    .donation-sub {
        font-size: 13px;
        margin-bottom: 8px;
    }

    /* MAIN TITLE */
    .donation-title {
        font-size: 28px;
        line-height: 1.3;
        margin-bottom: 20px;
    }

    /* AMOUNT BUTTONS */
    .donation-options {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        margin-bottom: 20px;
    }

    .amount-btn {
        font-size: 14px;
        padding: 10px 20px;
    }

    /* CUSTOM INPUT */
    .custom-input {
        width: 100%;
        max-width: 300px;
        padding: 12px 16px;
        margin: 0 auto;
    }

    /* DONATE NOW */
    .donate-now-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
        font-size: 15px;
        padding: 12px 22px;
    }

    .circle-arrow {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }
}


.cta-section {
    padding: 50px 5%;
    overflow: hidden;
}

.cta-container {
    display: flex;
    gap: 40px;
    justify-content: center;
}

/* COMMON CARD STYLE */
.cta-box {
    width: 48%;
    height: 260px;
    border-radius: 20px;
    padding: 40px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.cta-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 450px;
}

.cta-box::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    opacity: .92;
}


/* ORANGE CARD */
.cta-orange {
    background-image: url("img/c1.webp");
}
.cta-orange::before {
    background: #e53935; /* required color */
}

/* GREEN CARD */
.cta-green {
    background-image: url("img/c2.webp");
}
.cta-green::before {
    background: #2ecc71;
}

/* TEXTS */
.cta-box h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-box p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* CTA BUTTON */
.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 26px;
    color: #fff;
    text-decoration: none;
    border: 2px solid #fff;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 600;
    transition: .3s;
}

.cta-btn:hover {
    background: rgba(255,255,255,0.2);
}

/* ARROW */
.cta-arrow {
    width: 34px;
    height: 34px;
    background: #fff;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-arrow i {
    font-size: 18px;
}

/* ============================================
   📱 MOBILE RESPONSIVE (MAX-WIDTH: 768PX)
============================================ */
@media (max-width: 768px) {

    .cta-section {
        padding: 40px 20px;
    }

    /* STACK CARDS */
    .cta-container {
        flex-direction: column;
        gap: 25px;
    }

    .cta-box {
        width: 100%;
        height: auto;
        padding: 30px 25px;
        min-height: 260px;
        justify-content: flex-start;
    }

    .cta-content {
        max-width: 100%;
        text-align: left;
    }

    /* TEXT SIZE */
    .cta-box h2 {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .cta-box p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    /* BUTTON */
    .cta-btn {
        padding: 10px 22px;
        font-size: 13px;
    }

    /* ARROW */
    .cta-arrow {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }
}

/* Make .who-section a positioned container */
.who-section {
    position: relative;
    overflow: hidden;
    padding: 100px 6%;
    background: radial-gradient(circle at top left, #faf8f5, #f6f3ee, #f8f6f2);
}

/* LEFT HALF CIRCLE */
.who-section::before {
    content: "";
    position: absolute;
    left: -180px;              
    top: 50%;
    transform: translateY(-50%);
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: rgba(255, 209, 148, 0.45);
    border: 8px solid rgba(255, 209, 148, 0.35);
    z-index: -1;                 /* behind content */
}

/* RIGHT HALF CIRCLE */
.who-section::after {
    content: "";
    position: absolute;
    right: -180px;
    top: 20%;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: rgba(255, 209, 148, 0.45);
    border: 8px solid rgba(255, 209, 148, 0.35);
    z-index: -1;                 /* behind content */
}

/* CENTER LARGE CIRCLE BEHIND IMAGES */
.who-right {
    width: 47%;
    position: relative;
    z-index: 2;                  /* images stay above circles */
}

.who-right::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(255, 209, 148, 0.25);
    border: 7px solid rgba(255, 209, 148, 0.25);
    right: -60px;
    bottom: -30px;
    z-index: -1;                 /* behind images */
}

.who-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

/* LEFT AREA */
.who-left {
    width: 50%;
}

.who-sub {
    color: #e53935;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.who-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 25px;
    color: #1c1c1c;
}

.who-desc {
    color: #555;
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 35px;
}

/* FUND ROW */
.fund-row {
    display: flex;
    gap: 10px;
    font-size: 18px;
    font-weight: 600;
    margin-top: 25px;
}

.fund-green {
    color: #2ecc71;
    font-weight: 700;
}

/* PROGRESS BAR */
.progress-bar {
    width: 100%;
    height: 5px;
    background: #e0dfdf;
    border-radius: 6px;
    margin: 8px 0 10px;
}

.progress-fill {
    height: 100%;
    background: #e53935;
    border-radius: 6px;
}

/* DONATE BUTTON */
.donate-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 14px 32px;
    border: 2px solid #e53935;
    border-radius: 40px;
    font-weight: 600;
    color: #000;
    font-size: 16px;
    margin-top: 20px;
    text-decoration: none;
    transition: 0.3s ease;
}

.donate-btn:hover {
    background: #e53935;
    color: #fff;
}

/* ARROW CIRCLE */
.btn-circle {
    width: 36px;
    height: 36px;
    background: #e53935;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    border-radius: 50%;
}

.btn-circle i {
    font-size: 20px;
}

/* RIGHT IMAGE AREA */
.who-right {
    width: 47%;
    position: relative;
}

.who-img {
    width: 80%;
    border-radius: 20px;
    object-fit: cover;
}

.img-top {
    margin-left: 40px;
    margin-bottom: 30px;
}

.img-bottom {
    width: 70%;
    border-radius: 22px;
    border-left: 8px solid #e53935;
}

/* ============================================
   📱 MOBILE RESPONSIVE (MAX-WIDTH: 768PX)
============================================ */
@media (max-width: 768px) {

    .who-section {
        padding: 60px 20px;
    }

    /* Remove huge circles from overflowing */
    .who-section::before,
    .who-section::after {
        width: 220px;
        height: 220px;
        left: -120px;
        right: -120px;
        opacity: 0.35;
    }

    /* Main container becomes vertical */
    .who-container {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    /* LEFT SIDE */
    .who-left {
        width: 100%;
    }

    .who-sub {
        font-size: 13px;
        margin-bottom: 5px;
    }

    .who-title {
        font-size: 32px;
        line-height: 1.25;
        margin-bottom: 18px;
    }

    .who-desc {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 25px;
    }

    /* FUND / RAISED */
    .fund-row {
        font-size: 16px;
        justify-content: center;
        gap: 8px;
    }

    /* PROGRESS BAR */
    .progress-bar {
        height: 4px;
        margin: 10px auto 15px;
        width: 95%;
    }

    /* BUTTON */
    .donate-btn {
        padding: 12px 26px;
        font-size: 14px;
        justify-content: center;
        margin: 0 auto;
    }

    .btn-circle {
        width: 32px;
        height: 32px;
        font-size: 18px;
    }

    /* RIGHT IMAGE SECTION */
    .who-right {
        width: 100%;
        text-align: center;
    }

    .who-right::before {
        width: 260px;
        height: 260px;
        right: -40px;
        bottom: -20px;
        opacity: 0.3;
    }

    .who-img {
        width: 90%;
    }

    .img-top {
        margin-left: 0;
        margin-bottom: 20px;
    }

    .img-bottom {
        width: 80%;
        border-width: 6px;
    }
}


/* SECTION */
.events-section {
    padding: 70px 6%;
    background: #fcfaf7;
    overflow: hidden;
}

/* HEADER */
.events-header {
    text-align: center;
    margin-bottom: 50px;
}

.events-sub {
    color: #e53935;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 10px;
}

.events-title {
    font-size: 48px;
    font-weight: 800;
    color: #1b1b1b;
    line-height: 1.2;
}

/* GRID */
.events-grid {
    display: flex;
    gap: 35px;
    justify-content: center;
}

/* CARD */
.event-card {
    background: #fff;
    border-radius: 25px;
    padding: 20px;
    width: 350px;
    box-shadow: 0px 8px 25px rgba(0,0,0,0.08);
    transition: .3s;
}

.event-card:hover {
    transform: translateY(-5px);
}

/* IMAGE BOX */
.event-img-box {
    position: relative;
    margin-bottom: 18px;
    border-radius: 20px;
    overflow: hidden;
}

/* BLACK & WHITE EFFECT */
.event-img {
    width: 100%;
    border-radius: 20px;
    filter: grayscale(100%);
    transition: .3s ease-in-out;
}

.event-card:hover .event-img {
    filter: grayscale(0%);
}

/* DATE STICKER */
.event-date {
    position: absolute;
    left: 20px;
    bottom: 15px;
    background: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.15);
}

.event-date i {
    color: #20c997; /* green dot */
}

/* TITLES */
.event-name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.event-text {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 18px;
}

/* LOCATION */
.event-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #555;
    font-size: 14px;
    margin-bottom: 25px;
}

.event-location i {
    color: #e53935;
}

/* DONATE BUTTON */
.event-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 26px;
    border-radius: 40px;
    border: 2px solid #e53935;
    color: #1b1b1b;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: .3s ease;
}

.event-btn:hover {
    background: #e53935;
    color: #fff;
}

/* BUTTON ARROW */
.btn-circle {
    width: 32px;
    height: 32px;
    background: #e53935;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 16px;
}

/* ============================================
   📱 MOBILE RESPONSIVE (MAX-WIDTH: 768PX)
============================================ */
@media (max-width: 768px) {

    .events-section {
        padding: 50px 20px;
    }

    /* HEADER */
    .events-title {
        font-size: 32px;
        line-height: 1.3;
    }

    .events-sub {
        font-size: 13px;
        margin-bottom: 8px;
    }

    /* GRID -> STACK */
    .events-grid {
        flex-direction: column;
        gap: 25px;
        align-items: center;
    }

    /* CARD */
    .event-card {
        width: 100%;
        max-width: 340px;
        padding: 18px;
    }

    /* IMAGE */
    .event-img {
        height: auto;
    }

    .event-img-box {
        margin-bottom: 15px;
    }

    /* DATE BOX */
    .event-date {
        padding: 6px 12px;
        font-size: 13px;
        bottom: 12px;
        left: 12px;
    }

    /* TITLE */
    .event-name {
        font-size: 18px;
        margin-bottom: 10px;
    }

    /* TEXT */
    .event-text {
        font-size: 14px;
        margin-bottom: 15px;
    }

    /* LOCATION */
    .event-location {
        font-size: 13px;
        margin-bottom: 20px;
    }

    /* BUTTON */
    .event-btn {
        padding: 10px 22px;
        font-size: 14px;
    }

    .btn-circle {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
}


.testimonial-section {
    padding: 70px 6%;
    background: #fcfaf7;
    overflow: hidden;
}

/* HEADER */
.testimonial-header {
    text-align: center;
    margin-bottom: 50px;
}

.testimonial-sub {
    color: #e53935;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.testimonial-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    color: #222;
}

.testimonial-title span {
    color: #e53935;
}

/* GRID */
.testimonial-grid {
    display: flex;
    gap: 35px;
    justify-content: center;
}

/* CARD */
.testimonial-card {
    width: 360px;
    background: #fff;
    border-radius: 25px;
    padding: 28px;
    box-shadow: 0px 8px 25px rgba(0,0,0,0.08);
}

.stars {
    font-size: 20px;
    color: #f7b400;
    margin-bottom: 15px;
}

.feedback-box {
    background: #fdf3e7;
    padding: 18px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.feedback-box p {
    font-size: 15px;
    color: #444;
    line-height: 1.6;
}

/* CLIENT INFO */
.client-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.client-img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
}

.client-info h4 {
    font-size: 17px;
    margin: 0;
    color: #222;
    font-weight: 700;
}

.client-info span {
    font-size: 14px;
    color: #777;
}


/* Card lift + glow */
.testimonial-card {
    transition: 0.35s ease;
}

.testimonial-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}

/* Feedback box brighten */
.testimonial-card:hover .feedback-box {
    background: #ffe9d2;
    transition: 0.35s ease;
}

/* Image zoom effect */
.testimonial-card:hover .client-img {
    transform: scale(1.08);
    transition: 0.35s ease;
}

/* Star rating brighten */
.testimonial-card:hover .stars {
    color: #ffb600;
    transform: scale(1.05);
    transition: 0.35s ease;
}


/* ============================================
   📱 MOBILE RESPONSIVE (MAX-WIDTH: 768PX)
============================================ */
@media (max-width: 768px) {

    .testimonial-section {
        padding: 50px 20px;
    }

    /* HEADER */
    .testimonial-title {
        font-size: 32px;
        line-height: 1.3;
    }

    .testimonial-sub {
        font-size: 13px;
        margin-bottom: 8px;
    }

    /* GRID STACK */
    .testimonial-grid {
        flex-direction: column;
        gap: 25px;
        align-items: center;
    }

    /* CARD */
    .testimonial-card {
        width: 100%;
        max-width: 340px;
        padding: 22px;
    }

    /* STARS */
    .stars {
        font-size: 18px;
        margin-bottom: 12px;
    }

    /* FEEDBACK */
    .feedback-box {
        padding: 15px;
    }

    .feedback-box p {
        font-size: 14px;
    }

    /* CLIENT INFO */
    .client-img {
        width: 50px;
        height: 50px;
    }

    .client-info h4 {
        font-size: 16px;
    }

    .client-info span {
        font-size: 13px;
    }
}



/* SECTION */
.blog-section {
    padding: 70px 6%;
    background: #fcfaf7;
    overflow: hidden;
}

/* HEADER */
.blog-header {
    text-align: center;
    margin-bottom: 60px;
}

.blog-sub {
    color: #e53935;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.blog-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    color: #1b1b1b;
}

/* BLOG GRID */
.blog-grid {
    display: flex;
    gap: 35px;
    justify-content: center;
}

/* BLOG CARD */
.blog-card {
    width: 360px;
    background: #fff;
    border-radius: 25px;
    padding: 22px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.15);
}

/* IMAGE BOX */
.blog-img-box {
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 18px;
}

.blog-img {
    width: 100%;
    border-radius: 20px;
    filter: grayscale(100%);
    transition: .3s;
}

.blog-card:hover .blog-img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* DATE BADGE */
.blog-date {
    position: absolute;
    left: 15px;
    bottom: 15px;
    background: #ffb200;
    padding: 5px 12px;
    border-radius: 8px;
    text-align: center;
    color: #fff;
    font-weight: 700;
    width: 52px;
}

.blog-date .day {
    font-size: 18px;
    display: block;
}

.blog-date .month {
    font-size: 12px;
    background: #fff;
    color: #000;
    padding: 2px 5px;
    border-radius: 4px;
    display: inline-block;
}

/* BLOG NAME */
.blog-name {
    font-size: 18px;
    font-weight: 700;
    color: #1b1b1b;
    line-height: 1.4;
    margin-bottom: 20px;
}

/* READ BUTTON */
.blog-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 26px;
    border-radius: 40px;
    border: 2px solid #e53935;
    color: #1b1b1b;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: .3s ease;
}

.blog-btn:hover {
    background: #e53935;
    color: #fff;
}

/* BUTTON ARROW */
.btn-circle {
    width: 32px;
    height: 32px;
    background: #e53935;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
}

/* ============================================
   📱 MOBILE RESPONSIVE (MAX-WIDTH: 768PX)
============================================ */
@media (max-width: 768px) {

    .blog-section {
        padding: 50px 20px;
    }

    /* HEADER */
    .blog-title {
        font-size: 32px;
        line-height: 1.3;
    }

    .blog-sub {
        font-size: 13px;
        margin-bottom: 8px;
    }

    /* GRID → STACK VERTICALLY */
    .blog-grid {
        flex-direction: column;
        gap: 25px;
        align-items: center;
    }

    /* CARD */
    .blog-card {
        width: 100%;
        max-width: 340px;
        padding: 20px;
    }

    /* IMAGE */
    .blog-img-box {
        margin-bottom: 15px;
    }

    .blog-img {
        border-radius: 16px;
    }

    /* DATE TAG */
    .blog-date {
        left: 12px;
        bottom: 12px;
        width: 45px;
        padding: 4px 10px;
        border-radius: 6px;
    }

    .blog-date .day {
        font-size: 16px;
    }

    .blog-date .month {
        font-size: 11px;
        padding: 2px 4px;
    }

    /* BLOG TITLE */
    .blog-name {
        font-size: 16px;
        margin-bottom: 18px;
    }

    /* READ MORE BUTTON */
    .blog-btn {
        padding: 10px 22px;
        font-size: 13px;
    }

    .btn-circle {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }
}


.distributors-section {
    padding: 60px 0;
    text-align: center;
    background: #f5f3ef;
    overflow: hidden;
    font-family: "Poppins", sans-serif;
}

.distributors-section .title {
    font-size: 38px;
    font-weight: 600;
    color: #202020;
}

.distributors-section .title span {
    color: #e53935;
}

.distributors-grid {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 35px;
}

.dist-card {
    background: #fff;
    padding: 18px 25px;
    border-radius: 40px;
    width: 250px;
    height: 90px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0px 10px 35px rgba(0, 0, 0, 0.07);
    transition: 0.3s ease;
    cursor: pointer;
}

.dist-card img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
}

.dist-card p {
    font-size: 18px;
    font-weight: 500;
    color: #222;
}

/* Hover Effect */
.dist-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 15px 40px rgba(0, 0, 0, 0.12);
}


/* Join Us Section */
.join-us {
    width: 100%;
    height: 70vh;
    background: url('img/card1.webp') center/cover no-repeat;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Poppins", sans-serif;
}

/* Orange Overlay */
.join-us .overlay {
    position: absolute;
    inset: 0;
    background: rgba(229, 95, 43, 0.9);
    mix-blend-mode: multiply;
}

/* Text Content */
.join-us .hero-content {
    position: relative;
    text-align: center;
    color: #fff;
    max-width: 900px;
    padding: 20px;
}

.join-us .hero-content h1 {
    font-size: 54px;
    line-height: 1.3;
    font-weight: 600;
}

/* Buttons Wrapper */
.hero-buttons {
    margin-top: 40px;
    display: flex;
    gap: 25px;
    justify-content: center;
}

/* Buttons Common Style */
.btn {
    padding: 18px 40px;
    font-size: 18px;
    border-radius: 40px;
    font-weight: 500;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: 0.3s;
}

/* Donate Button */
.donate-btn {
    background: #f5b02a;
    color: #000;
}

/* Volunteer Button */
.volunteer-btn {
    background: #fff;
    color: #000;
}

/* Arrow Circles */
.arrow-circle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #000;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
}

.arrow-circle.dark {
    background: #000;
}

/* Hover Effects */
.btn:hover {
    transform: translateY(-4px);
}


/* ============================================
   📱 MOBILE RESPONSIVE (MAX-WIDTH: 768PX)
============================================ */
@media (max-width: 768px) {

    /* --------------------------
       DISTRIBUTORS SECTION
    ---------------------------*/
    .distributors-section {
        padding: 40px 20px;
    }

    .distributors-section .title {
        font-size: 28px;
        line-height: 1.3;
    }

    .distributors-grid {
        gap: 20px;
    }

    .dist-card {
        width: 90%;
        max-width: 300px;
        height: auto;
        padding: 15px 20px;
        gap: 15px;
    }

    .dist-card img {
        width: 50px;
        height: 50px;
    }

    .dist-card p {
        font-size: 16px;
    }

    /* --------------------------
       JOIN US HERO SECTION
    ---------------------------*/
    .join-us {
        height: auto;
        padding: 80px 20px;
        text-align: center;
    }

    .join-us .hero-content {
        max-width: 100%;
        padding: 10px;
    }

    .join-us .hero-content h1 {
        font-size: 32px;
        line-height: 1.3;
    }

    /* Buttons layout for mobile */
    .hero-buttons {
        margin-top: 25px;
        flex-direction: column;
        gap: 15px;
    }

    .btn {
        width: 100%;
        justify-content: center;
        padding: 14px 25px;
        font-size: 16px;
    }

    .arrow-circle {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }
}


.footer-section {
    background: #1b1c1f;
    color: #bbb;
    padding: 70px 8%;
    position: relative;
    overflow: hidden;
}

/* GRID LAYOUT */
.footer-container {
    display: grid;
    grid-template-columns: 32% 20% 20% 28%;
    gap: 40px;
    align-items: start;
    position: relative;
}

.footer-container::before,
.footer-container::after {
    content: "";
    position: absolute;
    width: 1px;
    background: rgba(255,255,255,0.07);
    top: 0;
    bottom: 0;
}

.footer-container::before { left: 32%; }
.footer-container::after { left: 52%; }

/* LOGO ROW */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo img {
    width: 160px;
    margin-bottom: 20px;
}

.footer-logo h2 {
    color: #fff;
}

/* SUBSCRIBE BOX */
.subscribe-box {
    margin: 30px 0;
    position: relative;
}

.subscribe-box input {
    width: 100%;
    padding: 14px 20px;
    border-radius: 10px;
    border: none;
    outline: none;
    background: #fff;
    font-size: 16px;
}

.subscribe-box button {
    position: absolute;
    right: 10px;
    top: 8px;
    background: transparent;
    border: none;
    font-size: 22px;
    color: #e64232;
    cursor: pointer;
}

/* SOCIAL ICONS */
.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: #2a2b2e;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.social-icons a:hover {
    background: #e64232;
}

/* COLUMNS HEADERS */
.footer-col h3 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

/* LIST LINKS */
.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #bbb;
    text-decoration: none;
    font-size: 16px;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #e64232;
}

/* CONTACT BOX */
.contact-box {
    display: flex;
    align-items: center;
    gap: 18px;
    background: #fff;
    padding: 18px 25px;
    border-radius: 15px;
    color: #000;
    position: relative;
    margin-bottom: 25px;
}

/* ARROW POINTER */
.contact-box .arrow {
    position: absolute;
    left: -18px;
    top: 22px;
    width: 18px;
    height: 18px;
    background: #fff;
    clip-path: polygon(0 50%, 100% 0, 100% 100%);
}

.contact-box .phone-icon {
    font-size: 28px;
    color: #000;
}

/* CONTACT ITEMS */
.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-item i {
    font-size: 28px;
    background: #2a2b2e;
    color: #fff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-item p {
    margin: 0;
    font-size: 16px;
    color: #ccc;
}

/* BOTTOM BAR */
.footer-bottom {
    background: #e64232;
    padding: 14px;
    text-align: center;
    color: #fff;
    margin-top: 40px;
    font-size: 16px;
}


/* ============================================================
   FOOTER — MOBILE VIEW (CENTER EVERYTHING)  (MAX-WIDTH: 768px)
   ============================================================ */
@media (max-width: 768px){

    .footer-section{
        padding: 50px 6%;
        text-align: center;      /* CENTER ALL TEXT */
    }

    .footer-container{
        grid-template-columns: 1fr;   /* Single Column */
        gap: 35px;
        justify-items: center;        /* CENTER ALL GRID ITEMS */
        text-align: center;
    }

    /* Remove dividing vertical lines */
    .footer-container::before,
    .footer-container::after{
        display: none;
    }

    /* Center Logo */
    .footer-logo{
        justify-content: center;   /* CENTER LOGO */
    }

    .footer-logo img{
        width: 130px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Subscribe box -> center */
    .subscribe-box{
        width: 100%;
        max-width: 380px;
        margin-left: auto;
        margin-right: auto;
    }

    .subscribe-box input{
        text-align: center;
        font-size: 15px;
    }

    .subscribe-box button{
        right: 12px;
        font-size: 20px;
    }

    /* Social Icons Center */
    .social-icons{
        justify-content: center;
        gap: 12px;
    }

    /* Footer columns */
    .footer-col{
        text-align: center;
    }

    .footer-col ul{
        padding: 0;
        text-align: center;
    }

    .footer-col ul li{
        text-align: center;
    }

    /* Contact box center */
    .contact-box{
        margin-left: auto;
        margin-right: auto;
        display: flex;
        justify-content: center;
        text-align: center;
    }

    .contact-item{
        justify-content: center;
        text-align: center;
    }

    /* Bottom Bar */
    .footer-bottom{
        text-align: center;
    }
}


/* ============================================================
   EXTRA SMALL MOBILE — FULL CENTER (MAX-WIDTH: 450px)
   ============================================================ */
@media (max-width: 450px){

    .footer-section{
        padding: 40px 5%;
        text-align: center;
    }

    .footer-logo img{
        width: 120px;
        margin: 0 auto;
    }

    .subscribe-box{
        max-width: 320px;
    }

    .social-icons a{
        width: 36px;
        height: 36px;
    }

    .contact-box{
        padding: 14px 16px;
    }

    .footer-bottom{
        font-size: 14px;
        text-align: center;
    }
}


/* Before Scroll */
.wave-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: 1.8s ease-out;
}

/* Trigger on Scroll */
.wave-scroll.show {
    opacity: 1;
    transform: translateY(0);
    animation: waveOnce 2s ease-out forwards;
}

/* One-time Wave Motion */
@keyframes waveOnce {
    0%   { transform: translateY(40px) rotate(-1deg); opacity: 0; }
    40%  { transform: translateY(-10px) rotate(1deg); opacity: 1; }
    70%  { transform: translateY(5px) rotate(-1deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}


