
    .hero-section {
        background: linear-gradient(135deg, #fff5f7 0%, #fff 100%);
        padding: 6rem 0;
        position: relative;
        overflow: hidden;
    }

    .hero-section p.lead:first-of-type {
    width: 100%;
    max-width: 1000px;
    overflow: visible;
    text-align: left;
    margin-bottom: 40px !important;
}

/* Ensure it's 1000px only when the screen is wide enough */
@media (min-width: 1024px) {
    .hero-section p.lead:first-of-type {
        width: 1000px;
    }
}

 

    .stats-card {
        border-radius: 15px;
        transition: transform 0.3s ease;
        border: none;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .stats-card:hover {
        transform: translateY(-5px);
    }

    .stats-number {
        font-size: 2.5rem;
        font-weight: bold;
        color: #e83e8c;
        margin-bottom: 0.5rem;
    }

    .stats-label {
        color: #e83e8c;
        text-transform: uppercase;
        font-size: 0.9rem;
        font-weight: 600;
        letter-spacing: 1px;
    }

    .stats-description {
        color: #6c757d;
        font-size: 0.9rem;
        margin-top: 1rem;
    }

    .animated-count {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.5s ease, transform 0.5s ease;
    }

    .animated-count.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .hero-image {
        max-width: 70%;
        height: auto;
        margin-left: 20px;
    }

    .mission-image-wrapper {
        position: relative;
        overflow: visible;
        border-radius: 8px;
        transition: all 0.5s ease;
        display: block;
        clear: both;
        width: 100%;
        text-align: center;
        margin-top: 200px !important;
    }

    .mission-image-wrapper img {
        position: relative;
        z-index: 2;
        transition: all 0.5s ease;
        border-radius: 8px;
        box-shadow: 0 0 5px 0 rgba(224, 50, 114, 0.3);
        max-width: 70%;
        margin: 0 auto;
    }

    .mission-image-wrapper:hover img {
        transform: scale(1.01);
        box-shadow: 0 0 30px 10px rgba(224, 50, 114, 0.4) !important;
    }

    /* Responsive adjustments */
    @media screen and (max-width: 1200px) {
        .mission-image-wrapper {
            margin-top: 150px !important;
        }

        .mission-image-wrapper img {
            max-width: 80%;
        }
    }

    @media screen and (max-width: 768px) {
        .hero-image {
            max-width: 85%;
            margin-left: 10px;
        }

        .mission-image-wrapper {
            margin-top: 100px !important;
        }

        .mission-image-wrapper img {
            max-width: 90%;
        }
    }

    @media screen and (max-width: 480px) {
        .hero-image {
            max-width: 100%;
            margin-left: 0;
        }

        .mission-image-wrapper {
            margin-top: 80px !important;
        }

        .mission-image-wrapper img {
            max-width: 95%;
        }

        .mission-image-wrapper:hover img {
            transform: scale(1.005);
            /* Smaller scale effect on mobile */
            box-shadow: 0 0 15px 5px rgba(224, 50, 114, 0.4) !important;
        }
    }

    .feature-icon {
        font-size: 2rem;
        color: #e83e8c;
        margin-bottom: 1rem;
    }

    .section-heading {
        position: relative;
        margin-bottom: 3rem;
    }

    .section-heading:after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 50px;
        height: 3px;
        background-color: #e83e8c;
    }

    /* Mission and Values*/
    .mission-values-section {
        background-color: #000;
        color: #fff;
        padding: 6rem 0;
        position: relative;
    }

    .mission-values-card {
        position: relative;
        padding: 2rem;
        margin-bottom: 3rem;
        border-left: 4px solid #e83e8c;
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
        border-radius: 0 15px 15px 0;
        transition: transform 0.3s ease;
    }

    .mission-values-card:hover {
        transform: translateX(10px);
    }

    .section-icon {
        color: #e83e8c;
        font-size: 2rem;
        margin-bottom: 1rem;
        display: inline-block;
    }

    .section-title {
        font-size: 2.5rem;
        font-weight: bold;
        margin-bottom: 1.5rem;
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .highlight-text {
        color: #e83e8c;
    }

    .content-block {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.5s ease, transform 0.5s ease;
    }

    .content-block.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .value-item {
        margin-bottom: 1.5rem;
        padding: 1rem;
        background: rgba(255, 255, 255, 0.03);
        border-radius: 10px;
        transition: background-color 0.3s ease;
    }

    .value-item:hover {
        background: rgba(255, 255, 255, 0.07);
    }

    .mission-statement {
        font-size: 1.2rem;
        line-height: 1.8;
        margin-bottom: 2rem;
    }

    .decorative-line {
        position: absolute;
        top: 0;
        right: 0;
        height: 100%;
        width: 1px;
        background: linear-gradient(to bottom, transparent, #e83e8c, transparent);
        opacity: 0.3;
    }


    /*Volunteer Section*/
    .volunteers-section {
        background: linear-gradient(135deg, #fff5f7 0%, #ffe5ee 100%);
        padding: 6rem 0;
        position: relative;
    }

    .volunteers-section .section-title {
        font-size: 2.5rem;
        font-weight: bold;
        margin-bottom: 2rem;
        /* color: #fff; */
        display: block;
    }

    .volunteer-card {
        background: white;
        border-radius: 20px;
        padding: 2rem;
        height: 90%;
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
        overflow: hidden;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        margin-bottom: 2rem;
    }

    .volunteer-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 30px rgba(232, 62, 140, 0.2);
    }

    .volunteer-image {
        width: 120px;
        height: 120px;
        border-radius: 60px;
        object-fit: cover;
        margin-bottom: 1rem;
        border: 3px solid #fff;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .volunteer-name {
        font-size: 1.25rem;
        font-weight: 600;
        color: #000;
        margin-bottom: 0.5rem;
        text-align: center
    }

    .volunteer-role {
        color: #e83e8c;
        font-weight: 500;
        font-size: 0.9rem;
        text-align: center;
        margin-bottom: 0.5rem;
    }

    .volunteer-social {
        margin-top: 1rem;
    }

    .social-icon {
        color: #e83e8c;
        margin: 0 0.5rem;
        transition: transform 0.3s ease;
    }

    .social-icon:hover {
        transform: scale(1.2);
    }

    .join-button {
        background: #000;
        color: #fff;
        border: none;
        padding: 1rem 2.5rem;
        border-radius: 30px;
        font-weight: 600;
        transition: all 0.3s ease;
        margin-top: 2rem;
    }

    .join-button:hover {
        background: #e83e8c;
        transform: translateY(-2px);
    }
