/* ========================================================
   BGC FOUNDATION HERO SECTION STYLING (#000000 & #ed2227)
   ======================================================== */

.bgc-hero-animated-section {
    position: relative;
    min-height: 85vh;
    background-color: #0A0A0A;
    overflow: hidden;
    padding: 80px 0;
}

/* 1. Background Image with Slow Breathing Zoom Animation */
.bgc-hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Note: Agar CSS file css/pages folder me hai to ../../images use karein */
    background-image: url('../../images/bcgfoundation/DS-2.jpg'), url('../../images/bcgdoundation.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 1;
    animation: bgcHeroZoom 22s infinite alternate ease-in-out;
}

@keyframes bgcHeroZoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.09);
    }
}

/* 2. Multi-Layer Dark Gradient Overlay */
.bgc-hero-dark-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(5, 5, 5, 0.72) 0%,
        rgba(10, 10, 10, 0.88) 60%,
        rgba(0, 0, 0, 0.96) 100%
    );
    z-index: 2;
}

/* 3. Ambient Red Radial Glow */
.bgc-ambient-red-glow {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 650px;
    height: 400px;
    background: radial-gradient(circle, rgba(237, 34, 39, 0.25) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
    z-index: 2;
}

/* 4. Typography & Badge */
.bgc-pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 7px 22px;
    border-radius: 50px;
    border: 1px solid rgba(237, 34, 39, 0.45);
}

.bgc-pill-badge .badge-dot {
    width: 8px;
    height: 8px;
    background-color: #ed2227;
    border-radius: 50%;
    box-shadow: 0 0 10px #ed2227;
}

.bgc-pill-badge .badge-text {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #FFFFFF;
}

.bgc-hero-main-title {
    font-size: clamp(32px, 4.5vw, 54px);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.5px;
    color: #FFFFFF;
}

.text-gradient-red {
    background: linear-gradient(135deg, #FF5257 0%, #ed2227 60%, #990B0F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #ed2227;
    display: inline-block;
}

.text-red {
    color: #ed2227 !important;
}

.bgc-hero-sub-text {
    font-size: 16px;
    line-height: 1.75;
}

.max-w-750 {
    max-width: 750px;
}

/* 5. Buttons */
.btn-bgc-support {
    background: linear-gradient(135deg, #ed2227 0%, #990B0F 100%);
    color: #FFFFFF !important;
    font-size: 15px;
    font-weight: 700;
    padding: 13px 30px;
    border-radius: 50px;
    border: none;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 8px 25px rgba(237, 34, 39, 0.4);
    transition: all 0.35s ease;
    text-decoration: none;
}

.btn-bgc-support:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(237, 34, 39, 0.6);
    background: linear-gradient(135deg, #FF5257 0%, #ed2227 100%);
}

.btn-bgc-outline {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    color: #FFFFFF !important;
    font-size: 15px;
    font-weight: 600;
    padding: 13px 30px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.35s ease;
    text-decoration: none;
}

.btn-bgc-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #FFFFFF;
    transform: translateY(-2px);
}

/* 6. Impact Numbers Counter Bar */
.bgc-hero-impact-bar {
    background: rgba(18, 18, 18, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.bgc-stat-box .stat-number {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.bgc-stat-box .stat-label {
    font-size: 12.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.15);
}

/* 7. Mobile Responsive Settings */
@media (max-width: 767.98px) {
    .bgc-hero-animated-section {
        padding: 40px 0 !important;
        min-height: auto;
    }

    .bgc-hero-main-title {
        font-size: 28px;
    }

    .bgc-hero-sub-text {
        font-size: 14px;
    }

    .bgc-stat-box {
        width: 100%;
        text-align: center;
    }

    .bgc-stat-box .stat-number {
        font-size: 26px;
    }

    .btn-bgc-support,
    .btn-bgc-outline {
        width: 100%;
        justify-content: center;
    }
}