*{
    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;
    }

}


.hero-slider{
    position:relative;
    width:100%;
    height:100vh;
    overflow:hidden;
    background:#111;
}

.slide{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    display:flex;
    margin-left: 20px;
    opacity:0;
    pointer-events:none;
    transition:opacity 1s ease;
}

.slide.active{
    opacity:1;
    pointer-events:auto;
}

/* LEFT SIDE */
.left-box{
    width:50%;
    padding:120px 80px;
    color:white;
    position:relative;
    background:url('img/background.webp');
    background-size:cover;
    background-position:center;
    animation:fadeLeft 1.2s ease forwards;
}

.left-box::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.6); /* adjust darkness */
    z-index:0;
}

.left-box *{
    position:relative;
    z-index:1;
}


.badge{
    background:rgba(255,255,255,0.15);
    padding:12px 25px;
    border-radius:30px;
    font-weight:600;
    letter-spacing:1px;
    color:#e43d3d;
}

.left-box h1{
    margin:30px 0;
    font-size:65px;
    line-height:75px;
    font-weight:700;
}

.left-box p{
    margin-bottom:40px;
    font-size:20px;
    width:90%;
    color:#ddd;
}

.left-box{
    padding:100px 60px;  /* reduced padding */
}

.left-box h1{
    font-size:55px;       /* reduced from 65px */
    line-height:62px;
}

.left-box p{
    font-size:18px;       /* smaller text */
    width:80%;            /* more compact */
}


.cta-btn{
    display:inline-block;
    padding:18px 35px;
    background:#e53935;
    border-radius:6px;
    color:white;
    font-size:20px;
    text-decoration:none;
    font-weight:600;
}


/* RIGHT SIDE */
.right-box{
    width:50%;
    height:100%;
    position:relative;
    overflow:hidden;
}

.hero-img{
    width:100%;
    height:100%;
    object-fit:cover;
    filter:grayscale(100%);
    transform:scale(1.2);
    transition:1.5s ease;
}

.slide.active .hero-img{
    transform:scale(1);
}

.nav-arrows{
    position:absolute;
    left:10px;
    top:50%;
    transform:translateY(-50%);
    display:flex;
    flex-direction:column;
    gap:20px;
}

/* Arrow Style */
.arrow{
    width:55px;
    height:55px;
    border-radius:50%;
    background:#ffffff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:20px;
    cursor:pointer;
    transition:0.3s ease;   /* smooth animation */
}

/* Hover Effect */
.arrow:hover{
    background:#e53935;     /* red background on hover */
    color:white;            /* arrow icon turns white */
    transform:scale(1.12);  /* slight zoom */
    box-shadow:0 6px 18px rgba(0,0,0,0.25);
}

/* TEXT ANIMATION */
@keyframes fadeLeft {
    from { opacity:0; transform:translateX(-60px); }
    to   { opacity:1; transform:translateX(0); }
}

@media (max-width:768px){

    .hero-slider{
        position:relative !important;
        height:auto !important;
        overflow:hidden !important;
        padding-bottom:50px;
    }

    /* EACH SLIDE — KEEP OVERLAPPED (IMPORTANT FIX) */
    .slide{
        position:absolute !important; /* Overlap all slides */
        top:0 !important;
        left:0 !important;
        width:100% !important;
        height:auto !important;

        flex-direction:column !important;
        margin-left:0 !important;

        opacity:0 !important;
        pointer-events:none !important;
        transition:opacity 0.8s ease !important;
    }

    /* ACTIVE SLIDE VISIBLE */
    .slide.active{
        opacity:1 !important;
        pointer-events:auto !important;
        z-index:5 !important;
    }

    /* LEFT SIDE */
    .left-box{
        width:100% !important;
        padding:50px 25px !important;
        text-align:center !important;
        height:auto !important;
        animation:none !important;
    }

    .badge{
        font-size:14px;
        padding:8px 18px;
        margin:0 auto;
    }

    .left-box h1{
        font-size:32px;
        line-height:40px;
        margin:20px 0;
    }

    .left-box p{
        font-size:15px;
        width:100%;
        margin-bottom:22px;
    }

    .cta-btn{
        font-size:16px;
        padding:12px 25px;
    }

    /* RIGHT SIDE */
    .right-box{
        width:100% !important;
        height:250px !important;
    }

    .hero-img{
        width:100% !important;
        height:100% !important;
        object-fit:cover;
    }

    /* ARROWS */
    .nav-arrows{
        position:absolute !important;
        bottom:20px !important;
        left:15% !important;
        transform:translateX(-50%) !important;
        flex-direction:row !important;
        gap:15px;
    }

    .arrow{
        width:45px;
        height:45px;
        font-size:16px;
    }
}

@media (max-width:768px) {
    .hero-slider {
        height: 620px !important;   /* FIX: set a proper height */
        position: relative;
        overflow: hidden;
        background: #111;
    }
}


/* Make arrows always visible */
.nav-arrows{
    position:absolute;
    z-index:9999;        /* keep above slides */
    opacity:1 !important;
    visibility:visible !important;
}

/* Make sure arrows do NOT fade with slide */
.slide .nav-arrows,
.slide.active .nav-arrows{
    opacity:1 !important;
    visibility:visible !important;
}

.arrow{
    opacity:1 !important;
    visibility:visible !important;
}


/* ==== MAIN GRID ==== */
.causes-section{
    display: flex;
    justify-content: center;
    gap: 35px;
    overflow: hidden;
    padding: 50px 0;
}

.cause-card1{
    width: 360px;
    background: #f8f5f2;
    border-radius: 22px;
    padding: 35px 30px;
    position: relative;
    text-align: center;
    transition: 0.35s ease;
}

/* Top title */
.cause-card1 h2{
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 25px;
}

/* IMAGE */
.cause-img1{
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 18px;
    transition: 0.35s ease;
}

/* HOVER EFFECT */
.cause-card1:hover{
    transform: translateY(-10px);
}

.cause-card1:hover .cause-img1{
    transform: scale(1.05);
}

/* ===== ARROW BUTTON ===== */
.arrow-btn1{
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #e94b35;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    color: white;
    margin: 0 auto 15px;
    transition: 0.3s ease;
    border: 8px solid #ffe6e2;
}

.arrow-btn1.dark{
    background: #1d1d1d;
    border-color: #d7c47d;
}

.arrow-btn1:hover{
    transform: scale(1.15);
}

/* ===== MIDDLE CARD (YELLOW TORN BOX) ===== */
.mid-card{
    padding: 0;
    background: none;
}

.yellow-box{
    margin-top: -120px;
    background: #f0b933;
    padding: 60px 25px 35px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    position: relative;
}

.yellow-box h2{
    margin-top: 15px;
    color: white;
}

/* ===== BOTTOM TEXT + BUTTON ===== */
.bottom-box{
    text-align: center;
    margin-bottom: 20px;
}

.bottom-box p{
    font-size: 22px;
    font-style: italic;
    margin-bottom: 20px;
}

.bottom-box{
    text-align:center;
    margin:40px 0;       /* ⬅ add more space above & below */
    padding-bottom:20px; /* ⬅ prevent clipping */
}

.more-btn{
    display:inline-block;
    padding:14px 32px;
    background:#e94b35;
    color:#fff;
    border-radius:10px;
    font-weight:600;
    text-decoration:none;
    margin-top:15px;   /* ⬅ push button downward slightly */
}

.more-btn:hover{
    background: #1d1d1d;
}

/* ========== MOBILE VIEW (MAX 768px) ========== */
@media (max-width:768px){

    /* Stack cards vertically */
    .causes-section{
        flex-direction: column;
        align-items: center;
        gap: 45px;        /* spacing between cards */
        padding: 30px 15px;
    }

    /* Card Width Adjust */
    .cause-card1{
        width: 100%;
        max-width: 380px; /* responsive max size */
        padding: 25px 20px;
    }

    /* Title */
    .cause-card1 h2{
        font-size: 22px;
        margin-bottom: 18px;
    }

    /* Image height reduce */
    .cause-img1{
        height: 400px;
        border-radius: 14px;
    }

    /* Arrow Button */
    .arrow-btn1{
        width: 60px;
        height: 60px;
        font-size: 20px;
        border-width: 6px;
        margin-bottom: 12px;
    }

    /* Middle Yellow Torn Box */
    .yellow-box{
        margin-top: -80px;
        padding: 40px 20px 25px;
        border-radius: 0 0 18px 18px;
    }

    .yellow-box h2{
        font-size: 22px;
        margin-top: 10px;
    }

    /* Bottom Text */
    .bottom-box p{
        font-size: 18px;
        margin-bottom: 15px;
    }

    .bottom-box{
        margin: 20px 0;
        padding-bottom: 10px;
    }

    /* MORE Button */
    .more-btn{
        padding: 12px 28px;
        font-size: 15px;
        margin-top: 12px;
        border-radius: 8px;
    }
}



.about-section{
    width:100%;
    padding:80px 7%;
    display:flex;
    justify-content:space-between;
    gap:60px;
    overflow: hidden;
    align-items:flex-start;
    background:#fafafa url('img/back.webp');
}

/* LEFT SIDE */
.about-left{
    width:50%;
}

.about-title{
    display:flex;
    align-items:center;
    gap:10px;

}

.about-icon{
    width:35px;
}

.about-title span{
    color:#e94b35;
    font-weight:700;
    font-size:20px;
}

.about-heading{
    font-size:38px;
    line-height:55px;
    margin:20px 0;
    font-weight:700;
}

.about-text{
    font-size:18px;
    color:#555;
    margin-bottom:35px;
}

/* Cards */
.about-card{
    display:flex;
    align-items:center;
    background:url('img/card1.webp');
    background-size:cover;
    background-position:center;
    border-radius:12px;
    margin-bottom:22px;
    overflow:hidden;
    position:relative;
}

.card-icon{
    width:130px;
    height:130px;
    background:#e94b35;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:38px;
    color:white;
}

.card-info{
    padding:25px;
    color:white;
    width:100%;
    backdrop-filter:brightness(0.3);
}

.card-info h3{
    font-size:24px;
    margin-bottom:5px;
}

.card-info p{
    font-size:16px;
    opacity:0.9;
}

/* Discover Button */
.about-btn{
    padding:15px 30px;
    background:#e94b35;
    color:white;
    text-decoration:none;
    font-size:18px;
    border-radius:8px;
    margin-top:20px;
    display:inline-block;
    transition:.3s;
}

.about-btn:hover{
    background:#1d1d1d;
}

/* RIGHT SIDE */
.about-right{
    width:50%;
    position:relative;
}

.big-img-box{
    width:100%;
    height:420px;
    overflow:hidden;
    border-radius:20px;
}

.big-img{
    width:100%;
    height:100%;
    object-fit:cover;
    filter:grayscale(100%);
}

/* Yellow Line */
.yellow-line{
    position:absolute;
    top:-20px;
    right:20px;
    width:190px;
}

/* Curve Arrow */
.curve-arrow{
    position:absolute;
    top:220px;
    left:-80px;
    width:90px;
}

/* Circle Image */
.circle-img-box{
    position:absolute;
    bottom:-200px;
    left:50%;
    transform:translateX(-50%);
    width:240px;
    height:240px;
    border-radius:50%;
    overflow:hidden;
}

.circle-img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:50%;
}

/* Red Paint Ring */
.paint-ring{
    position:absolute;
    top:-130px;
    left:-130px;
    width:500px;
    pointer-events:none;
    z-index: 9999;
}

/* Yellow Grid */
.yellow-grid{
    position:absolute;
    bottom:-100px;
    right:0;
    width:160px;
    opacity:0.7;
}

/* ========== ABOUT SECTION — MOBILE (MAX 768px) ========== */
@media (max-width: 768px) {

  .about-section{
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 40px 6%;
    overflow: visible;
    background-position: center top;
  }

  /* LEFT & RIGHT become full width stacked */
  .about-left,
  .about-right{
    width: 100%;
  }

  /* Title and headings */
  .about-title{ gap:8px; }
  .about-title span{ font-size:18px; }
  .about-heading{
    font-size:28px;
    line-height:36px;
    margin:14px 0;
  }

  .about-text{
    font-size:16px;
    margin-bottom:22px;
  }

  /* Cards — stack & shrink */
  .about-card{
    flex-direction: row;
    align-items: center;
    border-radius:12px;
    min-height: 110px;
    margin-bottom:16px;
    background-position:center;
  }

  .card-icon{
    width:92px;
    height:92px;
    font-size:30px;
    flex: 0 0 92px;
    border-radius:10px;
    margin: 12px;
  }

  .card-info{
    padding:14px;
  }
  .card-info h3{ font-size:18px; margin-bottom:6px; }
  .card-info p{ font-size:14px; }

  /* Discover button */
  .about-btn{
    padding:12px 24px;
    font-size:16px;
    margin-top:16px;
  }

  /* RIGHT: Big image box reduce height */
  .big-img-box{
    height: 300px;
    border-radius:14px;
  }
  .big-img{ filter: none; } /* optional: remove grayscale on small screens */

  /* Reposition or hide decorative elements to avoid overlap */
  .yellow-line{ display:none; }
  .curve-arrow{ display:none; }
  .paint-ring{ display:none; }
  .yellow-grid{ display:none; }

  /* Circle image: move up so it sits partly overlapping but not off-screen */
  .circle-img-box{
    position: relative;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 160px;
    height: 160px;
    margin-top: -80px; /* give visual overlap with the big image */
  }
  .circle-img{ border-radius:50%; object-fit:cover; }

  /* Ensure no horizontal overflow */
  .about-section, .about-left, .about-right, .big-img-box{
    max-width: 100%;
    box-sizing: border-box;
  }

  /* Small tweaks for very small screens */
  @media (max-width: 420px) {
    .about-heading{ font-size:24px; line-height:32px; }
    .about-text{ font-size:15px; }
    .card-icon{ width:80px; height:80px; font-size:26px; }
    .circle-img-box{ width:130px; height:130px; margin-top:-60px; bottom:-40px; }
  }
}


/* SECTION HEADER */
.service-header{
    text-align:left;
    margin:auto;
    overflow: hidden;
    padding:40px 60px;
}

.service-header h2{
    font-size:40px;
    font-weight:700;
    margin-bottom:10px;
}

.service-header p{
    color:#555;
    max-width:420px;
    float:right;
    line-height:1.6;
}

.service-header .tag{
    color:#e94b35;
    font-weight:600;
}

/* CARD LAYOUT CONTAINER */
.service-container{
    display:flex;
    justify-content:center;
    gap:25px;
    margin-top:50px;
}

/* CARD */
.service-card{
    width:350px;
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    position:relative;
}

/* TOP BOX */
.top-box{
    background:#fff;
    padding:30px 20px;
    text-align:center;
    position:relative;
    transition:0.3s ease;
    border:3px solid #e63946; /* 🔴 Red border */
    border-radius:15px;        /* Optional smooth corners */
}


.top-box h3{
    font-size:20px;
    font-weight:700;
}

.top-box p{
    font-size:14px;
    margin-top:10px;
    color:#444;
}

.paint-bg{
    width:90%;
    opacity:0.3;
    position:absolute;
    bottom:-10px;
    left:50%;
    transform:translateX(-50%);
}

/* ARROW BUTTON */
.arrow-btn{
    width:60px;
    height:60px;
    background:#fff;
    border-radius:50%;
    position:absolute;
    bottom:-50px;
    left:50%;
    transform:translateX(-50%);
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:20px;
    color:#e94b35;
    border:8px solid #1a1a1a;
    transition:0.3s;
    z-index:5;
}

/* BOTTOM IMAGE */
.bottom-box{
    position:relative;
    overflow:hidden;   /* important to hide overflow when cropping */
}

.main-img{
    width:100%;
    height:400px;      /* 🔥 fixed height for all images */
    object-fit:cover;  /* keeps image centered & not distorted */
    display:block;
    border-radius:0 0 12px 12px; /* optional smooth bottom corners */
}


/* ===========================
   SPECIAL CARD HOVER EFFECT
   =========================== */

.service-card.special:hover .top-box{
    background:#e94b35;
    color:#fff;
}

.service-card.special:hover .top-box p{
    color:white;
}

.service-card.special:hover .arrow-btn{
    background:#fff;
    border-color:#000;
    transform:translateX(-50%) scale(1.1);
}

/* RED OVERLAY */
.hover-overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:#e94b35;
    opacity:0;
    transition:0.4s ease-in-out;
}

/* WHITE ICON */
.hover-icon{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%, -50%) scale(0.6);
    opacity:0;
    font-size:80px;
    color:white;
    transition:0.4s ease;
}

/* ON HOVER SHOW BOTH */
.service-card.special:hover .hover-overlay{
    opacity:0.55;
}

.service-card.special:hover .hover-icon{
    opacity:1;
    transform:translate(-50%, -50%) scale(1);
}


/* ========== MOBILE VIEW FOR SERVICES (MAX 768px) ========== */
@media (max-width: 768px) {

  /* Section header — stack and remove float */
  .service-header{
    padding:28px 5%;
    text-align:left;
  }
  .service-header h2{
    font-size:28px;
    margin-bottom:8px;
  }
  .service-header p{
    float:none;
    max-width:100%;
    margin-top:8px;
    line-height:1.5;
    font-size:15px;
  }

  /* Container — stack cards vertically */
  .service-container{
    flex-direction:column;
    align-items:center;
    gap:22px;
    margin-top:30px;
    padding:0 5%;
  }

  /* Cards — full width friendly */
  .service-card{
    width:100%;
    max-width:420px;
    border-radius:12px;
  }

  /* Top box — reduce padding & border thickness */
  .top-box{
    padding:18px 14px;
    border-radius:12px;
    border:2px solid #e63946;
  }
  .top-box h3{ font-size:18px; }
  .top-box p{ font-size:13px; margin-top:8px; }

  /* Paint background — keep subtle & smaller */
  .paint-bg{
    width:75%;
    bottom:-6px;
  }

  /* Arrow button — bring closer to card and scale down */
  .arrow-btn{
    width:56px;
    height:56px;
    font-size:18px;
    bottom:-36px; /* less overlap on small screens */
    border-width:6px;
  }

  /* Bottom image — reduce fixed height for mobile */
  .main-img{
    height:240px;
    object-fit:cover;
    border-radius:0 0 12px 12px;
  }

  /* Hover overlay/icon still valid but keep transitions light */
  .hover-icon{ font-size:60px; }
}

/* ========== VERY SMALL SCREENS (MAX 420px) ========== */
@media (max-width: 420px) {

  .service-header{
    padding:20px 4%;
  }
  .service-header h2{ font-size:22px; }
  .service-header p{ font-size:14px; }

  .service-container{ gap:18px; padding:0 4%; }

  .service-card{ max-width:360px; }

  .top-box{ padding:14px 12px; border-radius:10px; }
  .top-box h3{ font-size:16px; }
  .top-box p{ font-size:13px; }

  .arrow-btn{
    width:48px;
    height:48px;
    font-size:16px;
    bottom:-30px;
    border-width:5px;
  }

  .main-img{ height:190px; }

  .hover-icon{ font-size:48px; transform:translate(-50%,-50%) scale(0.9); }
}


.testimonial-section{
    width:100%;
    padding:80px 7%;
    overflow: hidden;
    background:#fafafa;
}

.testi-header{
    text-align:center;
    margin-bottom:60px;
}

.tag{
    color:#e94b35;
    font-weight:700;
    font-size:18px;
}

.testi-header h2{
    font-size:40px;
    font-weight:700;
    line-height:50px;
    margin-top:10px;
}

.testi-container{
    display:flex;
    gap:60px;
    justify-content:center;
}

/* LEFT PHOTO SCROLLER */
.photo-scroll{
    width:320px;
    height:500px;
    background:#1a1a1a;
    border-radius:16px;
    padding:20px;
    overflow:hidden;
    border:2px solid #e94b35;
}

.photo-track{
    display:flex;
    flex-direction:column;
    animation:scrollPhotos 12s linear infinite;
}

.photo-scroll:hover .photo-track{
    animation-play-state:paused;
}

.photo-box{
    width:100%;
    height:160px;
    background:#e94b35;
    border-radius:12px;
    display:flex;
    justify-content:center;
    align-items:center;
    margin:18px 0;
}

.photo-box img{
    width:140px;
    height:140px;
    border-radius:50%;
    object-fit:cover;
}

/* PHOTO ANIMATION */
@keyframes scrollPhotos{
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}

/* RIGHT COMMENT SCROLLER */
.comment-scroll{
    width:60%;
    height:500px;
    overflow:hidden;
    position:relative;
}

.comment-track{
    display:flex;
    flex-direction:column;
    gap:40px;
    animation:scrollComments 18s linear infinite;
}

.comment-scroll:hover .comment-track{
    animation-play-state:paused;
}

@keyframes scrollComments{
    0% { transform:translateY(0); }
    100% { transform:translateY(-50%); }
}

.comment-card{
    background:#f3eeeb;
    padding:35px 40px;
    border-radius:10px;
    position:relative;
}

.stars{
    background:#e94b35;
    padding:8px 18px;
    border-radius:50px;
    color:white;
    font-size:20px;
    margin-bottom:15px;
    display:inline-block;
}

.comment-card p{
    color:#444;
    line-height:1.6;
    margin-bottom:25px;
}

.user{
    display:flex;
    align-items:center;
    gap:12px;
    border-top:1px solid #ddd;
    padding-top:12px;
}

.user img{
    width:50px;
    height:50px;
    border-radius:50%;
    object-fit:cover;
}

.user h4{
    font-size:16px;
    margin:0;
}

.user span{
    font-size:13px;
    color:#777;
}


/* ========== MOBILE VIEW (MAX 768px) ========== */
@media (max-width:768px){

    .testimonial-section{
        padding:40px 6%;
    }

    .testi-header{
        margin-bottom:30px;
    }

    .testi-header h2{
        font-size:28px;
        line-height:36px;
    }

    .tag{
        font-size:16px;
    }

    /* Stack left + right */
    .testi-container{
        flex-direction:column;
        align-items:center;
        gap:35px;
    }

    /* PHOTO SCROLLER */
    .photo-scroll{
        width:100%;
        max-width:380px;
        height:320px;
        padding:16px;
        border-radius:14px;
    }

    .photo-track{
        animation:scrollPhotosMobile 14s linear infinite; /* auto-scroll */
    }

    /* Smooth continuous upward scrolling */
    @keyframes scrollPhotosMobile{
        0% { transform:translateY(0); }
        100% { transform:translateY(-100%); }
    }

    .photo-box{
        height:120px;
        margin:12px 0;
    }

    .photo-box img{
        width:110px;
        height:110px;
    }

    /* COMMENT SCROLLER */
    .comment-scroll{
        width:100%;
        height:380px;
        overflow:hidden;
    }

    .comment-track{
        gap:25px;
        animation:scrollCommentsMobile 20s linear infinite; /* auto-scroll */
    }

    @keyframes scrollCommentsMobile{
        0% { transform:translateY(0); }
        100% { transform:translateY(-100%); }
    }

    .comment-card{
        padding:22px 26px;
        border-radius:10px;
    }

    .stars{
        padding:6px 14px;
        font-size:18px;
    }

    .comment-card p{
        font-size:15px;
        line-height:1.55;
        margin-bottom:18px;
    }

    .user img{
        width:44px;
        height:44px;
    }

    .user h4{
        font-size:15px;
    }

    .user span{
        font-size:12px;
    }
}

/* ========== VERY SMALL DEVICES (MAX 420px) ========== */
@media (max-width:420px){

    .photo-scroll{
        height:280px;
    }

    .photo-box{
        height:100px;
    }

    .photo-box img{
        width:90px;
        height:90px;
    }

    .comment-scroll{
        height:320px;
    }

    .comment-card{
        padding:18px;
    }

    .stars{
        font-size:16px;
        padding:6px 12px;
    }

    .user img{
        width:38px;
        height:38px;
    }
}




/* Section Title */
.section-title{
    text-align:center;
    margin-bottom:40px;
}

.section-title .tag{
    color:#e94b35;
    font-weight:600;
    font-size:18px;
}

.section-title h2{
    font-size:35px;
    font-weight:700;
    margin-top:10px;
}

/* Grid */
.cause-grid{
    display:flex;
    justify-content:space-between;
    gap:25px;
    padding:0 40px;
    flex-wrap:nowrap;   /* 🔥 IMPORTANT — prevents cards from going to next line */
}

.cause-card{
    flex:1;              /* All 4 equal width */
    max-width: 23%;      /* Fits exactly 4 cards in one row */
}

/* Card */
.cause-card{
    width:300px;
    background:#fff;
    border-radius:16px;
    padding-bottom:25px;
    box-shadow:0 4px 18px rgba(0,0,0,0.08);
    position:relative;
    overflow:hidden;
    transition:0.3s ease;
}

.cause-card{
    flex:1;
    max-width:23%;
    background:#fff;
    border-radius:12px;
    padding:20px;
    display:flex;
    flex-direction:column;
    justify-content:space-between; /* 🔥 Push donate button to bottom */
}


.cause-card:hover{
    transform:translateY(-7px);
}

/* Image */
.cause-img{
    width:100%;
    height:210px;
    border-radius:16px;
    object-fit:cover;
}

/* Charity Label */
.cause-label{
    background:#e94b35;
    color:white;
    padding:5px 15px;
    border-radius:50px;
    font-size:12px;
    font-weight:600;
    position:absolute;
    top:185px;
    left:20px;
}

/* Progress Bar */
.progress-box{
    width:85%;
    height:6px;
    background:#e3e3e3;
    border-radius:6px;
    margin:20px auto 10px;
    position:relative;
}

.progress{
    height:100%;
    background:#e94b35;
    border-radius:6px;
}

.progress-box.yellow .progress{
    background:#f8b400;
}

.progress-box.red .progress{
    background:#d83838;
}

/* Raised Amount */
.amounts{
    display:flex;
    justify-content:space-between;
    padding:0 20px;
    font-size:14px;
    color:#444;
}

.amounts span{
    color:#999;
    font-size:12px;
}

/* Title */
.cause-title{
    padding:0 20px;
    margin:15px 0;
    font-size:17px;
    font-weight:700;
    color:#222;
}

/* Button */
.donate-btn{
    display:block;
    margin:0 auto;
    margin-top:10px;
    padding:12px 25px;
    background:#e94b35;
    border:none;
    color:white;
    border-radius:7px;
    font-size:14px;
    cursor:pointer;
    transition:0.3s ease;
}

.donate-btn:hover{
    background:#1d1d1d;
}

/* ========== TABLET VIEW (MAX 992px) ========== */
@media (max-width: 992px){

    .cause-grid{
        flex-wrap:wrap;
        justify-content:center;
        gap:30px;
        padding:0 20px;
    }

    .cause-card{
        max-width:45%;      /* 2 cards per row */
        flex:0 0 45%;
        padding:20px;
    }

    .cause-img{
        height:200px;
    }

    .cause-title{
        font-size:16px;
    }
}

/* ========== MOBILE VIEW (MAX 768px) ========== */
@media (max-width: 768px){

    .section-title h2{
        font-size:26px;
        margin-bottom:10px;
    }

    .section-title .tag{
        font-size:16px;
    }

    .cause-grid{
        flex-direction:column;
        align-items:center;
        gap:25px;
        padding:0 15px;
    }

    .cause-card{
        max-width:100%;     /* full width */
        width:100%;
        padding:18px;
    }

    .cause-img{
        height:180px;
        border-radius:12px;
    }

    .cause-label{
        top:160px;
        left:15px;
        font-size:11px;
        padding:4px 12px;
    }

    .progress-box{
        width:90%;
        height:5px;
        margin:15px auto 8px;
    }

    .amounts{
        padding:0 15px;
        font-size:13px;
    }

    .cause-title{
        padding:0 15px;
        font-size:15px;
        margin:12px 0;
    }

    .donate-btn{
        padding:10px 22px;
        font-size:14px;
        margin-top:12px;
    }
}

/* ========== SMALL MOBILE (MAX 450px) ========== */
@media (max-width: 450px){

    .cause-img{
        height:150px;
    }

    .cause-title{
        font-size:14px;
    }

    .donate-btn{
        padding:10px 20px;
        font-size:13px;
    }
}


.video-hero{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:80px 7%;
    background:#f7f2ef;
    overflow:hidden;
}

/* LEFT SECTION */
.vh-left{
    width:45%;
    position:relative;
    z-index:3;
}

.vh-btn{
    background:#e94b35;
    padding:16px 36px;
    color:#fff;
    border-radius:10px;
    text-decoration:none;
    font-size:20px;
    font-weight:600;
    transition:0.3s ease;
    position:relative;
    z-index:5;   /* button always above */
}

.vh-arc{
    position:absolute;
    top:-120px;
    left:-180px;
    width:520px;
    height:600px;
    opacity:0.1;
    z-index:0 !important; /* behind */
    pointer-events:none;  /* cannot block mouse clicks */
}

.vh-tag{
    font-size:20px;
    color:#e94b35;
    font-weight:600;
    display:flex;
    align-items:center;
    gap:10px;
}

.tag-icon{
    width:28px;
}

.vh-left h2{
    font-size:48px;
    font-weight:700;
    line-height:60px;
    margin:25px 0;
    color:#1d1d1d;
}

.vh-left p{
    font-size:18px;
    color:#444;
    line-height:1.6;
    width:85%;
    margin-bottom:40px;
}

.vh-btn{
    background:#e94b35;
    padding:16px 36px;
    color:#fff;
    border-radius:10px;
    text-decoration:none;
    font-size:20px;
    font-weight:600;
    transition:0.3s ease;
    z-index: 2;
}

.vh-btn:hover{
    background:#1c1c1c;
}

/* RIGHT SECTION */
.vh-right{
    width:48%;
    position:relative;
}

.vh-img{
    width:100%;
    height:530px;
    object-fit:cover;
    border-radius:10px;
    filter:grayscale(100%);
}

.paint-edge{
    position:absolute;
    top:-80px;
    right:400px;
    width:250px;
    opacity:1;
}


.play-btn {
    display:flex;
    justify-content:center;
    align-items:center;
    text-decoration:none;
    color:#fff;
}

/* PLAY BUTTON */
.play-btn{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%, -50%);
    width:110px;
    height:110px;
    border-radius:50%;
    background:#e53935;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:36px;
    cursor:pointer;
    box-shadow:0 8px 18px rgba(0,0,0,0.2);
    transition:0.3s ease;
}

.play-btn:hover{
    transform:translate(-50%, -50%) scale(1.1);
}


/* ============================================
   VIDEO HERO — MOBILE VIEW  (MAX-WIDTH: 768px)
   ============================================ */
@media (max-width: 768px){

    .video-hero{
        flex-direction: column;
        padding: 40px 6%;
        text-align: center;
        gap: 40px;
    }

    /* LEFT SECTION */
    .vh-left{
        width:100%;
        text-align:center;
    }

    .vh-tag{
        justify-content:center;
        font-size:16px;
    }
    .tag-icon{
        width:22px;
    }

    .vh-left h2{
        font-size:30px;
        line-height:40px;
        margin:15px 0;
    }

    .vh-left p{
        font-size:16px;
        width:100%;
        margin-bottom:25px;
    }

    .vh-btn{
        padding:12px 26px;
        font-size:16px;
        border-radius:8px;
    }

    /* ARC Decoration Hidden */
    .vh-arc{
        display:none;
    }

    /* RIGHT SECTION */
    .vh-right{
        width:100%;
    }

    .vh-img{
        width:100%;
        height:300px;
        border-radius:10px;
    }

    .paint-edge{
        display:none;
    }

    /* Play Button Resize */
    .play-btn{
        width:80px;
        height:80px;
        font-size:28px;
        box-shadow:0 5px 14px rgba(0,0,0,0.2);
    }
}


/* ============================================
   VERY SMALL MOBILE (MAX-WIDTH: 420px)
   ============================================ */
@media (max-width: 420px){

    .vh-left h2{
        font-size:26px;
        line-height:34px;
    }

    .vh-left p{
        font-size:15px;
    }

    .vh-img{
        height:240px;
    }

    .play-btn{
        width:70px;
        height:70px;
        font-size:24px;
    }
}


/* MAIN SECTION */
.donate-section{
    width: 100%;
    background: #f5f1ee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px 5%;
    border-radius: 20px;
    overflow: hidden;
    gap: 40px;
}

/* LEFT IMAGE */
.donate-left{
    width: 45%;
    position: relative;
}

.donate-child{
    width: 90%;
    animation: floatMove 4s ease-in-out infinite alternate;
}

/* LEFT-RIGHT FLOAT ANIMATION */
@keyframes floatMove{
    0% { transform: translateX(-10px); }
    100% { transform: translateX(10px); }
}

/* RIGHT SECTION */
.donate-right{
    width: 50%;
}

/* TOP TAG */
.donate-tag{
    font-size: 20px;
    font-weight: 600;
    color: #e94b35;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}

.donate-icon{
    width: 30px;
}

/* TITLE */
.donate-title{
    font-size: 46px;
    font-weight: 700;
    line-height: 55px;
    margin-bottom: 35px;
}

/* INPUT FIELDS */
.input-row{
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.input-row input{
    flex: 1;
    padding: 18px 20px;
    font-size: 18px;
    border: none;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 0 3px rgba(0,0,0,0.1);
}

/* AMOUNT BUTTONS */
.amount-row{
    display: flex;
    gap: 15px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.amount-btn{
    padding: 14px 28px;
    border-radius: 10px;
    border: none;
    background: #ffffff;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    box-shadow: 0 0 3px rgba(0,0,0,0.1);
    transition: 0.3s ease;
}

.amount-btn.active,
.amount-btn:hover{
    background: #e94b35;
    color: #fff;
}

/* MAIN DONATE BUTTON */
.donate-main-btn{
    display: inline-block;
    background: #e94b35;
    padding: 16px 40px;
    color: #fff;
    font-size: 20px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.donate-main-btn:hover{
    background: #1c1c1c;
}



/* Custom amount input - hidden by default */
.custom-input{
    display: none;
    width: 60%;
    padding: 14px 18px;
    font-size: 18px;
    border-radius: 10px;
    border: 2px solid #ccc;
    margin-bottom: 20px;
}

/* Error Message */
.error-text{
    color: #e53935;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    display: none;
}

/* Error highlight */
input.error{
    border-color: #e53935;
}

/* ============================================
   DONATE SECTION – TABLET (MAX-WIDTH: 992px)
   ============================================ */
@media (max-width: 992px){

    .donate-section{
        flex-direction: column;
        gap: 50px;
        padding: 50px 6%;
        text-align: center;
    }

    .donate-left,
    .donate-right{
        width: 100%;
    }

    .donate-child{
        width: 70%;
        margin: 0 auto;
    }

    .donate-title{
        font-size: 38px;
        line-height: 48px;
    }

    .input-row{
        flex-direction: column;
        gap: 15px;
    }

    .input-row input{
        font-size: 16px;
        padding: 14px 16px;
    }

    .amount-btn{
        padding: 12px 22px;
        font-size: 16px;
    }

    .donate-main-btn{
        padding: 14px 32px;
        font-size: 18px;
    }
}


/* ============================================
   DONATE SECTION – MOBILE (MAX-WIDTH: 768px)
   ============================================ */
@media (max-width: 768px){

    .donate-section{
        flex-direction: column;
        padding: 40px 5%;
        gap: 40px;
        border-radius: 15px;
        text-align:center;
    }

    .donate-left{
        width: 100%;
    }

    .donate-child{
        width: 80%;
        margin: auto;
        animation: floatMove 5s ease-in-out infinite alternate; /* Slightly slower */
    }

    .donate-right{
        width: 100%;
        text-align: center;
    }

    .donate-tag{
        font-size: 16px;
        margin-bottom: 12px;
    }
    .donate-icon{
        width: 22px;
    }

    .donate-title{
        font-size: 30px;
        line-height: 38px;
        margin-bottom: 25px;
    }

    .input-row{
        flex-direction: column;
        gap: 12px;
        margin-bottom: 20px;
    }

    .input-row input{
        width: 100%;
        font-size: 16px;
        padding: 14px 16px;
    }

    .custom-input{
        width: 100%;
        font-size: 16px;
        padding: 12px 14px;
    }

    .amount-row{
        gap: 12px;
        justify-content: center;
        margin-bottom: 25px;
    }

    .amount-btn{
        padding: 10px 20px;
        font-size: 15px;
        border-radius: 8px;
    }

    .donate-main-btn{
        font-size: 18px;
        padding: 14px 28px;
        border-radius: 8px;
    }

    .error-text{
        font-size: 14px;
    }
}


/* ============================================
   VERY SMALL MOBILE (MAX-WIDTH: 420px)
   ============================================ */
@media (max-width: 420px){

    .donate-title{
        font-size: 26px;
        line-height: 34px;
    }

    .amount-btn{
        font-size: 14px;
        padding: 10px 18px;
    }

    .donate-main-btn{
        padding: 12px 24px;
        font-size: 16px;
    }

    .donate-child{
        width: 90%;
    }
}


.section-top {
    background: transparent;
    position: relative;
    z-index: 3;
    overflow: hidden;
    padding-top: 40px;
}

.counter-wrapper {
    width: 85%;
    margin: auto;
    background: #ffffff;
    border-radius: 100px;
    padding: 40px 20px;
    display: flex;
    justify-content: space-around;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.counter-box {
    background: #f5efec;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    text-align: center;
    padding-top: 25px;
}

.counter-box i {
    font-size: 38px;
    color: #e64232;    /* perfect match to theme */
}


.counter-box h2 {
    font-weight: 700;
    margin: 10px 0 5px;
}

.counter-box p {
    font-size: 14px;
    font-weight: 600;
    color: #d45c49;
}


.counter-box {
    background: #f5efec;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    text-align: center;
    padding-top: 25px;
    transition: 0.3s ease;
}

.counter-box:hover {
    transform: scale(1.08);
    box-shadow: 0 10px 25px rgba(230, 66, 50, 0.3);
    background: #ffffff;
}

.counter-box i {
    font-size: 38px;
    color: #e64232;
    transition: 0.3s;
}

.counter-box:hover i {
    color: #c53420;  /* darker red on hover */
}

.counter-box p {
    color: #d45c49;
    transition: 0.3s;
}

.counter-box:hover p {
    color: #e64232;   /* bright red */
}

/* ============================================================
   COUNTER SECTION – MOBILE (MAX-WIDTH: 768px)
   ============================================================ */
@media (max-width: 768px){

    .counter-wrapper{
        width: 95%;
        padding: 25px 20px;
        border-radius: 40px;
        flex-direction: column;     /* stack vertically */
        gap: 25px;
        justify-content: center;
        text-align: center;
    }

    .counter-box{
        width: 140px;
        height: 140px;
        padding-top: 18px;
        margin: auto;
    }

    .counter-box i{
        font-size: 32px;
    }

    .counter-box h2{
        font-size: 22px;
    }

    .counter-box p{
        font-size: 12px;
    }
}


/* ============================================================
   VERY SMALL MOBILE (MAX-WIDTH: 420px)
   ============================================================ */
@media (max-width: 420px){

    .counter-wrapper{
        padding: 20px 15px;
        border-radius: 30px;
        gap: 18px;
    }

    .counter-box{
        width: 120px;
        height: 120px;
        padding-top: 15px;
    }

    .counter-box i{
        font-size: 28px;
    }

    .counter-box h2{
        font-size: 18px;
    }

    .counter-box p{
        font-size: 11px;
    }
}

/* ------------------ SECTION 2 (MIDDLE BLANK DARK LAYER) ------------------ */

.section-middle {
    background-color: black;
    height: 230px;
    margin-top: -80px;     /* overlay upward */
    position: relative;
    z-index: 1;
}

/* ------------------ SECTION 3 (BOTTOM CARDS) ------------------ */

.section-bottom {
    position: relative;
    margin-top: -130px;    /* overlay upward on middle layer */
    z-index: 2;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.volunteer-card {
    width: 430px;
    height: 300px;
    background: black;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

/* red curve */
.red-curve {
    width: 100%;
    height: 120px;
    background: #e64232;
    border-radius: 0 0 100% 100%;
    position: absolute;
    top: -25px;
}

.v-content {
    position: absolute;
    bottom: 40px;
    width: 100%;
    text-align: center;
    color: #fff;
}

.v-content h3 {
    font-size: 22px;
    font-weight: 700;
}

.v-content p {
    font-size: 14px;
    margin: 10px 30px 20px;
    opacity: 0.9;
}

.v-content button {
    background: #e64232;
    border: none;
    padding: 10px 25px;
    border-radius: 6px;
    font-size: 15px;
    color: #fff;
    cursor: pointer;
}

/* Hover effect: change red to yellow */
.volunteer-card:hover .red-curve {
    background: #ffc107;      /* yellow */
}

.volunteer-card:hover .v-content button {
    background: #ffc107;      /* yellow */
}

.volunteer-card {
    transition: 0.3s ease;
}

.red-curve,
.v-content button {
    transition: 0.3s ease;    /* smooth transition */
}



/* Section Header */
.blog-header {
    padding-top: 100px;
    text-align: center;
    margin-bottom: 40px;
    overflow: hidden;
}

.blog-header .sub-title {
    color: #e64232;
    font-weight: 600;
    font-size: 16px;
}

.blog-header h2 {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.3;
}

/* Blog Container */
.blog-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

/* Blog Card */
.blog-card {
    width: 330px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: 0.3s;
}

.blog-card:hover {
    transform: translateY(-8px);
}

/* Blog Image */
.blog-image {
    position: relative;
}

.blog-image img {
    width: 100%;
    height: 230px;
    object-fit: cover;
}

/* Category Tag */
.category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #e64232;
    color: #fff;
    padding: 5px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
}

/* Content Area */
.blog-content {
    padding: 20px;
}

.author-box {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-box img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.author-box h4 {
    font-size: 16px;
    margin: 0;
    font-weight: 600;
}

.author-box p {
    font-size: 12px;
    margin-top: 2px;
    color: #888;
}

/* Blog Title */
.blog-title {
    font-size: 18px;
    font-weight: 700;
    margin: 15px 0;
    line-height: 1.4;
}

/* Footer Details */
.blog-footer {
    display: flex;
    justify-content: space-between;
    color: #888;
    font-size: 13px;
    margin-bottom: 15px;
}

.blog-footer i {
    color: #e64232;
}

/* Read More Button */
.read-btn {
    display: inline-block;
    background: #e64232;
    color: #fff;
    padding: 8px 18px;
    border-radius: 6px;
    font-size: 14px;
    text-decoration: none;
    transition: 0.3s;
}

.read-btn:hover {
    background: #c53222;
}

/* ============================================================
   BLOG SECTION — TABLET (MAX-WIDTH: 992px)
   ============================================================ */
@media (max-width: 992px){

    .blog-header h2{
        font-size: 28px;
    }

    .blog-container{
        gap: 25px;
        padding: 0 20px;
    }

    .blog-card{
        width: 300px;
    }

    .blog-image img{
        height: 210px;
    }
}


/* ============================================================
   BLOG SECTION — MOBILE (MAX-WIDTH: 768px)
   ============================================================ */
@media (max-width: 768px){

    .blog-header{
        padding-top: 60px;
        margin-bottom: 30px;
    }

    .blog-header h2{
        font-size: 24px;
        line-height: 1.3;
    }

    .blog-header .sub-title{
        font-size: 14px;
    }

    .blog-container{
        flex-direction: column;
        align-items: center;
        gap: 22px;
        padding: 0 15px;
    }

    .blog-card{
        width: 100%;
        max-width: 380px;
        border-radius: 16px;
    }

    .blog-image img{
        height: 200px;
    }

    .blog-title{
        font-size: 16px;
        margin: 12px 0;
    }

    .blog-content{
        padding: 18px;
    }

    .blog-footer{
        font-size: 12px;
    }

    .read-btn{
        padding: 7px 16px;
        font-size: 13px;
    }
}


/* ============================================================
   BLOG SECTION — SMALL MOBILE (MAX-WIDTH: 450px)
   ============================================================ */
@media (max-width: 450px){

    .blog-header h2{
        font-size: 20px;
    }

    .blog-card{
        max-width: 330px;
    }

    .blog-image img{
        height: 170px;
    }

    .blog-title{
        font-size: 15px;
    }

    .author-box h4{
        font-size: 14px;
    }

    .author-box p{
        font-size: 11px;
    }

    .read-btn{
        font-size: 12px;
        padding: 6px 14px;
    }
}


/* MAIN SECTION */
.difference-section {
    position: relative;
    background: #f4efec;
    padding: 30px 80px;
    margin-top: 30px;
    overflow: hidden;
}

/* HEADING */
.difference-content h2 {
    font-size: 48px;
    font-weight: 800;
    color: #222;
    line-height: 1.25;
    margin-bottom: 40px;
}

/* DOTS BELOW TITLE */
.dots {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-top: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    background: #da8579;
    border-radius: 50%;
}

.circle {
    width: 18px;
    height: 18px;
    border: 2px solid #da8579;
    border-radius: 50%;
}

/* BUTTON RIGHT SIDE */
.difference-btn-wrap {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
}

.vol-btn {
    background: #212228;
    color: white;
    padding: 15px 32px;
    border-radius: 10px;
    font-size: 18px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.vol-btn:hover {
    background: #e64232;
}

/* ============================================================
   DIFFERENCE SECTION — MOBILE (MAX-WIDTH: 768px)
   ============================================================ */
@media (max-width: 768px){

    .difference-section{
        padding: 30px 25px;
        text-align: center;
    }

    /* Heading */
    .difference-content h2{
        font-size: 32px;
        line-height: 1.3;
        margin-bottom: 20px;
    }

    /* Dots */
    .dots{
        justify-content: center;
        gap: 14px;
        margin-bottom: 20px;
    }

    .dot{
        width: 10px;
        height: 10px;
    }

    .circle{
        width: 14px;
        height: 14px;
    }

    /* Move button under heading */
    .difference-btn-wrap{
        position: relative;
        right: 0;
        top: 0;
        transform: none;
        margin-top: 20px;
        text-align: center;
    }

    .vol-btn{
        font-size: 16px;
        padding: 12px 28px;
        border-radius: 8px;
    }
}


/* ============================================================
   SMALL MOBILE (MAX-WIDTH: 450px)
   ============================================================ */
@media (max-width: 450px){

    .difference-content h2{
        font-size: 26px;
        line-height: 1.25;
    }

    .dots{
        gap: 12px;
    }

    .dot{
        width: 8px;
        height: 8px;
    }

    .circle{
        width: 12px;
        height: 12px;
    }

    .vol-btn{
        font-size: 15px;
        padding: 10px 24px;
    }
}



.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;
    }
}


/* ====== ROTATE-IN SCROLL ANIMATION ====== */
.scroll-rotate {
    opacity: 0;
    transform: rotateX(45deg) translateY(40px);
    transition: 1.5s ease;
}

/* When element becomes visible */
.scroll-rotate.show {
    opacity: 1;
    transform: rotateX(0deg) translateY(0);
}
