

/*  */
#loader {
  position: fixed;
  inset: 0;
  background: #ffffff; 
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}


.spinner {
  width: 180px;
  height: 180px;
  border: 12px solid rgba(255,255,255,0.1);
  border-top: 12px solid var(--green-primary); 
  border-radius: 50%;
  animation: spin 1s linear infinite;
}


@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/*  */
.top-header {
    background: var(--blue-primary);
    color: var(--white);
    font-size: 14px;
    padding: 10px 0;
}

.top-header a {
    color: var(--white);
    margin-left: 15px;
    transition: 0.3s;
}

.top-header a:hover {
    color: var(--yellow);
}

/* ===================================================
   🔷 NAVBAR
=================================================== */
.main-header {
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
    background-color: var(--border-color) !important;

}

.navbar {
    padding: 5px 0;
}

.navbar-brand img {
    width: 80px;
    height: auto;
    object-fit: cover;
}

.nav-link {
    font-weight: 500;
    margin: 0 12px;
    color: var(--black);
    position: relative;
    transition: 0.3s;
    font-weight: 600 !important;
}


.navbar-toggler {
    border: none !important;
}

.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler:focus-visible {
    outline: none !important;
    box-shadow: none !important;
}

.nav-link::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--orange);
    left: 0;
    bottom: -5px;
    transition: 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: var(--blue-primary) !important;
}

/* ===================================================
   🎯 BUTTON SYSTEM
=================================================== */
.btn-primary-theme {
    background: var(--gradient-primary);
    color: var(--black);
    border-radius: 30px;
    padding: 10px 28px;
    font-weight: 600;
    border: none;
    transition: 0.5s ease-in-out;
}



.btn-blue {
    background: var(--blue);
    color: var(--white);
    border-radius: 30px;
    padding: 10px 28px;
    border: none;
    transition: 0.3s;
}

.btn-blue:hover {
    background: var(--blue-primary);
    transform: translateY(-3px);
}

.text-blue {
    color: var(--blue);
}


.top-header {
    position: relative;
}

.main-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: #fff;
}

body {
    padding-top: 0;
}




/* ===================================================
   🖼 HERO SECTION (PREMIUM FIXED)
=================================================== */

.hero-banner {
    position: relative;
    overflow: hidden;
}

/* FIX HEIGHT STRUCTURE */
.hero-banner .carousel,
.hero-banner .carousel-inner,
.hero-banner .carousel-item {
    height: 95vh;
}

/* IMAGE */
.hero-banner .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* FIX: Prevent collapsing */
.hero-banner .carousel-item {
    position: relative;
}

/* OVERLAY */
.hero-banner .carousel-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(0, 0, 0, 0.75),
            rgba(0, 0, 0, 0.5),
            rgba(0, 0, 0, 0.75));
    z-index: 1;
}

/* CAPTION CENTER */
.hero-banner .carousel-caption {
    position: absolute;
    z-index: 2;
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
    text-align: left;
    width: 100%;
}

/* CONTENT WIDTH */
.hero-banner .carousel-caption .hero-content {
    max-width: 600px;
    width: 100%;
}

/* HEADING */
.hero-banner h1 {
    font-size: 52px;
    font-weight: 700;
    color: #fff !important;
    line-height: 1.2;
}

.responsive-header {
    display: none;

}

.menu-toggole .btn:focus,
.menu-toggole .btn:active,
.menu-toggole .btn:focus-visible {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
}

.offcanvas .btn-close:focus,
.offcanvas .btn-close:active,
.offcanvas .btn-close:focus-visible {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
}

.responsive-header .offcanvas-header {
    background-color: var(--border-color);
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.offcanvas-body ul li {
    padding-top: 20px;
}

.offcanvas-body .off-d-btn:focus {
    background-color: var(--active-color);
}

.btn:focus {
    box-shadow: none !important;
}

.offcanvas .btn-close {
    background-image: none;
    opacity: 1;
    position: relative;
    right: 20px;
}

.offcanvas .btn-close i {
    color: var(--p-color);
}

.offcanvas-body {
    background-color: var(--border-color);
}

button:focus {
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
}

.responsive-header i {
    color: var(--p-color);
    font-size: 25px;
}

.responsive-header {
    background-color: var(--border-color);
    padding: 10px 0px;
}

.responsive-header .responsive-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.responsive-header .logo img {
    width: 80px;
    height: auto;
    object-fit: cover;
}

.hero-banner h1 span {
    color: var(--light-yellow);
}

/* PARAGRAPH */
.hero-banner p {
    color: #ddd;
    padding: 15px 0;
    font-size: 16px;
    line-height: 1.7;
}

/* BUTTON */
.btn-primary-theme {
    display: inline-block;
    background: var(--light-yellow);
    color: #000;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary-theme:hover {
    background: #d4af37;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* INDICATORS */
.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #fff;
    opacity: 0.5;
    transition: 0.3s;
}

.carousel-indicators .active {
    opacity: 1;
    transform: scale(1.3);
    background-color: var(--light-yellow);
}

/* CONTROLS */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(1);
    width: 35px;
    height: 35px;
}

/* TEXT ANIMATION */
.hero-banner h1,
.hero-banner p,
.hero-banner a {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s ease forwards;
}

.hero-banner h1 {
    animation-delay: 0.3s;
}

.hero-banner p {
    animation-delay: 0.6s;
}

.hero-banner a {
    animation-delay: 0.9s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ======================================
   📱 RESPONSIVE FIX
====================================== */





@media (max-width: 480px) {

    .hero-banner .carousel,
    .hero-banner .carousel-inner,
    .hero-banner .carousel-item {
        height: 60vh;
    }

    .hero-banner h1 {
        font-size: 22px;
    }
}


/* ===================================================
   📖 ABOUT SECTION
=================================================== */
.about-section {
    background: var(--light);
}

.about-section img {
    width: 100%;
    height: 400px;
    border-radius: 15px;
    object-fit: cover;
    box-shadow: var(--shadow-sm);
}

.sub-title {
    color: var(--active-color) !important;
    font-weight: 600;
}

.main-title span {
    color: var(--blue-primary) !important;
}

.main-title {
    color: var(--black) !important;
    font-size: 45px;
}

.about-card {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--active-color) !important;
    padding: 15px 25px;
    border-radius: 10px;
    color: var(--black);
    box-shadow: var(--shadow-md);
}

.about-card h5 {
    font-size: 25px !important;
    font-weight: 800;
    color: var(--light-yellow);
}

.about-card p {
    font-size: 20px;
    color: var(--white);
    padding: 0;
}



.stats {
    background-color: var(--blue-primary);
    padding: var(--section-padding);
    text-align: center;
    position: relative;
}


.stats,
.stats h2,
.stats p,
.stats i {
    color: var(--white) !important;
}

.stats h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 10px;
}


.stats p {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 0;
}


.stats i {
    font-size: 18px;
}


.stats::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center,
            rgba(255, 255, 255, 0.2),
            transparent 60%);
    pointer-events: none;
}



.section-title {
    text-align: center;
    margin-bottom: 10px;
}

#causes {
    padding: var(--section-padding);
}

.owl-nav button {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: var(--active-color) !important;
    color: #fff !important;
    border-radius: 50% !important;
    border: none !important;
    font-size: 18px;
}

.owl-nav .owl-prev {
    left: -20px;
}

.owl-nav .owl-next {
    right: -20px;
}

.owl-nav button:hover {
    background: #000 !important;
}


.section-subtitle {
    text-align: center;
    margin-bottom: 50px;
    color: #666;
}

.card-box {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: 0.3s;
    height: 100%;
    text-align: center;
    padding-bottom: 25px;
    transition: 0.5s ease-in-out;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.card-box:hover {
    background-color: #fdfdeb;

}

.card-box:hover .btn-primary-theme {
    background-color: var(--active-color);

}

.card-box img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.card-box h5 {
    margin-top: 20px;
}

.card-box p {
    padding: 0 20px;
}



.btn-cta {
    background: var(--active-color);
    color: var(--white);
    border-radius: 30px;
    padding: 10px 28px;
    font-weight: 600;
    border: none;
    transition: 0.5s ease-in-out;
    white-space: nowrap;
}

.btn-cta:hover {
    background-color: var(--blue-primary);
}


/* ===================================================
   🦶 FOOTER
=================================================== */
.footer {
    background-color: var(--border-color);
    padding: var(--section-padding);

}

.footer-title {
    margin-bottom: 20px;
    position: relative;
}

.footer-title::after {
    content: '';
    width: 40px;
    height: 3px;
    background: var(--orange);
    position: absolute;
    bottom: -8px;
    left: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--p-color);
    transition: 0.4s ease-in-out;
    font-weight: 600;
}

footer .logo img {
    width: 80px;
    height: auto;
    object-fit: cover;

}

.footer-links a:hover {
    color: var(--active-color);
}

.social-icons {
    margin-top: 20px;
}

.social-icons i {
    color: var(--blue-primary);
}

.social-icons a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 38px;
    height: 38px;
    margin-right: 10px;
    background: rgb(255, 255, 255) !important;
    border-radius: 50%;
    color: var(--white);
    transition: 0.3s;
}

.social-icons a:hover {
    background: var(--active-color) !important;
}

.social-icons a:hover i {
    color: var(--white);
}


.newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 8px;
    border: none;
    width: 100% !important;

    background-color: #1f29370b;
    border: var(--active-color) 1px solid;
    outline: none;


}

.footer-links {
    margin: 0;
    padding: 0;
}

.footer-links li {
    margin: 0;
    padding: 0;
}

.newsletter-form button {
    padding: 10px 20px;
    border: none;

    background: var(--blue-primary);
    color: var(--white);
}

.newsletter-form button:hover {
    background: var(--active-color);
}

.footer-bottom {
    margin-top: 40px;
    text-align: center;
    font-size: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: var(--p-color) 1px solid;
}

.footer-bottom span {
    color: var(--blue-primary);
    font-weight: 600;
}

.footer-bottom p {
    color: var(--p-color);
}

/* ===================================================
   📱 RESPONSIVE
=================================================== */
@media (max-width: 992px) {
    section {
        padding: 10px 0;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .footer-bottom {
        flex-direction: column;
    }

}

@media (max-width: 768px) {
    section {
        padding: 25px 0;
    }

    .hero-slide {
        height: 80vh;
    }

    .hero-content {
        padding: 25px;
    }

    .newsletter-form {
        flex-direction: column;
    }
}



/* Remove top spacing from hero */
.hero-carousel {
    padding: 0;
    margin: 0;
}

/* Remove section global padding override for hero */
.hero-carousel {
    padding-top: 0 !important;
}

/* Ensure carousel has no margin */
.carousel {
    margin: 0;
}

/* Make hero sit directly under header */
.hero-slide {
    margin-top: 0;
}


/* ===================================================
   🎉 EVENTS SECTION (UPDATED – CLEARLY DIFFERENT)
=================================================== */
.events-section {
    padding: var(--section-padding);
    background-color: var(--border-color);
    /* position: relative; */
}

/* Subtle top separator */
.events-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(to bottom, #f9fafc, transparent);
}

/* Featured Event */
.event-featured {
    position: relative;
    background: var(--p-color);
    color: #fff;
    padding: 50px;
    border-radius: 25px;
    display: flex;
    gap: 30px;
    align-items: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    transition: 0.4s ease;
}

.event-featured:hover {
    transform: translateY(-5px);
}


/* Glow overlay */
.event-featured::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(255, 140, 0, 0.25), transparent 60%);
    pointer-events: none;
}

/* Date Box */
.event-date-box {
    background: var(--border-color);
    color: var(--active-color);
    padding: 25px;
    border-radius: 18px;
    text-align: center;
    min-width: 100px;
    z-index: 2;
}

.event-day {
    font-size: 36px;
    font-weight: 700;
    display: block;
}

.event-month {
    font-size: 14px;
    font-weight: 600;
}

/* Content */
.event-content h3 {
    color: #fff;
    margin-bottom: 15px;
}

.event-meta {
    display: flex;
    gap: 25px;
    font-size: 14px;
    margin-top: 15px;
    color: #ddd;
}

/* Mini Events */
.event-mini {
    display: flex;
    gap: 20px;
    align-items: center;
    padding: 10px;
    background: #ffffff;
    border-radius: 18px;
    margin-bottom: 15px;
    transition: 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.event-mini:hover {
    transform: translateX(10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.mini-date {
    background: var(--gradient-primary);
    color: var(--active-color);
    padding: 6px 18px;
    border-radius: 12px;
    text-align: center;
    font-size: 23px;
    font-weight: 600;
}

.event-mini a {
    color: var(--green-primary) !important;
}

.mini-date span {
    font-size: 32px;

}

.mini-date .small {
    font-size: 18px;
}

/* ===================================================
   🚀 CTA SECTION
=================================================== */
.cta-section {
    padding: var(--section-padding);
    background-image: url(../images/Screenshot_20250720_003851_WhatsAppBusiness.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    overflow: hidden;
}

/* Subtle Gradient Accent Layer */
.cta-section::after {
    position: absolute;
    content: "";
    inset: 0;
    background-color: #11111185;
}

.cta-box {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 25px;

    text-align: center;
    color: #fff;
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-md);
    padding: 25px;
}

.cta-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #fff;
}

.cta-content p {
    max-width: 650px;
    margin: 0 auto 35px auto;
    color: #ddd;
    font-size: 16px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}



/* ===== GLOBAL OVERFLOW FIX ===== */

html,
body {
    overflow-x: hidden;
    width: 100%;
}

img {
    max-width: 100%;
    display: block;
}

.hero-slide {
    overflow: hidden;
}

.cta-section {
    overflow: hidden;
}



/* ===================================================
   🎨 ABOUT HERO – SOFT GRADIENT DIAGONAL
=================================================== */
.about-hero-diagonal {
    position: relative;
    height: 60vh;

    background: url('../images/IMG-20260221-WA0011.webp') center center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}


/* Slight dark base overlay for better readability */
.about-hero-diagonal::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.547);
    z-index: 0;
    text-align: center;
}

/* Content */
.about-hero-content-new  {
    position: relative;
    z-index: 2;
    padding: 130px 0px;
    color: #fff;
    text-align: center;
}
.about-hero-content-new  span{
    color: var(--light-yellow);
}
.about-hero-content-new  h1 {
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 2px;
    color: var(--light-yellow);
    white-space: nowrap;
}

.about-hero-content-new  p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
    color: #f5f5f5;
}




/* ================= ABOUT SECTION ENHANCED ================= */

.about-section {
    padding: var(--section-padding);
}

.about-img {
    border-radius: 20px;
    transition: transform 0.6s ease;
}

.about-img:hover {
    transform: scale(1.05);
}

.about-card {
    position: absolute;
    bottom: -20px;
    left: 60px;
    background: linear-gradient(135deg, #ffae00, #ff7a00);
    color: #000;
    padding: 20px 30px;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    animation: floatCard 4s ease-in-out infinite;
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.about-text {
    margin-top: 20px;
    line-height: 1.8;
}

.feature {
    margin-bottom: 12px;
    font-weight: 500;
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateX(8px);
}

/* ================= STATS ENHANCED ================= */

.stat-box {
    padding: 30px 20px;
    border-radius: 15px;
    transition: all 0.4s ease;
}

.stat-box:hover {
    background: rgba(0, 0, 0, 0.08);
    transform: translateY(-8px);
}

.stats h2 {
    font-size: 48px;
    font-weight: 800;
}

/* ================= ANIMATIONS ================= */

.animate-left,
.animate-right,
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.animate-left {
    transform: translateX(-60px);
}

.animate-right {
    transform: translateX(60px);
}

.show {
    opacity: 1 !important;
    transform: translate(0, 0) !important;
}



/* ================= RECENT DONATIONS ================= */

.recent-donations {
    padding: 100px 0;
    background: linear-gradient(135deg, #fff9e6, #ffe8cc);
    overflow: hidden;
}

.donation-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    height: 100%;
}

.donation-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.donation-card img {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #ff7a00;
}

.donation-info h5 {
    margin: 0;
    font-weight: 700;
}

.amount {
    display: block;
    color: var(--active-color);
    font-weight: 700;
    margin: 6px 0;
}

.donation-info p {
    margin: 0;
    font-size: 14px;
    color: #555;
}

/* Responsive */



/* ===============================
   MISSION VISION SECTION
================================ */

.mission-vision-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
}

.mv-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
    transition: 0.4s ease;
    height: 100%;
}

.mv-card:hover {
    transform: translateY(-10px);
}

.mv-icon {
    font-size: 40px;
    color: var(--active-color);
    margin-bottom: 20px;
}

.mv-card h4 {
    font-weight: 700;
    margin-bottom: 15px;
}

.mv-card p {
    color: #555;
    font-size: 15px;
}

/* ===============================
   ANIMATIONS
================================ */

.animate-left,
.animate-right,
.animate-up {
    opacity: 0;
    transition: 0.8s ease;
}

.animate-left {
    transform: translateX(-50px);
}

.animate-right {
    transform: translateX(50px);
}

.animate-up {
    transform: translateY(50px);
}

.animate-left.show,
.animate-right.show,
.animate-up.show {
    opacity: 1;
    transform: translate(0);
}


/* ==========================================
   CORE VALUES SECTION – PREMIUM DARK STYLE
========================================== */

.core-values-section {
    padding: var(--section-padding);
    position: relative;
    background-color: var(--black);
    color: #fff;
    overflow: hidden;
}

/* Soft Gradient Glow */
.core-values-section::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 106, 0, 0.25), transparent 70%);
    z-index: 0;
}

/* Content Above Background */
.core-values-section .container {
    position: relative;
    z-index: 2;
}

/* ================= BADGE ================= */

.values-badge {
    display: inline-block;
    background-color: var(--green-primary);
    color: #fff;
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 13px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

/* ================= TITLE ================= */

.values-title {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.values-title span {
    background: var(--active-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ================= DESCRIPTION ================= */

.values-desc {
    color: #cbd5e1;
    font-size: 16px;
    margin-bottom: 35px;
    max-width: 520px;
}

/* ================= VALUE LIST ================= */

.values-list {
    margin-top: 20px;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 28px;
}

.value-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    flex-shrink: 0;
}

.value-icon.orange {
    background-color: var(--active-color);
}

.value-icon.green {
    background: var(--green-primary);
}

.value-item h5 {
    font-weight: 600;
    margin-bottom: 6px;
    color: #fff;
}

.value-item p {
    font-size: 14px;
    color: #94a3b8;
    margin: 0;
}

/* ==========================================
   RIGHT SIDE IMAGE DESIGN (RESTORED LAYERED)
========================================== */

.core-values-section .col-lg-6 {
    position: relative;
}

/* Orange Circle Accent */
.values-shape {
    position: absolute;
    width: 340px;
    height: 340px;
    background: linear-gradient(135deg, #ff6a00, #ff8c00);
    border-radius: 50%;
    right: 40px;
    top: 80px;
    opacity: 0.18;
    z-index: 1;
}

/* Large Image */
.values-img-large {
    position: relative;
    z-index: 2;
}

.values-img-large img {
    width: 100%;
    border-radius: 22px;
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.6);
}

/* Floating Small Image */
.values-img-small {
    position: absolute;
    top: -50px;
    right: -25px;
    width: 240px;
    z-index: 3;
}

.values-img-small img {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.7);
    border: 6px solid #0f172a;
}


/* ==========================================
   SLIDE ANIMATIONS
========================================== */

.animate-left,
.animate-right {
    opacity: 0;
    transition: all 0.8s ease;
}

.animate-left {
    transform: translateX(-60px);
}

.animate-right {
    transform: translateX(60px);
}

.animate-left.show,
.animate-right.show {
    opacity: 1;
    transform: translateX(0);
}




/* ===================================================
   🎯 CAUSES HERO – SOFT ORANGE GOLD DIAGONAL
=================================================== */

.causes-hero-diagonal {
    position: relative;
    height: 60vh;
    object-fit: cover;

    background: url('../images/banner-two.webp') center center / cover no-repeat;
    /* display: flex;
    align-items: center;
    justify-content: center;
    text-align: center; */
    overflow: hidden;
}




/* Base subtle dark overlay */
.causes-hero-diagonal::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.596);
    z-index: 0;
}

/* Content */
.causes-hero-content {
    position: relative;
    z-index: 2;
    padding: 130px 0px;
    color: #fff;
    text-align: center;
}
.causes-hero-content span{
    color: var(--light-yellow);
}
.causes-hero-content h1 {
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 2px;
    color: var(--white);
    white-space: nowrap;
}

.causes-hero-content p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
    color: #f5f5f5;
}

/* ================= RESPONSIVE ================= */





.our-causes-section {
    padding: var(--section-padding);
    background-color: #edf3e7cd;
}

.cause-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    transition: 0.3s;
    height: 100%;
}

.cause-button-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.cause-button-flex .explore a {
    color: var(--active-color) !important;
}

.cause-card:hover {
    transform: translateY(-8px);
}

.cause-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.cause-content {
    padding: 20px;
}

.cause-content h4 {
    font-weight: 700;
    margin-bottom: 10px;
}

.hidden-cause {
    display: none;
}

.btn-primary-theme {
    background: var(--blue-primary);
    border: none;
    color: #fff;
    padding: 10px 25px;
    border-radius: 50px;
}

.btn-outline-theme {
    border: 2px solid var(--active-color);
    color: var(--active-color);
    padding: 10px 28px;
    border-radius: 50px;
    background: transparent;
}

.btn-outline-theme:hover {
    background: var(--active-color);
    color: #fff;
}

.fade-up {
    animation: fadeUp 0.5s ease forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}




/* ==============================
   CTA VOLUNTEER SECTION
============================== */

.cta-volunteer-section {
    position: relative;
    padding: 100px 0;
    background: url('https://images.unsplash.com/photo-1521737604893-d14cc237f11d?w=1920') center center / cover no-repeat;
    overflow: hidden;
}

/* Orange Overlay */
.cta-overlay {
    position: absolute;
    inset: 0;
    background: var(--active-color);
    z-index: 1;
}

/* Container above overlay */
.cta-volunteer-section .container {
    position: relative;
    z-index: 2;
}

/* IMAGE */
.cta-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

/* FORM */
.cta-form {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    padding: 40px;
    border-radius: 20px;
    color: #fff;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.cta-form h3 {
    font-size: 28px;
    margin-bottom: 25px;
    font-weight: 700;
    color: var(--white);
}

/* INPUTS */
.cta-form .form-control {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.6);
    color: #fff;
    padding: 12px 15px;
    border-radius: 8px;
}

.cta-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.8);
}

.cta-form .form-control:focus {
    background: transparent;
    box-shadow: none;
    border-color: var(--white);
}

/* BUTTON */
.btn-light-cta {
    background: var(--white);
    color: var(--active-color);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    transition: 0.3s;
}

.btn-light-cta:hover {
    background: var(--black);
    color: var(--white);
}

/* ==============================
   SLIDE ANIMATIONS
============================== */

.slide-left,
.slide-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
}

.slide-left {
    transform: translateX(-60px);
}

.slide-right {
    transform: translateX(60px);
}

.slide-left.show,
.slide-right.show {
    opacity: 1;
    transform: translateX(0);
}

/* ==============================
   RESPONSIVE
============================== */






/* ================= BLOG HERO ================= */

.blog-hero {
    position: relative;
    height: 60vh;
    min-height: 500px;
    background: url('../images/IMG-20260221-WA0006.webp') center center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

/* Dark overlay */
.blog-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.501);
}

/* Optional grayscale effect */
.blog-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    backdrop-filter: grayscale(100%);
    z-index: 0;
}

/* Content */
.blog-hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    top: 45px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.blog-hero-content h1 {
    font-size: 60px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-top: 15px;
}
.blog-hero-content .tagline{
    color: var(--white);
    font-weight: 600;
}
.blog-hero-content .short-para{
    color: var(--border-color);
    max-width: 600px;
 
}
.blog-hero-content h1 span{
    color: var(--light-yellow);
}

/* Breadcrumb */
.breadcrumb-text {
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb-text .dot {
    margin: 0 8px;
}



.blog-hero-content {
    animation: fadeUp 1s ease forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}




/* ================= BLOG GRID SECTION ================= */

.blog-grid-section {
    padding: 80px 0;
    background: #f9f9f9;
}

/* Card */
.blog-card {
    position: relative;
    transition: 0.4s ease;
}

/* Image */
.blog-img img {
    width: 100%;
    border-radius: 12px;
    height: 260px;
    object-fit: cover;
    display: block;
}

/* Content Box */
.blog-content {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    margin-top: -50px;
    margin-left: 20px;
    margin-right: 20px;
    z-index: 2;
    height: 100%;
}

/* Meta */
.blog-meta {
    font-size: 13px;
    color: #777;
    margin-bottom: 10px;
}

.blog-meta span {
    margin-right: 12px;
}

/* Title */
.blog-content h4 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}

/* Description */
.blog-content p {
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
}

/* Read More */
.read-more {
    color: #ff7a00;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.read-more:hover {
    color: #000;
}

/* Hover Effect */
.blog-card:hover .blog-content {
    transform: translateY(-8px);
}





.blog-img {
    overflow: hidden;
    border-radius: 12px;
}

.blog-img img {
    transition: 0.5s ease;
}

.blog-card:hover .blog-img img {
    transform: scale(1.05);
}




/* ================= HERO CAROUSEL ================= */




/* ===============================
   TRICOLOR HERO FIX
================================ */


/* ================= GALLERY BANNER ================= */

.gallery-banner {
    position: relative;
    background: url('../images/IMG-20260221-WA0009.webp') center/cover no-repeat;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* DARK OVERLAY */
.gallery-banner .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.248), rgba(0, 0, 0, 0.7));
}

/* CONTENT */
.banner-content {
    position: relative;
    color: #fff;
    top: 45px;
    z-index: 2;
    text-align: center;
}

.banner-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--white);
}
.gallery-banner span{
    color: var(--light-yellow);
}
.banner-content p {
    font-size: 16px;
    opacity: 0.9;
    line-height: 1.6;
    color: var(--white);
    max-width: 550px;
    margin: 0 auto;
}





/* ================= GALLERY ================= */

.gallery-section {
    padding: var(--section-padding);
    background: #f8f5ef;
}

.gallery-header {
    text-align: center;
}

/* ================= GALLERY ITEM ================= */

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
 height: 250px;
}

/* IMAGE */
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

/* OVERLAY */
.gallery-item .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);

    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    transition: 0.4s;
}

/* BUTTON */
.view-btn {
    color: #fff;
    text-decoration: none;
    padding: 10px 25px;
    border: 1px solid #fff;
    border-radius: 30px;
    transition: 0.3s;
}

.view-btn:hover {
    background: #d4af37;
    border-color: #d4af37;
}

/* HOVER EFFECT */
.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .overlay {
    opacity: 1;
}




.our-events-section {
    background: linear-gradient(135deg, #fffaf5, #fff);
}

/* Card Base */
.event-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
}

/* Hover Lift */
.event-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

/* Image */
.event-img {
    position: relative;
    overflow: hidden;
}

.event-img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

/* Image Zoom */
.event-card:hover img {
    transform: scale(1.08);
}

/* Date Badge */
.event-date {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #ff9800, #ffcc00);
    color: #000;
    padding: 10px 14px;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    transition: 0.3s;
}

.event-card:hover .event-date {
    transform: scale(1.1);
}

.event-date span {
    font-size: 18px;
    display: block;
}

.event-date small {
    font-size: 12px;
}

/* Content */
/* .event-content {
    padding: 20px;
} */

.event-tag {
    display: inline-block;
    background: rgba(255, 152, 0, 0.1);
    color: #ff9800;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 13px;
    margin-bottom: 10px;
}

.event-content h5 {
    font-weight: 700;
    margin-bottom: 10px;
}

.event-content p {
    font-size: 14px;
    color: #666;
}

.our-work-details {
    padding: var(--section-padding);
    background-color: var(--border-color);
}

.our-work-details img {
    width: 100%;
    border-radius: 20px;
}

.donation-content span {
    color: var(--active-color);
}

.work-heading {
    text-align: center;
    padding-bottom: 35px;
}

.donation-points li {
    color: var(--active-color);
    margin: 0;
    padding: 0;
}

.donation-points i {
    color: #489902;
}

.donation-points {
    margin: 0;
    padding: 0;

}

/* ============================================
   SLIDE UP REVEAL ANIMATION
============================================ */

.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s ease;
}

.reveal.show {
    opacity: 1;
    transform: translateY(0);
}

/* Delay Variations */
.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

.delay-5 {
    transition-delay: 0.5s;
}

.delay-6 {
    transition-delay: 0.6s;
}




/* ==================================
   HERO ARROW FORCE FIX
================================== */

.carousel-control-prev,
.carousel-control-next {
    width: 60px !important;
    height: 60px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    opacity: 1 !important;
    z-index: 999 !important;
}

/* Remove bootstrap default arrow icon */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    display: none !important;
}

/* Custom arrow circle */
.hero-arrow {
    width: 60px;
    height: 60px;
    background: #ff7a00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 22px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.tri-overlay {
    pointer-events: none;
}









.carousel-control-prev {
    left: 40px !important;

}

.carousel-control-next {
    right: 40px !important;

}







/* ================= FEATURED COUNTDOWN SECTION ================= */

.featured-countdown-section {
    position: relative;
    padding: 120px 0;

    /* Light soft gradient */
    background: linear-gradient(135deg,
            #ffffff 0%,
            #fff6e9 50%,
            #ffe8cc 100%);

    color: #222;
}

.featured-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(255, 140, 0, 0.7),
            rgba(0, 0, 0, 0.8));
}

.featured-countdown-section .container {
    position: relative;
    z-index: 2;
}

.featured-event-content h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 15px;
}

.featured-event-content p {
    opacity: 0.9;
    margin-bottom: 20px;
}

.featured-date {
    display: inline-block;
    background: var(--gradient-primary);
    padding: 15px 25px;
    border-radius: 12px;
    margin-bottom: 20px;
    text-align: center;
}

.featured-date .day {
    font-size: 28px;
    font-weight: 700;
    display: block;
}

.featured-date .month {
    font-size: 14px;
}

.event-meta span {
    margin-right: 20px;
    font-size: 14px;
    opacity: 0.9;
}

/* ================= COUNTDOWN ================= */

.normal-countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.time-box {
    background: #fff;
    color: #000;
    width: 100px;
    height: 100px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.time-box h3 {
    font-size: 32px;
    font-weight: 700;
    margin: 0;
}

.time-box span {
    font-size: 12px;
    font-weight: 500;
}

/* Responsive */




/* ========================================
   FEATURED COUNTDOWN RESPONSIVE FIX
======================================== */



/* ===============================
   EVENTS GALLERY GRID
================================ */

.events-gallery-grid {
    background: linear-gradient(135deg, #fff8ef, #ffffff);
}

/* Card */
.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: 0.4s ease;
}

.gallery-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: 0.6s ease;
}

/* Hover Zoom */
.gallery-card:hover img {
    transform: scale(1.1);
}

/* Overlay */
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.6));
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: 0.4s ease;
}

.gallery-overlay h5 {
    color: #fff;
    font-weight: 600;
    margin: 0;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

/* ===============================
   SLIDE INTRO ANIMATION
================================ */

.animate-up {
    opacity: 0;
    transform: translateY(50px);
    transition: 0.8s ease;
}

.animate-up.show {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}



/* ==========================================
   TESTIMONIAL SECTION – DARK PREMIUM STYLE
========================================== */

.testimonial-section {
    padding: 120px 0;
    position: relative;
    background: linear-gradient(135deg, #111827, #1f2937);
    overflow: hidden;
}

/* Soft orange glow */
.testimonial-section::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 122, 0, 0.25), transparent 70%);
    z-index: 0;
}

.testimonial-section .container {
    position: relative;
    z-index: 2;
}

/* ==========================================
   SLIDER
========================================== */

.testimonial-slider {
    overflow: hidden;
    position: relative;
}

.testimonial-track {
    display: flex;
    gap: 40px;
    width: max-content;
    animation: scrollLeft 35s linear infinite;
}

/* Stop on hover */
.testimonial-slider:hover .testimonial-track {
    animation-play-state: paused;
}

/* Continuous animation */
@keyframes scrollLeft {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ==========================================
   CARD DESIGN (BIGGER + TALLER)
========================================== */

.testimonial-card {
    min-width: 420px;
    /* Increased width */
    height: 320px;
    /* Increased height */
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    padding: 40px;
    border-radius: 25px;
    text-align: center;
    color: #fff;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Hover Lift */
.testimonial-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
}

/* Profile Image */
.testimonial-card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 20px;
    object-fit: cover;
    border: 3px solid #ff7a00;
}

/* Name */
.testimonial-card h5 {
    font-weight: 600;
    margin-bottom: 5px;
    color: #fff;
}

/* Role */
.testimonial-card span {
    display: block;
    font-size: 14px;
    color: #ff7a00;
    margin-bottom: 15px;
}

/* Testimonial Text */
.testimonial-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #d1d5db;
}

/* ==========================================
   RESPONSIVE
========================================== */





/* ================= CONTACT HERO ================= */

.contact-hero {
    position: relative;
    height: 80vh;
    min-height: 500px;
    background: url('../images/IMG-20260221-WA0008.webp') center center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

/* Dark overlay */
.contact-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(0, 0, 0, 0.547),
            rgba(0, 0, 0, 0.6));
}

/* Optional soft blur effect */
.contact-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    backdrop-filter: grayscale(40%);
    z-index: 0;
}

/* Content */
.contact-hero-content {
    position: relative;
    z-index: 2;
    top: 45px;
    color: #fff;
    animation: fadeUp 1s ease forwards;
}

.contact-hero-content h1 {
    font-size: 70px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-top: 15px;
    color: var(--light-yellow);
}

.hero-subtext {
    margin-top: 15px;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
}

/* Breadcrumb */
.breadcrumb-text {
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb-text .dot {
    margin: 0 8px;
}



/* Animation */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* CARD STYLE */
.volunteer-card {
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    gap: 20px;
    transition: 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.volunteer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* IMAGE */
.volunteer-img img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #f5f5f5;
}

/* CONTENT */
.volunteer-content {
    flex: 1;
}

.category {
    font-size: 12px;
    color: #999;
    display: block;
    margin-bottom: 5px;
}

.volunteer-content h4 {
    font-size: 18px;
    margin-bottom: 5px;
    font-weight: 600;
}

.volunteer-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
}

/* BUTTON */
.join-btn {
    font-size: 14px;
    color: #d4af37;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.join-btn:hover {
    color: #000;
}
/* team management */
.team-management{
    padding: var(--section-padding);
}
.team-management img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}
.team-management .team-box{
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
}
.team-heading{
    text-align: center;
    padding-bottom: 20px;
}
.team-content h6{
    color: var(--blue-primary);
    font-size: 25px;
    font-weight: 600;
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}
.team-content{
    text-align: center;
    padding-top: 20px;
}

/* MOBILE */
@media (max-width: 576px) {
    .volunteer-card {
        flex-direction: column;
        text-align: center;
    }

    .volunteer-img img {
        margin-bottom: 10px;
    }
}


/* ================= CONTACT SECTION ================= */

.contact-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #f9fafc, #f1f3f9);
}

/* LEFT CONTENT */
.contact-label {
    color: #ff7a00;
    font-weight: 600;
    letter-spacing: 1px;
}

.contact-title {
    font-size: 48px;
    font-weight: 700;
    margin: 15px 0;
}

.contact-desc {
    color: #6b7280;
    margin-bottom: 35px;
}

/* INFO ITEMS */
.contact-info .info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    gap: 20px;
}

.contact-info h6 {
    color: var(--p-color);
}

.info-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #ff7a00, #ffb347);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;


}

/* FORM */
.contact-form-card {
    background: #fff;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.contact-form-card .form-control {
    border-radius: 8px;
    padding: 12px 15px;
    border: 1px solid #e5e7eb;
}

.contact-form-card .form-control:focus {
    border-color: #ff7a00;
    box-shadow: none;
}

/* MAP */
.map-wrapper {
    margin-top: 70px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.map-wrapper iframe {
    width: 100%;
    height: 400px;
    border: 0;
}

/* ================= ANIMATIONS ================= */

.animate-left,
.animate-right,
.animate-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.animate-left {
    transform: translateX(-60px);
}

.animate-right {
    transform: translateX(60px);
}

.show {
    opacity: 1 !important;
    transform: translate(0) !important;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
    .contact-title {
        font-size: 36px;
    }

    .map-wrapper iframe {
        height: 300px;
    }
}




/* ================= DONATION IMPACT ================= */

.donation-impact-section {
    position: relative;
    padding: var(--section-padding);
    background: linear-gradient(135deg, #fff8f1, #ffffff);
    overflow: hidden;

}

.wrong-image img {
    height: 400px;
    object-fit: cover;
}

/* Floating Shapes */
.floating-shapes span {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 122, 0, 0.08);
    border-radius: 50%;
    animation: float 6s infinite ease-in-out;
}

.floating-shapes span:nth-child(1) {
    top: 20%;
    left: 10%;
}

.floating-shapes span:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.floating-shapes span:nth-child(3) {
    bottom: 15%;
    left: 40%;
    animation-delay: 4s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Left Content */
.impact-content h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 15px;
    padding-top: 35px;
}

@media(max-width:500px) {
    .impact-content h2 {
        font-size: 30px;
    }
}

.impact-content p {
    color: #666;
    margin-bottom: 30px;
}

.impact-card {
    background: #fff;
    padding: 20px;
    border-radius: 16px;
    margin-bottom: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.impact-card:hover {
    transform: translateY(-5px);
}

/* Progress */
.progress-bar {
    height: 8px;
    background: #f1f1f1;
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, #ff7a00, #ffb347);
    border-radius: 10px;
    transition: width 2s ease;
}

/* Counter Circle */
.circle-progress {
    position: relative;
    display: inline-block;
}

.circle-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.circle-text h3 {
    font-size: 32px;
    font-weight: 700;
}

/* Scroll Animations */
.animate-left,
.animate-right {
    opacity: 0;
    transition: 1s ease;
}

.animate-left {
    transform: translateX(-50px);
}

.animate-right {
    transform: translateX(50px);
}

.animate-left.show,
.animate-right.show {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive */
@media (max-width: 992px) {
    .impact-content {
        text-align: center;
        margin-bottom: 50px;
    }
}




/* ================= DONATION TRANSPARENCY SECTION ================= */

.donation-transparency-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc, #eef2f7);
}

/* Badge */
.transparency-badge {
    display: inline-block;
   background-color: var(--active-color);
    color: #fff;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.donation-transparency-section h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
}

.transparency-desc {
    color: #555;
    font-size: 16px;
    line-height: 1.7;
}

/* Progress Items */
.progress-item {
    margin-bottom: 30px;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.progress-bar-wrapper {
    width: 100%;
    height: 10px;
    background: #e5e7eb;
    border-radius: 50px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    width: 0;
   background-color: var(--active-color);
    border-radius: 50px;
    transition: width 1.5s ease-in-out;
}

/* Animation Base */
.animate-left,
.animate-right {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.animate-left.show,
.animate-right.show {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
    .donation-transparency-section {
        padding: 70px 0;
        text-align: center;
    }

    .donation-transparency-section h2 {
        font-size: 30px;
    }

    .progress-label {
        font-size: 14px;
    }
}


/* ================= DONATION SECTION ================= */
.donate-banner {
    background-image: url(../images/IMG-20260221-WA0007.webp) !important;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 60vh;
    object-fit: cover !important;
    position: relative;

}

.donate-banner::after {
    position: absolute;
    content: "";
    inset: 0;
    background-color: #33333364;

}

.donate-banner .donate-bg-content {
    text-align: center;
    padding: 180px 0px;
    position: relative !important;
    z-index: 80 !important;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.donate-banner .tagline{
    color: var(--white);
    font-size: 25px;
    font-weight: 600;
}
.donate-bg-content .tagline span{
    color: #54c3ff !important;
}
.donate-banner .short-para{
    color: var(--border-color);
    max-width: 600px;
 
}

.donate-banner .donate-bg-content h1 {
    color: var(--light-yellow);
    font-size: 55px !important;
}

.donate-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #fff6e5, #ffffff);
}

.donate-wrapper {
    background: #fff;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.donate-title {
    font-size: 42px;
    font-weight: 700;
}

.donate-subtitle {
    color: #666;
    margin-bottom: 30px;
}

/* Amount Buttons */
.donation-amounts {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.amount-btn {
    padding: 12px 28px;
    border-radius: 30px;
    border: 2px solid #ff7a00;
    background: transparent;
    font-weight: 600;
    transition: 0.3s;
    cursor: pointer;
}

.amount-btn.active,
.amount-btn:hover {
    background: linear-gradient(135deg, #ff7a00, #ffb347);
    color: #fff;
}

/* Custom Amount */
.custom-amount input {
    width: 100%;
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid #ddd;
}

/* Form Card */
.donation-form-card {
    background: #f9fafc;
    padding: 40px;
    border-radius: 16px;
}

.donation-form-card .form-control {
    padding: 12px;
    border-radius: 8px;
}

/* Payment */
.payment-options {
    display: flex;
    gap: 20px;
    margin-top: 8px;
}

.payment-options label {
    cursor: pointer;
}

/* Main Button */
.donate-btn-main {
    padding: 14px;
    font-weight: 600;
    font-size: 16px;
}



/* Responsive */
@media (max-width: 992px) {
    .donate-wrapper {
        padding: 30px;
    }

    .hero-banner p {
        padding: 0px;
    }

    .decktop-header {
        display: none;
    }

    .responsive-header {
        display: block;
    }
}

@media(max-width:400px) {
    .hero-banner h1 {
        font-size: 25px;
    }
}


.top-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9000;
}

.main-header {
    position: fixed;
    top: 40px;
    /* exact height of top-header */
    width: 100%;
    z-index: 9999;
    background: #fff;
}

/* Push body down */
body {
    padding-top: 120px;

}

.hero-banner .carousel-caption {
    top: 59%;
    right: 8%;
}

.hero-banner h1 {
    padding-bottom: 0px !important;

}

.nav-link.active {
    color: var(--active-color) !important;
    font-weight: 600;
    position: relative;
}


/* Optional underline animation */
.nav-link.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 2px;
    background: var(--active-color);
}


.btn-primary-theme:hover,
.btn-blue:hover,
.btn-outline-blue:hover {
    color: var(--white) !important;
    transition: 0.3s ease;
    background-color: var(--active-color);
}



.animate-left,
.animate-right,
.animate-up {
    opacity: 0;
    transform: translateX(60px);
    /* default */
    transition: all 0.8s ease;
}

.animate-left {
    transform: translateX(-80px);
}

.animate-right {
    transform: translateX(80px);
}

.animate-up {
    transform: translateY(80px);
}

.animate-left.show,
.animate-right.show,
.animate-up.show {
    opacity: 1;
    transform: translate(0, 0);
}
/* ================= LIGHTBOX PROFESSIONAL ================= */

#lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  display: none;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 9999;
  animation: fadeIn 0.3s ease;
}

#lightbox.active {
  display: flex;
}

#lightbox img {
  max-width: 90%;
  max-height: 80vh;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  animation: zoomIn 0.3s ease;
}

@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}

@keyframes zoomIn {
  from {transform: scale(0.85);}
  to {transform: scale(1);}
}

#lightboxClose {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 35px;
  color: white;
  cursor: pointer;
}

#lightboxPrev,
#lightboxNext {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 40px;
  color: white;
  background: transparent;
  border: none;
  cursor: pointer;
}

#lightboxPrev { left: 40px; }
#lightboxNext { right: 40px; }

#lightboxCounter {
  color: white;
  margin-top: 15px;
  font-size: 14px;
}
.gallery-item .overlay {
  pointer-events: none;
}
  .benefit-section {
  background: #f8f9fb;
}

.toggle-wrapper {
  display: inline-flex;
  background: #e9ecef;
  border-radius: 50px;
  padding: 4px;
}

.toggle-btn {
  padding: 6px 18px;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
  color: #555;
}

.toggle-btn.active {
  background: #4e89ae;
  color: #fff;
}

.small-toggle .toggle-btn {
  padding: 4px 14px;
  font-size: 14px;
}

.tax-fields {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
}

.tax-fields.show {
  max-height: 200px;
  margin-top: 10px;
}
          /* Match image height with form card */
.donation-image-wrapper {
  height: 295px; /* Adjust if needed to match form height */
  width: 100%;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.donation-image {
  width: 100%;
z-index: 9999;
    background: #fff;
}

/* Push body down */
body {
    padding-top: 120px;

}

.hero-banner .carousel-caption {
    top: 59%;
    right: 8%;
}

.hero-banner h1 {
    padding-bottom: 0px !important;

}

.nav-link.active {
    color: var(--active-color) !important;
    font-weight: 600;
    position: relative;
}


/* Optional underline animation */
.nav-link.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 2px;
    background: var(--active-color);
}


.btn-primary-theme:hover,
.btn-blue:hover,
.btn-outline-blue:hover {
    color: var(--white) !important;
    transition: 0.3s ease;
    background-color: var(--active-color);
}



.animate-left,
.animate-right,
.animate-up {
    opacity: 0;
    transform: translateX(60px);
    /* default */
    transition: all 0.8s ease;
}

.animate-left {
    transform: translateX(-80px);
}

.animate-right {
    transform: translateX(80px);
}

.animate-up {
    transform: translateY(80px);
}

.animate-left.show,
.animate-right.show,
.animate-up.show {
    opacity: 1;
    transform: translate(0, 0);
}
/* ================= LIGHTBOX PROFESSIONAL ================= */

#lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  display: none;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 9999;
  animation: fadeIn 0.3s ease;
}

#lightbox.active {
  display: flex;
}

#lightbox img {
  max-width: 90%;
  max-height: 80vh;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  animation: zoomIn 0.3s ease;
}

@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}

@keyframes zoomIn {
  from {transform: scale(0.85);}
  to {transform: scale(1);}
}

#lightboxClose {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 35px;
  color: white;
  cursor: pointer;
}

#lightboxPrev,
#lightboxNext {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 40px;
  color: white;
  background: transparent;
  border: none;
  cursor: pointer;
}

#lightboxPrev { left: 40px; }
#lightboxNext { right: 40px; }

#lightboxCounter {
  color: white;
  margin-top: 15px;
  font-size: 14px;
}
.gallery-item .overlay {
  pointer-events: none;
}
  .benefit-section {
  background: #f8f9fb;
}

.toggle-wrapper {
  display: inline-flex;
  background: #e9ecef;
  border-radius: 50px;
  padding: 4px;
}

.toggle-btn {
  padding: 6px 18px;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
  color: #555;
}

.toggle-btn.active {
  background: #4e89ae;
  color: #fff;
}

.small-toggle .toggle-btn {
  padding: 4px 14px;
  font-size: 14px;
}

.tax-fields {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
}

.tax-fields.show {
  max-height: 200px;
  margin-top: 10px;
}
          /* Match image height with form card */
.donation-image-wrapper {
  height: 295px; /* Adjust if needed to match form height */
  width: 100%;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.donation-image {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Crops nicely without distortion */
  transition: transform 0.4s ease;
}

.donation-image-container:hover .donation-image {
  transform: scale(1.05);
}

.success-modal-icon { font-size: 50px; }
.hide-loader { opacity: 0; visibility: hidden; transition: 0.5s; }