:root {

    --primary: #D62828;
    --primary-dark: #A61B1B;
    --secondary: #3A86C4;
    --sec-bg: #f9f1de;
    --white: #ffffff;
    --accent: #00A8E8;
    --accent-dark: #0077B6;
    --nav-color: #2f2f2f;
    --gradient-primary: linear-gradient(135deg, #D62828, #F05A5A);
    --gradient-secondary: linear-gradient(135deg, #3A86C4, #6FAFE0);
    --gradient-dark: linear-gradient(135deg, #111111, #2C2C2C);
    --section-padding-: 50px 0px;
    --para-line-height: 26px;
}

/* Professional WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #25D366;
    color: #fff !important;
    box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-btn img {
    width: 35px;
    height: 35px;
    object-fit: contain;
    filter: brightness(1.1);
}

.whatsapp-btn i {
    display: none;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    background-color: #20BA5A;
    box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.3);
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.wp-popup {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 320px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: none;
    z-index: 1001;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
    border: 1px solid #eee;
}

.wp-header {
    background: #25D366;
    color: #fff;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.wp-header h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.wp-header span {
    cursor: pointer;
    font-size: 20px;
    opacity: 0.8;
}

.wp-header span:hover {
    opacity: 1;
}

.wp-body {
    padding: 20px;
    background-color: #f0f2f5;
}

.wp-msg {
    background: #fff;
    padding: 12px 15px;
    border-radius: 0 15px 15px 15px;
    font-size: 14px;
    color: #333;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    position: relative;
}

.wp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #25D366;
    color: #fff !important;
    padding: 12px;
    text-decoration: none !important;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s;
}

.wp-btn:hover {
    background: #20BA5A;
    transform: translateY(-2px);
}




#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ffffff, #f9f1de);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity .6s ease, visibility .6s;
}

/* Scoped to verification modals only - NOT the terms modal */
#trustModal .modal-header,
#memberModal .modal-header {
    background: #1f4e79;
}

#trustName {
    color: #1f4e79;
}

#trustId {
    font-weight: bold;
    font-size: 18px;
}

/* Only add borders to member/trust modal images, NOT terms modal logo */
#trustModal .modal-body img,
#memberModal .modal-body img {
    border: 4px solid #e63946;
}




.loader-wrapper {
    text-align: center;
}



.donation-loader {
    position: relative;
    width: 90px;
    height: 90px;
    margin: auto;
}




.heart {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, #D62828, #F05A5A);

    position: absolute;
    top: 24px;
    left: 24px;

    transform: rotate(45deg);

    animation: heartbeat 1.2s infinite ease-in-out;

    box-shadow:
        0 0 15px rgba(214, 40, 40, .4),
        0 0 30px rgba(214, 40, 40, .2);
}


.heart::before,
.heart::after {
    content: '';
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, #D62828, #F05A5A);
    border-radius: 50%;
    position: absolute;
}

.heart::before {
    top: -21px;
    left: 0;
}

.heart::after {
    left: -21px;
    top: 0;
}





.pulse {
    position: absolute;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 3px solid #3A86C4;

    animation: pulse-ring 2s cubic-bezier(0.4, 0, 0.2, 1) infinite;

    box-shadow: 0 0 15px rgba(58, 134, 196, .4);

    opacity: 0;
}



.pulse2 {
    animation-delay: 1s;
    border-color: #00A8E8;
}




.loader-text {
    margin-top: 22px;
    font-weight: 600;
    font-size: 15px;
    color: #D62828;
    letter-spacing: 1.5px;
    animation: textFade 2s infinite;
}




@keyframes heartbeat {

    0% {
        transform: rotate(45deg) scale(1);
    }

    25% {
        transform: rotate(45deg) scale(1.15);
    }

    50% {
        transform: rotate(45deg) scale(1);
    }

    75% {
        transform: rotate(45deg) scale(1.15);
    }

    100% {
        transform: rotate(45deg) scale(1);
    }

}


/* RIPPLES */

@keyframes pulse-ring {

    0% {
        transform: scale(0.3);
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }

}


/* TEXT FADE */

@keyframes textFade {

    0% {
        opacity: .4;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: .4;
    }

}

.wp-popup {
    position: fixed;
    bottom: 113px;
    right: 60px;
    width: 280px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    display: none;
    z-index: 999;
    overflow: hidden;
}

.wp-header {
    background: #05944f;
    color: #fff;
    padding: 10px;
    display: flex;
    justify-content: space-between;
}

.wp-body {
    padding: 15px;
}

.wp-btn {
    display: block;
    text-align: center;
    background: #05944f;
    color: #fff !important;
    padding: 10px;
    margin-top: 10px;
    text-decoration: none;
    border-radius: 5px;
}

.nav-link.active {
    color: var(--primary) !important;
    font-weight: 600;

}

.top-header {
    background-color: var(--primary-dark) !important;
    padding: 12px 0px;

}

.top-header .top-h-flex {
    display: flex;
    justify-content: space-between;
}

.top-header .top-left {
    display: flex;
    gap: 25px;
}

.top-header .top-right {
    display: flex;
    gap: 25px;
}

.top-header p {
    color: var(--white);
    line-height: var(--para-line-height);
}

.top-right a {
    color: var(--white);
    font-weight: 600;
    transition: all 0.5s ease-in-out;
}

.top-right a:hover {
    color: var(--modal-card);
}

.top-header i {
    color: var(--white);
}

/* main-header */
header {
    background-color: var(--white);

    position: sticky !important;
    top: 0;
    z-index: 99999;
}

header img {
    width: 160px;
    object-fit: cover;
}


.navbar-expand-lg .navbar-nav .nav-link {
    position: relative;
    color: var(--nav-color);
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s ease;
    white-space: nowrap;
    padding-right: 8px;
}

.dropdown-menu {
    border: none !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);

}

/*  */

.dropdown-menu {
    border: none !important;
    outline: none !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    margin-top: 5px !important;
}


.navbar .nav-link,
.navbar .nav-link:focus,
.navbar .nav-link:active,
.navbar .nav-link:hover {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
}


.navbar .dropdown-toggle:focus,
.navbar .dropdown-toggle:active {
    outline: none !important;
    box-shadow: none !important;
}


.btn:focus,
.btn:active {
    outline: none !important;
    box-shadow: none !important;
}

*:focus {
    outline: none !important;
}

/*  */
.navbar-expand-lg .navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0%;
    height: 3px;
    background: var(--primary);
    transition: width 0.3s ease;
}



.navbar-expand-lg .navbar-nav .nav-link:hover {
    color: var(--primary);
}

.navbar-expand-lg .navbar-nav .nav-link:hover::after {
    width: 100%;
}

header .navbar-toggler {
    background-color: var(--primary-dark);
}

header .donate a {
    background-color: var(--primary-dark);
    color: var(--white);
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 30px;
    display: inline-block;
    transition: all 0.3s ease;
    white-space: nowrap;
}

header .donate a:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 10px rgba(214, 40, 40, 0.4);
}

header .container {
    padding: 0 6px;
}

/* ================= RESPONSIVE HEADER ================= */
header .responsive-header {
    display: none;
    background: var(--white);
    padding: 12px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

/* FLEX */
header .responsive-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* MENU ICON */
header .menu-toggole i {
    color: var(--nav-color);
    font-size: 24px;
    transition: 0.3s;
}

header .menu-toggole:hover i {
    color: var(--primary);
}

/* OFFCANVAS */
.offcanvas {
    width: 280px;
    background: #fff;
}

/* CLOSE BUTTON - offcanvas only */
.offcanvas .btn-close {
    border: none;
    background: none;
}

.offcanvas .btn-close i {
    font-size: 26px !important;
    color: #222 !important;
}

/* ================= MENU LIST ================= */
.responsive-menu-list {
    padding: 0;
    margin: 0;
    list-style: none;
}

/* LIST ITEM */
.responsive-menu-list li {
    margin-bottom: 5px;
}

/* NAV LINK */
.responsive-menu-list .nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 12px;
    color: var(--nav-color);
    font-weight: 600;
    font-size: 16px;
    border-radius: 10px;
    transition: 0.3s;
    cursor: pointer;
}

.responsive-menu-list .nav-link:hover {
    color: var(--primary);
}

.offcanvas .nav-link {
    color: var(--nav-color) !important;
    font-weight: 600;
    line-height: 30px;
}

.offcanvas .nav-link:hover {
    color: var(--primary) !important;
}

.offcanvas .nav-link.active {
    color: var(--primary) !important;
}

.offcanvas .dropdown-menu i {
    font-size: 14px;
}

.offcanvas .dropdown-menu li {
    line-height: 28px;

}

.offcanvas .dropdown-menu {
    width: 100%;
    border: none;

}

.offcanvas .donate {
    width: 100%;
    display: block;
    text-align: left !important;
}

/* BUTTON STYLE */
.offcanvas .donate a {
    display: inline-block;
    background: var(--gradient-primary);
    color: #fff !important;
    padding: 10px 22px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
}

/* ICON */
.responsive-menu-list .nav-link i {
    color: var(--primary);
    font-size: 16px;
    min-width: 20px;
}

/* HOVER EFFECT */
.responsive-menu-list .nav-link:hover {
    background: #f8f9fa;
    color: var(--primary);
    transform: translateX(5px);
}

/* ACTIVE LINK */
.responsive-menu-list .nav-link.active {
    background: rgba(214, 40, 40, 0.1);
    color: var(--primary);
}

/* ================= SUBMENU ================= */
.sub-menu {
    list-style: none;
    padding-left: 30px;
    margin-top: 5px;
    display: none;
}

/* SUBMENU ITEM */
.sub-menu li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    font-size: 14px;
    color: #555;
    text-decoration: none;
    transition: 0.3s;
}

.sub-menu li a i {
    color: var(--secondary);
    font-size: 13px;
}

/* SUBMENU HOVER */
.sub-menu li a:hover {
    color: var(--primary);
}

/* ARROW ICON */
.arrow {
    margin-left: auto;
    font-size: 12px;
    transition: 0.3s;
}

/* ROTATE ON ACTIVE */
.submenu-active .arrow {
    transform: rotate(180deg);
}

/* ================= DONATE BUTTON ================= */
.responsive-header .donate {
    margin-top: 15px;
    text-align: center;
}

.responsive-header .donate a {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 30px;
    background: var(--gradient-primary);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

/* HOVER */
.responsive-header .donate a:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(214, 40, 40, 0.3);
}

/* ================= RESPONSIVE BREAKPOINT ================= */
@media (max-width: 991px) {
    header .main-decktop-header {
        display: none;
    }

    header .responsive-header {
        display: block;
    }
}


/* Offcanvas close button - do NOT apply globally to avoid breaking modal X */
.offcanvas .btn-close {
    background-image: none;
    margin-right: 15px !important;
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    font-size: 22px;
    opacity: 1;
}

header .navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler:focus-visible {
    outline: none !important;
    box-shadow: none !important;
}

.menu-toggole {
    border: none !important;
    outline: none;
    box-shadow: none !important;
    background: transparent;
    font-size: 22px;
    color: var(--primary);
}


/* hero-banner */
.carousel-item {

    position: relative;
    height: auto;




}

.hero-banner img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.carousel-item .carosel-content {
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;

}

.hero-banner .row {
    margin-top: 5%;
    align-items: center;
    width: 100%;
}

.hero-banner h1 {
    color: var(--secondary);
    font-size: 58px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-banner span {
    color: var(--primary-dark);

}

.hero-banner p {
    padding: 15px 0px;
    line-height: var(--para-line-height);

}

.hero-banner .donate a {
    background-color: var(--primary-dark);
    color: var(--white);
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 30px;
    display: inline-block;
    transition: all 0.3s ease;
}

.hero-banner .donate a:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(214, 40, 40, 0.4);
}

.hero-banner .donate {
    padding: 12px 0px;
}

.hero-banner .b-two {
    display: none;
}

.hero-banner .image-box {
    position: relative;
    border-radius: 20px;
    z-index: 1;
}



.hero-banner .image-box .image-bottom img {
    width: 250px;
    height: 250px;
    object-fit: cover;
}

.hero-banner .one img {
    width: 100%;
    position: relative;
    z-index: 2;
    border-radius: 20px;
    filter: grayscale(0%);
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
    background-image: none;
}

.hero-banner .image-bottom img {

    width: 100%;
    position: relative;
    z-index: 2;
    border-radius: 20px;
    filter: grayscale(100%);
}

.carousel-fade .carousel-item {
    height: auto;
}

/* about */
.about {
    background-color: var(--white);
    padding: var(--section-padding-) !important;

}

.about-main {

    height: 500px;

}

.about-main {
    border-radius: 15px;
    overflow: hidden;
}

.about-right video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about .learnmore a {
    color: var(--accent-dark);
    font-weight: 600;
}

.learnmore i {
    color: var(--accent-dark) !important;
    font-weight: 600;
}

.about .about-btn {
    display: flex;
    gap: 23px;
    align-items: center;
}

.about img {
    width: 100%;
}

.about .about-main img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 25px;
}

.about h2 {
    color: var(--accent-dark);
    font-size: 50px;
    position: relative;
}

.about h2::after {
    position: absolute;
    content: "";
    background-color: var(--nav-color);
    width: 160px;
    height: 4px;
    left: 0;
    top: 60px;
}

.about h4 {
    color: var(--primary-dark);
    padding: 15px 0px;
}

.about p {
    color: var(--nav-color);
    line-height: 25px;
    line-height: var(--para-line-height);
}

.about .point {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 15px 0px;
}

.point span {
    color: #A61B1B;
    font-size: 20px;
    font-weight: 600;
}

.about i {
    color: var(--nav-color);
}

.about .donate a {
    background-color: var(--primary-dark);
    color: var(--white);
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 30px;
    display: inline-block;
    transition: all 0.3s ease;

}

.about .donate a:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(214, 40, 40, 0.4);
}

.about .donate {
    padding: 15px 0px;
}

.about .about-main {

    animation: floatMove 3s ease-in-out infinite;
    z-index: 5;

}

@keyframes floatMove {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}





/* image carosual */

/* mission */
.mission-vision {
    padding: 100px 0;
    background: linear-gradient(135deg, #fff5f5, #ffe9e9);
    position: relative;
    overflow: hidden;
}

/* ABSTRACT BACKGROUND */
.mission-vision::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(255, 0, 0, 0.06);
    border-radius: 50%;
    top: -120px;
    left: -120px;
}

.mission-vision::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 0, 0, 0.05);
    border-radius: 50%;
    bottom: -120px;
    right: -120px;
}


.mv-image {
    position: relative;
}

.mv-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    animation: floatMove 4s ease-in-out infinite;
}


.mv-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 15px 20px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.mv-overlay h5 {
    margin: 0;
    font-size: 18px;
}


.mv-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: 0.4s ease;
    position: relative;
    overflow: hidden;
}

.mv-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(45deg, #ff4d4d, #ff0000);
}

.mv-content {
    position: relative;
    z-index: 30;
}

.mv-content i {
    color: var(--white);
}

.mv-content h4 {
    color: var(--white);
    padding: 12px 0px;
}

.mv-list li {
    line-height: 28px;
    color: var(--white);
}

.mv-list {
    padding: 0;
    margin: 0;
}

.mv-icon i {
    font-size: 40px;
}

.mv-content p {
    color: var(--white);
    line-height: var(--para-line-height);
}

/* progrome */
.program-section {
    padding: var(--section-padding-);
    background: #f9f9f9;
}

#health {
    text-align: right;
}

#education {
    text-align: left;
}

#food {
    text-align: right !important;
}

#elderly {
    text-align: left !important;
}

.program-section .owl-nav {
    display: flex;
    justify-content: center;
    gap: 25px;
    padding-top: 25px;
}

.owl-nav i {
    color: var(--primary-dark);
}

/* title */
.section-title h2 {
    font-size: 36px;
    font-weight: 700;
}

.section-title p {
    color: #777;
    margin-bottom: 40px;
    line-height: var(--para-line-height);
}

/* card */
.program-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    transition: 0.4s;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

/* image */
.program-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

/* content */
.program-content {
    padding: 20px;
    text-align: center;
}

.program-content h4 {
    font-weight: 600;
    margin-bottom: 10px;
}

.program-content p {
    font-size: 14px;
    line-height: var(--para-line-height);
    color: #666;
}

/* hover effect */
.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* buttons */
.program-btns {
    margin-top: 15px;
}

.program-btns .btn {
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 14px;
    margin: 5px;
    transition: 0.3s;
}

/* donate */
.donate-btn {
    background-color: var(--primary-dark);
    color: var(--white);
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 30px;
    display: inline-block;
    transition: all 0.3s ease;

}

.donate-btn:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(214, 40, 40, 0.4);
}




.learn-btn {
    border: 2px solid var(--primary);
    color: var(--primary);
}

.learn-btn:hover {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 8px 20px rgba(214, 40, 40, 0.4);
}


.core-values {
    padding: var(--section-padding-);
    background: linear-gradient(to right, #eadddd, #fff);
}


.section-title h2 {
    font-size: 36px;
    font-weight: 700;
}

.section-title p {
    color: #777;
    line-height: var(--para-line-height);
    margin-bottom: 40px;
}

.value-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    transition: 0.4s;
    position: relative;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.value-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    line-height: 70px;
    font-size: 26px;
    transition: 0.4s;
}


.value-card h4 {
    font-weight: 600;
    margin-bottom: 10px;
}

.value-card p {
    font-size: 14px;
    line-height: var(--para-line-height);
    color: #666;
}

.value-link {
    display: inline-block;
    margin-top: 10px;
    color: var(--primary);
    font-weight: 500;
    text-decoration: none;
    transition: 0.3s;
}


.value-link::after {
    content: "";
    display: block;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: 0.3s;
}

.value-link:hover::after {
    width: 100%;
}


.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}


.value-card:hover .value-icon {
    background: var(--primary-dark);
    transform: rotate(360deg);
}


.value-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: 0.6s;
}

.value-card:hover::before {
    left: 100%;
}

/* cta */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    position: relative;
    overflow: hidden;
}


.cta-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    color: #fff;
    position: relative;
    z-index: 2;
}


.cta-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.cta-content p {
    font-size: 16px;
    line-height: var(--para-line-height);
    opacity: 0.9;
}


.cta-btns a {
    display: inline-block;
    margin: 5px;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s;
}

.cta-donate {
    background: #fff;
    color: var(--primary);
}

.cta-donate:hover {
    background: #f1f1f1;
    transform: translateY(-3px);
}


.cta-volunteer {
    border: 2px solid #fff;
    color: #fff;
}

.cta-volunteer:hover {
    background: #fff;
    color: var(--primary);
}

.cta-section::before,
.cta-section::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: 1;
}

.cta-section::before {
    top: -100px;
    left: -100px;
}

.cta-section::after {
    bottom: -100px;
    right: -100px;
}


.cta-btns a:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}


@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.cta-donate {
    animation: pulse 2s infinite;
}


/* donate page */



/* ================= HERO ================= */
.donate-hero {
    background: var(--gradient-primary);
    color: #fff;
    padding: 100px 0;
    text-align: center;
}

.donate-hero h1 {
    font-size: 42px;
    font-weight: 700;
}

.donate-hero p {
    line-height: var(--para-line-height);
    max-width: 700px;
    margin: auto;
    opacity: 0.9;
}

/* ================= CARD ================= */
.donate-card {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

.donate-card:hover {
    transform: translateY(-5px);
}

/* ================= MODERN GLASS EFFECT ================= */
.modern-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
}

/* ================= FORM ================= */
.form-label {
    font-weight: 600;
    margin-bottom: 5px;
}

.form-control {
    border-radius: 10px !important;
    padding: 12px !important;
    border: 1px solid #ddd !important;
    transition: 0.3s;
}

.form-control:focus {
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 3px rgba(214, 40, 40, 0.1) !important;
}

/* ================= AMOUNT BUTTON ================= */
.amount-btn {
    border: none;
    padding: 10px 18px;
    border-radius: 30px;
    background: #f1f1f1;
    color: #333;
    font-weight: 600;
    transition: 0.3s;
    cursor: pointer;
}

.amount-btn:hover {
    background: #ffe5e5;
}

.amount-btn.active {
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: 0 5px 15px rgba(214, 40, 40, 0.3);
}

/* ================= INPUT ================= */
.custom-amount {
    border-radius: 10px;
    padding: 12px;
    border: 1px solid #ddd;
}

/* ================= DONATE BUTTON ================= */
.donate-btn {
    background: var(--gradient-primary);
    border: none;
    padding: 14px;
    border-radius: 30px;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

.donate-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transition: 0.5s;
}

.donate-btn:hover::before {
    left: 100%;
}

.donate-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(214, 40, 40, 0.3);
}

/* ================= TRUST TEXT ================= */
.trust-line {
    font-size: 13px;
    text-align: center;
    margin-bottom: 15px;
    color: #666;
}

/* ================= PROGRESS ================= */
.progress {
    height: 12px;
    border-radius: 10px;
    overflow: hidden;
    background: #eee;
}

.progress-bar {
    width: 0%;
    height: 100%;
    background: var(--gradient-secondary);
    animation: progressAnim 2s ease;
}

@keyframes progressAnim {
    from {
        width: 0;
    }
}

/* ================= IMPACT SECTION ================= */
.impact-section {
    background: var(--sec-bg);
}

.impact-card {
    text-align: center;
    padding: 25px;
    background: #fff;
    border-radius: 20px;
    transition: 0.3s;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.impact-card:hover {
    transform: translateY(-8px);
}

.impact-card h5 {
    color: var(--primary);
    font-weight: 700;
}

.contact-map-iframe {
    border: 0;
}

.wp-header-logo {
    width: 25px;
    margin-right: 8px;
    vertical-align: middle;
}

.wp-btn-icon {
    margin-right: 8px;
    vertical-align: middle;
}

.receipt-right-align {
    text-align: right;
}

.goal-points {
    list-style: none;
    padding: 0;
    margin: 15px 0 20px;
}

.goal-points li {
    font-size: 14px;
    margin-bottom: 10px;
    color: #444;
    display: flex;
    align-items: center;
    gap: 8px;
}

.goal-points i {
    color: #28a745;
    font-size: 16px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {

    .donate-hero {
        padding: 70px 20px;
    }

    .donate-hero h1 {
        font-size: 30px;
    }

    .donate-card {
        padding: 20px;
    }

}

/* memorial hornor */

.memorial-hero {
    background: var(--primary);
    color: #fff;
    padding: 100px 20px;
    text-align: center;
}

.memorial-hero h1 {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 10px;
}

.memorial-hero p {
    opacity: 0.8;
    font-size: 16px;
}


.memorial-list {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa, #eef2f7);
}

.memorial-card {
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: 0.4s;
    height: 100%;
    position: relative;


}


.memorial-card:hover {
    transform: translateY(-8px);
}


.memorial-img {
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 15px;
}


.memorial-img img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: 0.4s;
}


.memorial-card:hover .memorial-img img {
    transform: scale(1.08);
}


.memorial-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #222;
}


.memorial-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* ================= OVERLAY EFFECT ================= */
.memorial-card::before {
    content: "";
    position: absolute;
    inset: 0;

    opacity: 0;
    transition: 0.3s;
}

.memorial-card:hover::before {
    opacity: 1;
}

/* ================= DECORATIVE LINE ================= */
.memorial-card h3::after {
    content: "";
    display: block;
    width: 40px;
    height: 3px;
    background: #D62828;
    margin: 8px auto 0;
    border-radius: 10px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {

    .memorial-hero {
        padding: 70px 20px;
    }

    .memorial-hero h1 {
        font-size: 30px;
    }

    .memorial-card img {
        height: 220px;
    }

}

/* yt section */
.yt-grid {
    padding: 60px 0;
    background: #fafafa;
}

.video-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

.video-card:hover {
    transform: translateY(-5px);
}

.video-card iframe {
    width: 100%;
    height: 220px;
    border: none;
}

.video-card h5 {
    padding: 15px;
    font-weight: 600;
}

.yt-btn {
    text-align: center;
    padding: 20px 0px;
}

.yt-btn a {
    background-color: var(--primary-dark);
    color: var(--white);
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 30px;
    display: inline-block;
    transition: all 0.3s ease;
}

.yt-btn a:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(214, 40, 40, 0.4);
}

/* program */
/* ===============================
   PROGRAM HERO
=================================*/
.program-hero {

    background: var(--primary);
    padding: 120px 0;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;


}

.program-hero::before {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 10%, transparent 60%);
    animation: rotateBg 15s linear infinite;
}

@keyframes rotateBg {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.program-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
}

.program-hero p {
    font-size: 18px;
    opacity: 0.9;
}

/* ===============================
   PROGRAM SECTION
=================================*/
.program-page {
    padding: var(--section-padding-);
    background: var(--sec-bg);
}

.program-box {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.07);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}



.program-box::after {
    content: "";
    position: absolute;
    width: 5px;
    height: 100%;
    left: 0;
    top: 0;
    background: var(--primary);
}

.program-box-one {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.07);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.program-box-one::after {
    content: "";
    position: absolute;
    width: 5px;
    height: 100%;
    right: 0;
    top: 0;
    background: var(--primary);
}

.program-box.reverse {
    flex-direction: row-reverse;
}


.program-img {
    overflow: hidden;
    border-radius: 15px;
}

.program-img img {
    width: 100%;
    transition: transform 0.6s ease;
    border-radius: 15px;
}

.program-box:hover .program-img img {
    transform: scale(1.1);
}

.program-box-one:hover .program-img img {
    transform: scale(1.1);
}


.program-content h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary);
}

.program-content p {
    line-height: var(--para-line-height);
    margin-bottom: 20px;
    color: #555;
}

.program-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.program-content ul li {
    margin-bottom: 10px;
    font-weight: 500;
    color: #444;
    transition: 0.3s;
}

.program-content ul li i {
    color: var(--accent);
    margin-right: 8px;
}

.program-content ul li:hover {
    padding-left: 10px;
    color: var(--primary-dark);
}


.donate-btn {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s ease;
    display: inline-block;
}

.donate-btn:hover {
    background: var(--gradient-secondary);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}


.program-box {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1s ease forwards;
}

.program-box:nth-child(1) {
    animation-delay: 0.2s;
}

.program-box:nth-child(2) {
    animation-delay: 0.4s;
}

.program-box:nth-child(3) {
    animation-delay: 0.6s;
}

.program-box:nth-child(4) {
    animation-delay: 0.8s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}








.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 38px;
    font-weight: 700;
    color: #D62828;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: "";
    width: 60px;
    height: 3px;
    background: #D62828;
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
}

.section-title p {
    font-size: 18px;
    color: #555;
    padding: 20px 0px;
}







/* ========== ANIMATIONS ========== */
@keyframes float {
    from {
        transform: translateY(0px);
    }

    to {
        transform: translateY(40px);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* about page */
.about-hero {

    background: var(--primary);
    padding: 120px 0;
    color: #fff;
}

.about-hero h1 {
    font-size: 48px;
    font-weight: 700;
}

.about-hero p {
    font-size: 18px;
}

/* counter */


.counter-section {
    background: var(--sec-bg);
    padding: 60px 0;
}

.counter-box h2 {
    font-size: 40px;
    color: var(--primary);
    font-weight: 700;
}

.counter-box p {
    font-weight: 500;
}

/* contact page */
.contact-hero {

    background: var(--primary);
    color: #fff;
    padding: 120px 0;
    text-align: center;
}

.nfo-box a {
    color: var(--primary) !important;
}

.contact-hero h1 {
    font-size: 40px;
    font-weight: 700;
}

/* CONTACT FORM */
.contact-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* INPUT */
.form-control {
    border-radius: 10px;
    padding: 12px;
}

/* BUTTON */
.contact-btn {
    background: var(--gradient-primary);
    border: none;
    padding: 12px;
    border-radius: 30px;
    color: #fff;
    font-weight: bold;
    transition: 0.3s;
}

.contact-btn:hover {
    transform: translateY(-2px);
}

/* INFO CARDS */
.info-box {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.info-box:hover {
    transform: translateY(-5px);
}

.info-box i {
    font-size: 30px;
    color: var(--primary);
    margin-bottom: 10px;
}

.info-box a {
    color: var(--primary);
}

/* MAP */
.map iframe {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 15px;
}

/* trast man */
/* fromm root */
:root {
    --blue-start: #3A3FB0;
    --blue-mid: #2F49B6;
    --blue-end: #1E6BB8;
    --gradient-blue: linear-gradient(90deg, #3A3FB0, #1E6BB8);
    --accent-gold: #F4A640;
    --accent-gold-dark: #E28B1C;
    --border-green: #2FA36A;
    --border-green-light: #58C49A;
    --text-dark: #333333;
    --text-light-dark: #555555;
    --bg-light: #F5F5F5;
    --white: #ffffff;
    --gradient-dark: linear-gradient(90deg, #1A1A1A, #3C3C3C);
}

.trust-banner {

    background: var(--primary);
    padding: 120px 0;
    color: var(--white);
}

.trust-banner h1 {
    font-size: 48px;
    font-weight: 700;
}

.trust-banner p {
    font-size: 18px;
}

.trust-about img {
    width: 100%;
    height: 450px;
    object-fit: contain;
    border-radius: 50%;
}
/* .id-card{
  padding-bottom: 50px;
}
.id-box img {
    width: 100%;
}

.id-heading h2 {
    text-align: center !important;
    padding-bottom: 20px;
} */

 .id-card{
  padding-bottom: 50px;
}
.id-box {
    background: #fff;
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.id-box:hover {
    transform: translateY(-5px);
}

.id-box img {
    width: 100%;
    border-radius: 10px;
    margin-top: 10px;
}

.id-title {
    font-weight: 600;
    color: #d62828;
}
.trust-about h2 {
    color: var(--primary);
    margin-bottom: 15px;
}

.trust-about p {
    line-height: var(--para-line-height);
}




.trust-role {
    background: var(--sec-bg);
}

.role-card {
    background: var(--white);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    height: 100%;
    transition: 0.3s;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.role-card:hover {
    transform: translateY(-10px);
}

.role-card h4 {
    color: var(--primary);
    margin-bottom: 10px;
}



.trust-importance {
    background: var(--gradient-secondary);
    color: var(--white);
}

.trust-importance h2 {
    margin-bottom: 15px;
}

.trust-from form {
    width: 100%;
}

.trust-from input {
    width: 100%;
    padding: 12px;
    box-shadow: none !important;
    border: none !important;
    outline: none !important;
    border: var(--border-green) 1px solid !important;
    background-color: var(--bg-light);
}


.trust-from textarea {
    width: 100%;
    padding: 12px;
    box-shadow: none !important;
    border: none !important;
    outline: none !important;
    border: var(--border-green) 1px solid !important;
    background-color: var(--bg-light);
}



.trust-from form label {
    color: var(--nav-color) !important;
    font-size: 17px !important;
    font-weight: 600 !important;
    white-space: nowrap;
}

.from-content .row {
    align-items: center !important;
}

.trust-from {
    padding: var(--section-padding-);
    display: flex;
    align-items: center;
}


.trust-from-header {

    display: flex;
    justify-content: space-between;
    align-items: end;
}

.trust-from button {
    background-color: var(--border-green);
    color: var(--white);
    width: 100%;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 30px;
    display: inline-block;
    transition: all 0.3s ease;
    white-space: nowrap;
    border: none;
    outline: none;

}

.trust-from-header img {
    width: 96%;
}

.trust-from .top-header-from {
    background-color: var(--border-green);
    padding: 10px 0px;
}

.header-bottom {
    background-color: var(--blue-start);
    padding-right: 12px;
    display: flex;
    gap: 30px;
    align-items: center;
    margin-top: 10px;
}

.header-bottom h4 {
    text-transform: capitalize;
    color: var(--white);
    white-space: nowrap;
}

.left-corner {
    background-color: var(--accent-gold-dark);
    width: 30px;
    height: 50px;
    text-align: left;
}

.footer-from img {
    width: 100% !important;
}

.status-section {
    margin: 20px 0;
}

.custom-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    cursor: pointer;
    position: relative;
}


.custom-checkbox input {
    position: absolute;
    opacity: 0;
}


.checkmark {
    width: 25px;
    height: 25px;
    border: 2px solid var(--border-green);
    display: inline-block;
    border-radius: 3px;
    position: relative;
}


.custom-checkbox input:checked+.checkmark {
    background-color: var(--border-green);
}

.checkmark::after {
    content: "";
    position: absolute;
    display: none;
}

.custom-checkbox input:checked+.checkmark::after {
    display: block;
}

.custom-checkbox .checkmark::after {
    left: 7px;
    top: 5px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* CTA */
.trust-cta {
    background: var(--gradient-dark);
    color: var(--white);
    padding: 60px 0;
}

.trust-cta .btn {
    background: var(--primary);
    border: none;
    padding: 12px 30px;
}

.trust-cta .btn:focus {
    box-shadow: none;
}

.from-header {
    display: flex;
    justify-content: center;
}

.trust-cta .btn:hover {
    background: var(--primary-dark);
}

/* award */
.hero-award .carousel-item {
    height: auto;
}

.hero h1 {
    font-size: 50px;
    font-weight: 700;
}


.social-fixed {
    position: fixed;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: 9999;
}

.list-unstyled li {
    line-height: 28px !important;
}


.social-fixed a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    margin: 5px 0;
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    border-radius: 0 8px 8px 0;
    transition: 0.3s;
}


.social-fixed .facebook {
    background: var(--accent);
}

.social-fixed .youtube {
    background: var(--primary);
}


.social-fixed a:hover {
    width: 55px;
    transform: translateX(5px);
}


.social-fixed a i {
    transition: 0.3s;
}

.social-fixed a:hover i {
    transform: scale(1.2);
}



.category-card p {
    font-size: 15px;
    line-height: var(--para-line-height);
    padding: 12px 0px !important;
}

:root {

    --award-primary: #C89B3C;
    --award-primary-dark: #9A742B;

    --award-dark: #4A3A1F;
    --award-dark-soft: #6B5632;

    --award-gradient-primary: linear-gradient(135deg, #C89B3C, #E5C26B);
}

.award-from input {
    width: 100%;
    padding: 12px;
    box-shadow: none !important;
    border: none !important;
    outline: none !important;
    border: var(--award-dark) 1px solid !important;
    background-color: var(--bg-light);

}

.award-from form {
    /* background-color: #6b563252; */
    padding: 20px;
}


.award-from img {
    width: 100%;
}


.award-from textarea {
    width: 100%;
    padding: 12px;
    box-shadow: none !important;
    border: none !important;
    outline: none !important;
    border: var(--award-dark) 1px solid !important;
    background-color: var(--bg-light);
}

.award-from form label {
    color: var(--nav-color) !important;
    font-size: 17px !important;
    font-weight: 600 !important;
    white-space: nowrap;
    display: flex;
    align-items: center;
    min-height: 44px;
}


.custom-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    cursor: pointer;
    position: relative;
}


.custom-checkbox input {
    position: absolute;
    opacity: 0;
}


.award-from .checkmark {
    width: 25px;
    height: 25px;
    border: 2px solid var(--award-dark);
    display: inline-block;
    border-radius: 3px;
    position: relative;
}


.award-from .custom-checkbox input:checked+.checkmark {
    background-color: var(--award-dark);
}

.award-from .checkmark::after {
    content: "";
    position: absolute;
    display: none;
}

.award-from .award-from.custom-checkbox input:checked+.checkmark::after {
    display: block;
}

.award-from .custom-checkbox .checkmark::after {
    left: 7px;
    top: 5px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

:root {
    --modal-bg: rgba(0, 0, 0, 0.6);
    --modal-card: #ffffff;
    --popup-primary: #C89B3C;
    --heading-color: #4A3A1F;
    --text-color: #333;
}

.award-agree-card {
    background: #fff;
    border-color: #dee2e6 !important;
    transition: all 0.3s ease;
    width: 100% !important;
}

.award-agree-card:hover {
    border-color: var(--primary) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
}

.custom-check-lg .form-check-input {
    width: 24px;
    height: 24px;
    cursor: pointer;
    border: 2px solid #ced4da;
}

.custom-check-lg .form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

.cursor-pointer {
    cursor: pointer;
}

.color-award-dark {
    color: var(--award-dark);
}

.terms-section h6 {
    margin-top: 15px;
    color: var(--primary-dark);
}

#termsModal .modal-body {
    scrollbar-width: thin;
    scrollbar-color: var(--primary) #f1f1f1;
}

#termsModal .modal-body::-webkit-scrollbar {
    width: 6px;
}

#termsModal .modal-body::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

.submit-button button {
    background-color: var(--primary-dark);
    color: var(--white);
    width: 100%;
    font-weight: 600;
    padding: 15px 30px;
    border-radius: 30px;
    display: inline-block;
    transition: all 0.3s ease;
    white-space: nowrap;
    border: none;
    outline: none;
    box-shadow: 0 4px 15px rgba(166, 27, 27, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
}

.submit-button button:hover:not(:disabled) {
    background-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(214, 40, 40, 0.4);
}

.submit-button button:active:not(:disabled) {
    transform: translateY(0);
}

.submit-button button:disabled {
    background: #e0e0e0 !important;
    color: #a0a0a0 !important;
    cursor: not-allowed;
    box-shadow: none !important;
    border: 1px solid #d0d0d0;
}

/* Extra Responsive Adjustments for Award Page */
@media (max-width: 767px) {
    .award-from-details {
        padding: 20px 0 !important;
    }

    .award-from-details>.container {
        padding-left: 8px;
        padding-right: 8px;
    }

    .award-from form {
        padding: 8px 0;
    }

    .from-content .row {
        margin-left: 0;
        margin-right: 0;
    }

    .from-content .row>[class*="col-"] {
        padding-left: 6px;
        padding-right: 6px;
    }

    .award-from form label {
        font-size: 14px !important;
        white-space: normal !important;
        min-height: auto;
        padding-bottom: 2px;
    }

    .award-from input,
    .award-from textarea {
        padding: 10px;
        font-size: 14px;
    }

    /* Agree card - full width on mobile */
    .row.from-bottom>[class*="col-"] {
        padding-left: 0;
        padding-right: 0;
    }

    .award-agree-card {
        padding: 12px !important;
        margin-left: 0;
        margin-right: 0;
        border-radius: 8px !important;
    }

    .agree-content {
        width: 100%;
    }

    .award-agree-card label {
        font-size: 0.9rem;
        line-height: 1.4;
        min-height: auto;
    }

    .award-agree-card p {
        font-size: 0.82rem !important;
        line-height: 1.55 !important;
        margin-bottom: 8px !important;
        word-break: break-word;
    }

    .award-agree-card a {
        font-size: 0.85rem;
    }

    .custom-check-lg .form-check-input {
        width: 22px;
        height: 22px;
        min-width: 22px;
    }

    .submit-button button {
        padding: 12px 20px;
        font-size: 0.85rem;
        letter-spacing: 0.5px;
    }
}

/* Extra small devices (320px–400px) */
@media (max-width: 400px) {
    .award-from-details>.container {
        padding-left: 4px;
        padding-right: 4px;
    }

    .award-from form {
        padding: 4px 0;
    }

    .award-agree-card {
        padding: 10px !important;
        border-radius: 6px !important;
    }

    .award-agree-card p {
        font-size: 0.78rem !important;
        line-height: 1.5 !important;
    }

    .award-agree-card label {
        font-size: 0.85rem;
    }

    .from-content .row>[class*="col-"] {
        padding-left: 4px;
        padding-right: 4px;
    }
}

.certificate img {
    width: 100%;
}

.certificate {
    padding: var(--section-padding-);
}

.certificate-heading {
    text-align: center;
}

.certificate-heading h2 {
    color: var(--primary);
}

.certificate-heading p {
    color: var(--nav-color);
    line-height: var(--para-line-height);
    padding: 15px 0px;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.categories {
    padding: var(--section-padding-);
}

.section-title h2 {
    font-weight: 700;
    color: var(--primary);
}

.category-card span {
    color: var(--accent-gold);
}


.custom-card {
    border: none;
    border-radius: 15px;
    transition: 0.4s;
    overflow: hidden;
}

.custom-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.category-card {
    background: var(--gradient-blue);
    color: white;
    padding: 30px;
    border-radius: 15px;
    height: 100%;
}

.category-card ul {
    margin: 0;
    padding: 0;
}

.category-card li {
    margin: 0;
    padding: 0;
    line-height: var(--para-line-height);
}


.scholarship {
    background: #f9f1de;
}

.award-from-details {
    padding: var(--section-padding-);
    background: var(--bg-light);
}

.award-from-details img {
    width: 100%;
}
/* .adds */
.adds{
    padding: var(--section-padding-);
}
.add-heading {
    text-align: center;
   
}


.add-heading h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary);
}

.add-heading p {
    text-align: center;
    font-size: 16px;
    color: #666;
    max-width: 600px;
    margin: 0 auto 30px;
}

.adds .carousel-item img {
    height: 500px;
    object-fit: cover;

}

.carousel-caption {
    background: rgba(0,0,0,0.5);
    padding: 15px;
    border-radius: 10px;
}

.carousel-caption h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-gold);
}

.carousel-caption p {
    font-size: 14px;
}

.carousel-indicators button {
    background-color: #fff;
}
/* news */
.news-section {
   padding-bottom: 50px;
    background: var(--sec-bg);
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 10px;
}

.section-title p {
    color: var(--nav-color);
}


.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}


.news-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    transition: 0.4s ease;
    position: relative;
}

.news-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #1111117b;
    opacity: 0;
    transition: 0.4s;
    z-index: 0;
}

.news-card:hover::before {
    opacity: 0.1;
}

.news-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* IMAGE */
.news-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* CONTENT */
.news-content {
    padding: 20px;
    position: relative;
    z-index: 1;
}

.news-date {
    display: inline-block;
    font-size: 14px;
    color: var(--accent);
    margin-bottom: 8px;
    font-weight: 600;
}

.news-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--nav-color);
}

.news-content p {
    font-size: 15px;
    line-height: var(--para-line-height);
    margin-bottom: 15px;
}

.news-content a {
    text-decoration: none;
    color: var(--primary);
    font-weight: 600;
    transition: 0.3s;
}

.news-content a:hover {
    color: var(--accent-dark);
    letter-spacing: 1px;
}
/* chairman */
.chairman-section {
    padding: var(--section-padding-);
    background: var(--sec-bg);
}


.chairman-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: center;
}
.chairman-img{
    overflow: hidden;
    border-radius: 20px;
}


.chairman-img img {
    width: 100%;
    height: 420px;   
    object-fit: cover;
    border-radius: 20px;
    transition: 0.4s;
}

.chairman-img:hover img {
    transform: scale(1.05);
}
/*  */

.chairman-img {
    position: relative;
    border-radius: 25px;
    padding: 5px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);

}
.img-inner {
    border-radius: 20px;
    overflow: hidden; 
}


.chairman-content {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
}





.sub-title {
    color: var(--accent);
    font-weight: 600;
    font-size: 14px;
}

.chairman-content h2 {
    color: var(--primary);
    margin: 10px 0;
}

.chairman-content p {
    line-height: var(--para-line-height);
    margin-bottom: 15px;
    color: var(--nav-color);
}

.chairman-name {
    margin-top: 20px;
    color: var(--primary-dark);
}

/* Animation */
.chairman-wrapper {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1s ease forwards;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* award */
.award-section {
    /*padding: 60px 0;*/
    background: linear-gradient(135deg, #fff5f5, #f0f7ff);
}

.award-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
}


.award-img img {
    width: 100%;
    height: 400px;
    object-fit: contain;
    border-radius: 20px;
    transition: 0.4s;
}

.award-img:hover img {
    transform: scale(1.05);
}


.award-content h2 {
    color: var(--primary);
    font-size: 32px;
    margin-bottom: 15px;
}

.award-content p {
    margin-bottom: 20px;
    line-height: 26px;
}


.award-btn {
    display: inline-block;
    padding: 10px 20px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 25px;
    text-decoration: none;
    transition: 0.4s;
}

.award-btn:hover {
    background: var(--gradient-secondary);
    color: var(--white);
}
/* zone */
.zone-section {
    padding: 70px 0;
}
.zone-img{
    overflow: hidden;
}

.zone-img img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    transition: 0.4s;
}

.zone-img:hover img {
    transform: scale(1.05);
}

/* Content */
.zone-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary);
}

.zone-content p {
    font-size: 15px;
    line-height: 26px;
    color: #555;
    margin-bottom: 15px;
}



/* Highlight backgrounds */
.save-zone {
    background: #fff;
}

.green-zone {
    background: var(--sec-bg);
}
/* footer start */
.footer {
    background: #111;
    color: #fff;
    padding: 60px 0 20px;
    font-family: 'Poppins', sans-serif;
}

footer .logo img {
    width: 160px;
    object-fit: cover;

}

.footer h3,
.footer h4 {
    color: #fff;
    margin-bottom: 20px;
    font-weight: 600;
}


.footer p {
    font-size: 15px;
    color: #ccc;
    line-height: var(--para-line-height);
    padding-top: 15px;
}


.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer ul li a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
    position: relative;
}

.footer ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0%;
    height: 2px;
    background: var(--primary);
    transition: 0.3s;
}

.footer ul li a:hover {
    color: #fff;
}

.footer ul li a:hover::after {
    width: 100%;
}

footer .social-links {
    padding: 12px 0px;
}

.social-links a {



    margin-right: 10px;

    color: #fff;
    transition: 0.3s;

}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-5px);
    padding: 8px;
    border-radius: 4px;
}


footer .donate-btn {
    background-color: var(--primary-dark);
    color: var(--white);
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 30px;
    display: inline-block;
    transition: all 0.3s ease;
    text-align: center;
}

footer .donate-btn:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(214, 40, 40, 0.4);
}

footer .f-donate-box {
    padding-top: 15px;
}


.footer-bottom {
    text-align: center;
    border-top: 1px solid #222;
    margin-top: 40px;
    padding-top: 15px;
    font-size: 14px;
    color: #aaa;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom span {
    color: var(--accent);
    font-weight: 600;
}

/* ===============================
   WHATSAPP FLOATING BUTTON
=================================*/
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    z-index: 10000;
    transition: all 0.3s ease;
    animation: wpPulse 2s infinite;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
}

.whatsapp-btn i,
.whatsapp-btn svg {
    color: #ffffff !important;
    fill: #ffffff !important;
}

.whatsapp-btn svg {
    width: 40px;
    height: 40px;
}

@keyframes wpPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* WHATSAPP POPUP */
.wp-popup {
    position: fixed;
    bottom: 110px;
    right: 30px;
    width: 320px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 10001;
    display: none;
    overflow: hidden;
    animation: wpFadeIn 0.3s ease;
}

.wp-popup.active {
    display: block;
}

@keyframes wpFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wp-header {
    background: #25D366;
    color: #fff;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.wp-header h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.wp-header span {
    cursor: pointer;
    font-size: 24px;
    line-height: 1;
}

.wp-body {
    padding: 20px;
}

.wp-msg {
    background: #f0f0f0;
    padding: 12px 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.5;
    position: relative;
}

.wp-msg::after {
    content: "";
    position: absolute;
    left: -10px;
    top: 10px;
    border-width: 10px 10px 10px 0;
    border-style: solid;
    border-color: transparent #f0f0f0 transparent transparent;
}

.wp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25D366;
    color: #fff;
    padding: 12px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.wp-btn:hover {
    background: #128C7E;
    color: #fff;
}

/* ================= MODERN THEME PAGINATION ================= */
.theme-pagination .page-link {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50% !important;
    margin: 0 5px;
    border: 1px solid #eee;
    color: #444;
    font-weight: 600;
    transition: all 0.3s ease !important;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.theme-pagination .page-link:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    color: var(--primary) !important;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.theme-pagination .page-item.active .page-link {
    background: var(--gradient-primary);
    border-color: transparent;
    color: #fff !important;
    box-shadow: 0 8px 20px rgba(214, 40, 40, 0.3);
}

.theme-pagination .page-item.disabled .page-link {
    opacity: 0.5;
    background: #f1f1f1;
    cursor: not-allowed;
}

.theme-pagination .page-link i {
    font-size: 14px;
}

/* ================= AJAX GALLERY FADE ANIMATIONS ================= */
#memorial-ajax-container, #news-ajax-container {
    transition: opacity 0.4s ease-in-out;
}

.gallery-fade-out {
    opacity: 0;
}

.gallery-fade-in {
    opacity: 1;
}

/* Optional: Loading indicator style */
.gallery-loading {
    cursor: wait;
    pointer-events: none;
}

