
    /* How You Can Help Section */
    .how-you-can-help {
        background: linear-gradient(135deg, #3498db, #2ecc71);
        /* Gradient background for a modern feel */
        padding: 40px 0;
        color: white;
        /* margin-top: -150px; */
        /* z-index: 1000; */
        position: relative;
        width: 100%;
    }

    .how-you-can-help__inner {
        background: #ffffff;
        border-radius: 15px;
        padding: 40px;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    }

    .how-you-can-help__title {
        font-size: 32px;
        font-weight: 700;
        margin-bottom: 20px;
        color: #333;
    }

    .how-you-can-help__subtitle {
        font-size: 18px;
        margin-bottom: 30px;
        color: #555;
    }

    .how-you-can-help__details {
        list-style: none;
        padding: 0;
        margin-bottom: 20px;
    }

    .how-you-can-help__details li {
        font-size: 16px;
        margin-bottom: 15px;
        display: flex;
        align-items: center;
        color: #333;
    }

    .how-you-can-help__details li p {
        margin: 0;
        display: flex;
        align-items: center;
    }

    .how-you-can-help__details li span {
        font-size: 20px;
        margin-right: 10px;
        color: #3498db;
        /* Match the theme */
    }

    .how-you-can-help__left {
        padding-right: 30px;
    }

    .how-you-can-help__right {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .donation-box {
        padding: 40px;
        background-color: #f4f4f4;
        border-radius: 15px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        text-align: center;
        max-width: 90%;
        margin: auto;
    }

    .donation-title {
        font-size: 28px;
        font-weight: 700;
        margin-bottom: 20px;
        color: #333;
    }

    .donation-description {
        font-size: 16px;
        color: #555;
        margin-bottom: 25px;
    }

    .donation-box .btn-light {
        background-color: #fff;
        color: #3498db;
        border: 2px solid #3498db;
        padding: 12px 30px;
        font-size: 16px;
        border-radius: 5px;
        transition: all 0.3s ease;
    }

    .donation-box .btn-light:hover {
        background-color: #3498db;
        color: #fff;
    }

    .btn-primary {
        background-color: #3498db;
        color: #fff;
        padding: 12px 30px;
        font-size: 16px;
        border-radius: 5px;
        display: inline-block;
        transition: all 0.3s ease;
    }

    .btn-primary:hover {
        background-color: #2980b9;
    }

    /* Animation */
    .wow.fadeInUp {
        opacity: 0;
        transform: translateY(30px);
        animation: fadeInUp 1s forwards;
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }


    /* HERO BANNER */
    .hero-banner {
        position: relative;
        height: 100vh;
        min-height: 700px;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, #1a2a6c, #b21f1f, #1a2a6c);
        background-size: 400% 400%;
        animation: gradientBG 15s ease infinite;
    }

    @keyframes gradientBG {
        0% {
            background-position: 0% 50%;
        }

        50% {
            background-position: 100% 50%;
        }

        100% {
            background-position: 0% 50%;
        }
    }

    .hero-content {
        position: relative;
        z-index: 10;
        max-width: 1200px;
        width: 90%;
        padding: 2rem;
        text-align: center;
        color: white;
    }

    .hero-content h1 {
        font-family: 'Playfair Display', serif;
        font-size: 4.5rem;
        font-weight: 800;
        line-height: 1.1;
        margin-bottom: 1.5rem;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        animation: fadeInUp 1s ease-out;
    }

    .hero-content h1 span {
        color: #ffd700;
        position: relative;
        display: inline-block;
    }

    .hero-content h1 span:after {
        content: '';
        position: absolute;
        bottom: 5px;
        left: 0;
        width: 100%;
        height: 4px;
        background: rgba(255, 215, 0, 0.6);
        border-radius: 2px;
    }

    .hero-content p {
        font-size: 1.4rem;
        max-width: 700px;
        margin: 0 auto 2.5rem;
        line-height: 1.7;
        font-weight: 300;
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
        animation: fadeInUp 1s ease-out 0.3s both;
    }

    .cta-buttons {
        display: flex;
        justify-content: center;
        gap: 1.5rem;
        flex-wrap: wrap;
        animation: fadeInUp 1s ease-out 0.5s both;
    }

    .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 1rem 2.5rem;
        font-size: 1.2rem;
        font-weight: 500;
        border-radius: 50px;
        text-decoration: none;
        transition: all 0.3s ease;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        position: relative;
        overflow: hidden;
        z-index: 1;
    }

    .btn:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(255, 255, 255, 0.1);
        z-index: -1;
        transition: transform 0.5s ease;
        transform: scaleX(0);
        transform-origin: right;
    }

    .btn:hover:before {
        transform: scaleX(1);
        transform-origin: left;
    }

    .btn-primary {
        background: #ff6b6b;
        color: white;
        border: 2px solid #ff6b6b;
    }

    .btn-secondary {
        background: transparent;
        color: white;
        border: 2px solid white;
    }

    .btn:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    }

    .floating-elements {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
    }

    .floating-element {
        position: absolute;
        animation: float 15s infinite linear;
        opacity: 0.7;
        z-index: 2;
    }

    .element-1 {
        top: 10%;
        left: 5%;
        width: 60px;
        height: 60px;
        background: url('https://img.icons8.com/ios-filled/100/ffffff/hearts.png') center/contain no-repeat;
        animation-delay: 0s;
    }

    .element-2 {
        top: 25%;
        right: 8%;
        width: 45px;
        height: 45px;
        background: url('https://img.icons8.com/ios-filled/100/ffffff/star.png') center/contain no-repeat;
        animation-delay: -3s;
    }

    .element-3 {
        bottom: 20%;
        left: 12%;
        width: 50px;
        height: 50px;
        background: url('https://img.icons8.com/ios-filled/100/ffffff/heart-balloon.png') center/contain no-repeat;
        animation-delay: -6s;
    }

    .element-4 {
        bottom: 15%;
        right: 15%;
        width: 40px;
        height: 40px;
        background: url('https://img.icons8.com/ios-filled/100/ffffff/children.png') center/contain no-repeat;
        animation-delay: -9s;
    }

    @keyframes float {
        0% {
            transform: translateY(0) rotate(0deg);
        }

        25% {
            transform: translateY(-20px) rotate(5deg);
        }

        50% {
            transform: translateY(0) rotate(0deg);
        }

        75% {
            transform: translateY(20px) rotate(-5deg);
        }

        100% {
            transform: translateY(0) rotate(0deg);
        }
    }

    .pulse {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        z-index: 0;
    }

    .pulse-circle {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100vmin;
        height: 100vmin;
        border-radius: 50%;
        border: 2px solid rgba(255, 255, 255, 0.05);
        animation: pulse 10s infinite ease-in-out;
    }

    .pulse-circle:nth-child(2) {
        animation-delay: -3s;
    }

    .pulse-circle:nth-child(3) {
        animation-delay: -6s;
    }

    @keyframes pulse {
        0% {
            transform: translate(-50%, -50%) scale(0.5);
            opacity: 0;
        }

        50% {
            opacity: 0.2;
        }

        100% {
            transform: translate(-50%, -50%) scale(1.5);
            opacity: 0;
        }
    }

    .statistics {
        display: flex;
        justify-content: center;
        gap: 3rem;
        margin-top: 3rem;
        flex-wrap: wrap;
        animation: fadeInUp 1s ease-out 0.7s both;
    }

    .stat-item {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        padding: 1.5rem;
        border-radius: 15px;
        min-width: 180px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .stat-number {
        font-size: 2.5rem;
        font-weight: 700;
        color: #ffd700;
        margin-bottom: 0.5rem;
    }

    .stat-label {
        font-size: 1.1rem;
        font-weight: 300;
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(50px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @media (max-width: 992px) {
        .hero-content h1 {
            font-size: 3.5rem;
        }

        .hero-content p {
            font-size: 1.2rem;
        }

        .statistics {
            gap: 1.5rem;
        }
    }

    @media (max-width: 768px) {
        .hero-content h1 {
            font-size: 2.8rem;
        }

        .hero-content p {
            font-size: 1.1rem;
        }

        .btn {
            padding: 0.8rem 1.8rem;
            font-size: 1.1rem;
        }

        .statistics {
            flex-direction: column;
            align-items: center;
            gap: 1rem;
        }

        .stat-item {
            width: 80%;
        }
    }

    @media (max-width: 480px) {
        .hero-content h1 {
            font-size: 2.2rem;
        }

        .cta-buttons {
            flex-direction: column;
            align-items: center;
        }
    }



    /* SUPPOR US STYLE */



    .support-section {
        position: relative;
        max-width: 1200px;
        width: 100%;
        background: #fff;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
        display: flex;
        flex-wrap: wrap;
        margin: 20px;
    }

    .support-content {
        flex: 1;
        min-width: 300px;
        padding: 60px;
        position: relative;
        z-index: 2;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 250, 240, 0.95) 100%);
    }

    .support-image {
        flex: 1;
        min-width: 300px;
        background: linear-gradient(rgba(26, 42, 108, 0.8), rgba(178, 31, 31, 0.8)), url('https://images.unsplash.com/photo-1543269865-cbf427effbad?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');
        background-size: cover;
        background-position: center;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 40px;
    }

    .section-title {
        font-family: 'Playfair Display', serif;
        font-size: 2.8rem;
        font-weight: 800;
        color: #1a2a6c;
        margin-bottom: 20px;
        position: relative;
    }

    .section-title:after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 80px;
        height: 4px;
        background: #ff6b6b;
        border-radius: 2px;
    }

    .section-description {
        font-size: 1.1rem;
        line-height: 1.8;
        color: #555;
        margin-bottom: 35px;
    }

    .donation-form {
        margin-top: 30px;
    }

    .donation-options {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 15px;
        margin-bottom: 25px;
    }

    .donation-option {
        position: relative;
    }

    .donation-option input {
        position: absolute;
        opacity: 0;
        width: 0;
        height: 0;
    }

    .donation-option label {
        display: block;
        padding: 15px 10px;
        background: #f8f9fa;
        border: 2px solid #e9ecef;
        border-radius: 10px;
        text-align: center;
        font-weight: 600;
        color: #495057;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    }

    .donation-option label:hover {
        transform: translateY(-3px);
        border-color: #ff6b6b;
        box-shadow: 0 6px 12px rgba(255, 107, 107, 0.15);
    }

    .donation-option input:checked+label {
        background: #ff6b6b;
        color: white;
        border-color: #ff6b6b;
        box-shadow: 0 6px 12px rgba(255, 107, 107, 0.25);
    }

    .custom-amount {
        position: relative;
        margin-bottom: 30px;
    }

    .custom-amount input {
        width: 100%;
        padding: 18px 20px 18px 50px;
        border: 2px solid #e9ecef;
        border-radius: 12px;
        font-size: 1.1rem;
        font-weight: 500;
        color: #495057;
        transition: all 0.3s ease;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    }

    .custom-amount input:focus {
        outline: none;
        border-color: #ff6b6b;
        box-shadow: 0 6px 12px rgba(255, 107, 107, 0.15);
    }

    .currency-icon {
        position: absolute;
        left: 20px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 1.4rem;
        color: #ff6b6b;
    }

    .donate-button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        padding: 18px;
        background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
        color: white;
        border: none;
        border-radius: 12px;
        font-size: 1.2rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 8px 20px rgba(255, 107, 107, 0.3);
        position: relative;
        overflow: hidden;
        z-index: 1;
    }

    .donate-button:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, #ff8e8e, #ff6b6b);
        z-index: -1;
        transition: transform 0.5s ease;
        transform: scaleX(0);
        transform-origin: right;
    }

    .donate-button:hover:before {
        transform: scaleX(1);
        transform-origin: left;
    }

    .donate-button:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 25px rgba(255, 107, 107, 0.4);
    }

    .donate-button i {
        margin-right: 10px;
        font-size: 1.4rem;
    }

    .impact-stats {
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(10px);
        border-radius: 20px;
        padding: 40px 30px;
        text-align: center;
        max-width: 500px;
        margin: 0 auto;
        border: 1px solid rgba(255, 255, 255, 0.2);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .impact-title {
        font-family: 'Playfair Display', serif;
        font-size: 2.5rem;
        font-weight: 700;
        color: white;
        margin-bottom: 25px;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    }

    .stats-container {
        display: flex;
        justify-content: space-around;
        flex-wrap: wrap;
        gap: 20px;
    }

    .stat-item {
        flex: 1;
        min-width: 120px;
        padding: 20px 15px;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 15px;
        backdrop-filter: blur(5px);
    }

    .stat-number {
        font-size: 2.5rem;
        font-weight: 700;
        color: #ffd700;
        margin-bottom: 5px;
    }

    .stat-label {
        font-size: 1rem;
        color: white;
        font-weight: 500;
    }

    .impact-description {
        font-size: 1.1rem;
        color: rgba(255, 255, 255, 0.9);
        margin-top: 25px;
        font-style: italic;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    }

    .decoration {
        position: absolute;
        z-index: 1;
        pointer-events: none;
    }

    .heart {
        top: 20px;
        right: 30px;
        font-size: 2rem;
        color: rgba(255, 107, 107, 0.4);
        animation: float 6s infinite ease-in-out;
    }

    .star {
        bottom: 40px;
        left: 30px;
        font-size: 1.8rem;
        color: rgba(255, 215, 0, 0.4);
        animation: float 8s infinite ease-in-out 1s;
    }

    .circle {
        width: 80px;
        height: 80px;
        border: 2px solid rgba(26, 42, 108, 0.1);
        border-radius: 50%;
        top: 50%;
        right: -40px;
        animation: pulse 8s infinite ease-in-out;
    }

    @keyframes float {
        0% {
            transform: translateY(0) rotate(0deg);
        }

        50% {
            transform: translateY(-20px) rotate(10deg);
        }

        100% {
            transform: translateY(0) rotate(0deg);
        }
    }

    @keyframes pulse {
        0% {
            transform: scale(0.8);
            opacity: 0.3;
        }

        50% {
            transform: scale(1.1);
            opacity: 0.6;
        }

        100% {
            transform: scale(0.8);
            opacity: 0.3;
        }
    }

    @media (max-width: 992px) {
        .support-section {
            flex-direction: column;
        }

        .support-content,
        .support-image {
            min-width: 100%;
        }

        .section-title {
            font-size: 2.4rem;
        }
    }

    @media (max-width: 576px) {
        .support-content {
            padding: 40px 25px;
        }

        .section-title {
            font-size: 2rem;
        }

        .donation-options {
            grid-template-columns: repeat(2, 1fr);
        }

        .impact-stats {
            padding: 30px 20px;
        }

        .impact-title {
            font-size: 2rem;
        }
    }



    /* ABOUT SEXTION DESIGN */


    .about-section {
        position: relative;
        max-width: 1200px;
        width: 100%;
        background: white;
        border-radius: 25px;
        overflow: hidden;
        box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.2);
        padding: 0px 40px;
        padding-bottom: 50px;
        display: flex;
        flex-wrap: wrap;
        gap: 40px;
        margin: 20px;
    }

    .about-images {
        flex: 1;
        min-width: 300px;
        position: relative;
        height: 600px;
        border-radius: 20px;
        overflow: hidden;
    }

    .main-image {
        position: absolute;
        width: 85%;
        height: 85%;
        top: 0;
        left: 0;
        background: url('https://images.unsplash.com/photo-1488521787991-ed7bbaae773c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80') center/cover no-repeat;
        border-radius: 20px;
        z-index: 2;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    }

    .secondary-image {
        position: absolute;
        width: 70%;
        height: 60%;
        bottom: 0;
        right: 0;
        background: url('https://images.unsplash.com/photo-1543269865-0ca6408b3b45?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80') center/cover no-repeat;
        border-radius: 20px;
        z-index: 1;
        border: 8px solid white;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    }

    .image-decoration {
        position: absolute;
        width: 200px;
        height: 200px;
        background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
        border-radius: 50%;
        top: -50px;
        right: -50px;
        z-index: 3;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 4rem;
        box-shadow: 0 15px 30px rgba(255, 107, 107, 0.3);
        animation: pulse 3s infinite ease-in-out;
    }

    @keyframes pulse {
        0% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.05);
        }

        100% {
            transform: scale(1);
        }
    }

    .about-content {
        flex: 1;
        min-width: 300px;
        padding: 20px 0;
        position: relative;
    }

    .section-tagline {
        display: inline-block;
        background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
        color: white;
        padding: 8px 20px;
        border-radius: 50px;
        font-size: 0.9rem;
        font-weight: 600;
        letter-spacing: 1px;
        margin-bottom: 20px;
        box-shadow: 0 5px 15px rgba(255, 107, 107, 0.2);
    }

    .section-title {
        font-family: 'Playfair Display', serif;
        font-size: 3.2rem;
        font-weight: 800;
        color: #1a2a6c;
        line-height: 1.2;
        margin-bottom: 25px;
        position: relative;
    }

    .section-title:after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 100px;
        height: 4px;
        background: #ffd700;
        border-radius: 2px;
    }

    .section-description {
        font-size: 1.1rem;
        line-height: 1.8;
        color: #555;
        margin-bottom: 35px;
    }

    .features-list {
        margin-bottom: 40px;
    }

    .feature-item {
        display: flex;
        gap: 20px;
        margin-bottom: 30px;
        position: relative;
        padding-left: 20px;
    }

    .feature-item:before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 4px;
        background: linear-gradient(to bottom, #ff6b6b, #1a2a6c);
        border-radius: 2px;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, rgba(255, 107, 107, 0.1), rgba(26, 42, 108, 0.1));
        border-radius: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        font-size: 1.8rem;
        color: #ff6b6b;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }

    .feature-text {
        flex: 1;
    }

    .feature-title {
        font-size: 1.3rem;
        font-weight: 600;
        color: #1a2a6c;
        margin-bottom: 8px;
    }

    .feature-description {
        font-size: 1rem;
        color: #666;
        line-height: 1.6;
    }

    .cta-container {
        display: flex;
        flex-wrap: wrap;
        gap: 30px;
        align-items: center;
    }

    .mission-button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 16px 35px;
        background: linear-gradient(135deg, #1a2a6c, #3a4a9c);
        color: white;
        border: none;
        border-radius: 15px;
        font-size: 1.1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 8px 20px rgba(26, 42, 108, 0.3);
        position: relative;
        overflow: hidden;
        z-index: 1;
    }

    .mission-button:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, #3a4a9c, #1a2a6c);
        z-index: -1;
        transition: transform 0.5s ease;
        transform: scaleX(0);
        transform-origin: right;
    }

    .mission-button:hover:before {
        transform: scaleX(1);
        transform-origin: left;
    }

    .mission-button:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 25px rgba(26, 42, 108, 0.4);
    }

    .mission-button i {
        margin-right: 10px;
        font-size: 1.2rem;
    }

    .video-play {
        display: flex;
        align-items: center;
        gap: 15px;
        text-decoration: none;
    }

    .play-button {
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 1.5rem;
        box-shadow: 0 8px 20px rgba(255, 107, 107, 0.3);
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
        z-index: 1;
    }

    .play-button:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(255, 255, 255, 0.2);
        z-index: -1;
        transition: transform 0.5s ease;
        transform: scale(0);
        border-radius: 50%;
    }

    .play-button:hover:before {
        transform: scale(1.5);
        opacity: 0;
    }

    .play-button:hover {
        transform: scale(1.1);
        box-shadow: 0 10px 25px rgba(255, 107, 107, 0.4);
    }

    .video-label {
        font-size: 1.1rem;
        font-weight: 500;
        color: #1a2a6c;
    }

    .decoration {
        position: absolute;
        z-index: 1;
        pointer-events: none;
    }

    .heart {
        bottom: 20px;
        right: 20px;
        font-size: 2.5rem;
        color: rgba(255, 107, 107, 0.2);
        animation: float 6s infinite ease-in-out;
    }

    .circle {
        width: 100px;
        height: 100px;
        border: 2px solid rgba(26, 42, 108, 0.05);
        border-radius: 50%;
        top: 10%;
        left: 5%;
        animation: rotate 25s infinite linear;
    }

    .dots {
        bottom: 10%;
        right: 10%;
        width: 80px;
        height: 80px;
        background: radial-gradient(circle, rgba(26, 42, 108, 0.1) 20%, transparent 20%);
        background-size: 15px 15px;
        opacity: 0.4;
        animation: pulse 5s infinite ease-in-out;
    }

    @keyframes float {
        0% {
            transform: translateY(0) rotate(0deg);
        }

        50% {
            transform: translateY(-20px) rotate(10deg);
        }

        100% {
            transform: translateY(0) rotate(0deg);
        }
    }

    @keyframes rotate {
        0% {
            transform: rotate(0deg);
        }

        100% {
            transform: rotate(360deg);
        }
    }

    @media (max-width: 992px) {
        .about-section {
            flex-direction: column;
        }

        .about-images {
            height: 500px;
        }

        .section-title {
            font-size: 2.6rem;
        }
    }

    @media (max-width: 768px) {
        .about-section {
            padding: 40px 25px;
        }

        .section-title {
            font-size: 2.2rem;
        }

        .about-images {
            height: 400px;
        }

        .image-decoration {
            width: 150px;
            height: 150px;
            top: -30px;
            right: -30px;
            font-size: 3rem;
        }

        .feature-item {
            flex-direction: column;
            gap: 15px;
        }

        .cta-container {
            flex-direction: column;
            align-items: flex-start;
            gap: 20px;
        }
    }

    @media (max-width: 480px) {
        .section-title {
            font-size: 1.8rem;
        }

        .about-images {
            height: 350px;
        }

        .image-decoration {
            width: 120px;
            height: 120px;
            font-size: 2.5rem;
        }

        .feature-icon {
            width: 50px;
            height: 50px;
            font-size: 1.5rem;
        }
    }

    /* HR STYLE */
    .water-hr {
        border: none;
        height: 6px;
        background: linear-gradient(90deg, #00c6ff, #0072ff);
        border-radius: 50px;
        position: relative;
        overflow: hidden;
    }

    .water-hr::before {
        content: "";
        position: absolute;
        top: 0;
        left: -50%;
        width: 200%;
        height: 100%;
        background: rgba(255, 255, 255, 0.4);
        animation: water-wave 3s linear infinite;
    }

    @keyframes water-wave {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(50%);
        }
    }


    /* PROJECT SECTION CSS */
    .projects-section {
        max-width: 1200px;
        width: 100%;
        padding: 60px 20px;
    }

    .section-header {
        text-align: center;
        /*margin-bottom: 60px;*/
        position: relative;
    }

    .section-tagline {
        display: inline-block;
        background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
        color: white;
        padding: 8px 25px;
        border-radius: 50px;
        font-size: 1rem;
        font-weight: 600;
        letter-spacing: 1px;
        margin-bottom: 15px;
        box-shadow: 0 5px 15px rgba(255, 107, 107, 0.2);
        animation: floatTag 4s infinite ease-in-out;
    }

    @keyframes floatTag {
        0% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-8px);
        }

        100% {
            transform: translateY(0);
        }
    }

    .section-title {
        font-family: 'Playfair Display', serif;
        font-size: 3.2rem;
        font-weight: 800;
        color: #1a2a6c;
        line-height: 1.2;
        margin-bottom: 20px;
        position: relative;
    }

    .section-title:after {
        content: '';
        position: absolute;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
        width: 100px;
        height: 4px;
        background: #ffd700;
        border-radius: 2px;
    }

    .projects-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .project-card {
        position: relative;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        height: 500px;
    }

    .project-card.large {
        grid-row: span 2;
        height: auto;
    }

    .project-card.small {
        height: 235px;
    }

    .project-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.8s ease;
        z-index: 1;
    }

    .project-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to top, rgba(26, 42, 108, 0.9), rgba(26, 42, 108, 0.4));
        z-index: 2;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        padding: 30px;
        transition: all 0.5s ease;
    }

    .project-category {
        font-size: 0.9rem;
        font-weight: 600;
        color: #ffd700;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 10px;
        transition: transform 0.5s ease;
    }

    .project-title {
        font-family: 'Playfair Display', serif;
        font-size: 1.8rem;
        font-weight: 700;
        color: white;
        margin-bottom: 20px;
        line-height: 1.3;
        transition: transform 0.5s ease;
    }

    .project-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s ease, opacity 0.5s ease;
        opacity: 0;
    }

    .project-description {
        color: rgba(255, 255, 255, 0.85);
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 25px;
    }

    .project-button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 12px 25px;
        background: transparent;
        color: white;
        border: 2px solid white;
        border-radius: 50px;
        font-size: 1rem;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .project-button i {
        margin-left: 8px;
        transition: transform 0.3s ease;
    }

    .project-card:hover {
        transform: translateY(-15px);
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
    }

    .project-card:hover .project-image {
        transform: scale(1.1);
    }

    .project-card:hover .project-overlay {
        background: linear-gradient(to top, rgba(26, 42, 108, 0.95), rgba(26, 42, 108, 0.6));
    }

    .project-card:hover .project-category,
    .project-card:hover .project-title {
        transform: translateY(-15px);
    }

    .project-card:hover .project-content {
        max-height: 200px;
        opacity: 1;
    }

    .project-card:hover .project-button {
        background: #ff6b6b;
        border-color: #ff6b6b;
    }

    .project-card:hover .project-button i {
        transform: translateX(5px);
    }

    .decoration {
        position: absolute;
        z-index: 1;
        pointer-events: none;
    }

    .heart {
        top: 10%;
        left: 5%;
        font-size: 2rem;
        color: rgba(255, 107, 107, 0.3);
        animation: float 6s infinite ease-in-out;
    }

    .circle {
        width: 80px;
        height: 80px;
        border: 2px solid rgba(255, 215, 0, 0.1);
        border-radius: 50%;
        bottom: 10%;
        right: 5%;
        animation: rotate 25s infinite linear;
    }

    .dots {
        top: 20%;
        right: 8%;
        width: 60px;
        height: 60px;
        background: radial-gradient(circle, rgba(255, 107, 107, 0.2) 20%, transparent 20%);
        background-size: 10px 10px;
        opacity: 0.5;
        animation: pulse 5s infinite ease-in-out;
    }

    @keyframes float {
        0% {
            transform: translateY(0) rotate(0deg);
        }

        50% {
            transform: translateY(-20px) rotate(10deg);
        }

        100% {
            transform: translateY(0) rotate(0deg);
        }
    }

    @keyframes rotate {
        0% {
            transform: rotate(0deg);
        }

        100% {
            transform: rotate(360deg);
        }
    }

    @keyframes pulse {
        0% {
            transform: scale(1);
            opacity: 0.5;
        }

        50% {
            transform: scale(1.1);
            opacity: 0.7;
        }

        100% {
            transform: scale(1);
            opacity: 0.5;
        }
    }

    @media (max-width: 992px) {
        .projects-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .project-card.large {
            grid-row: span 1;
            height: 500px;
        }

        .project-card.small {
            height: 350px;
        }

        .section-title {
            font-size: 2.6rem;
        }
    }

    @media (max-width: 768px) {
        .projects-grid {
            grid-template-columns: 1fr;
        }

        .project-card.large,
        .project-card.small {
            height: 500px;
        }

        .section-title {
            font-size: 2.2rem;
        }
    }

    @media (max-width: 480px) {
        .section-title {
            font-size: 1.8rem;
        }

        .section-tagline {
            font-size: 0.9rem;
            padding: 6px 20px;
        }

        .project-card.large,
        .project-card.small {
            height: 400px;
        }

        .project-overlay {
            padding: 20px;
        }

        .project-title {
            font-size: 1.5rem;
        }
    }

    /* IMPACT SECTION CSS */
    .impact-section {
        max-width: 1200px;
        width: 100%;
        background: white;
        border-radius: 25px;
        overflow: hidden;
        box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.2);
        display: flex;
        flex-wrap: wrap;
        margin: 20px;
        position: relative;
    }

    .impact-visual {
        flex: 1;
        min-width: 300px;
        min-height: 500px;
        background: linear-gradient(rgba(26, 42, 108, 0.85), rgba(178, 31, 31, 0.85)),
            url('https://images.unsplash.com/photo-1591123120675-6f7f1aae0e5b?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1469&q=80') center/cover no-repeat;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 40px;
    }

    .impact-content {
        flex: 1;
        min-width: 300px;
        padding: 60px 40px;
        position: relative;
    }

    .section-tagline {
        display: inline-block;
        background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
        color: white;
        padding: 8px 20px;
        border-radius: 50px;
        font-size: 0.9rem;
        font-weight: 600;
        letter-spacing: 1px;
        margin-bottom: 20px;
        box-shadow: 0 5px 15px rgba(255, 107, 107, 0.2);
    }

    .section-title {
        font-family: 'Playfair Display', serif;
        font-size: 3rem;
        font-weight: 800;
        color: #1a2a6c;
        line-height: 1.2;
        margin-bottom: 25px;
        position: relative;
    }

    .section-title:after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 100px;
        height: 4px;
        background: #ffd700;
        border-radius: 2px;
    }

    .section-description {
        font-size: 1.1rem;
        line-height: 1.8;
        color: #555;
        margin-bottom: 40px;
    }

    .progress-container {
        margin-bottom: 40px;
    }

    .progress-item {
        margin-bottom: 30px;
    }

    .progress-header {
        display: flex;
        justify-content: space-between;
        margin-bottom: 10px;
    }

    .progress-title {
        font-size: 1.2rem;
        font-weight: 600;
        color: #1a2a6c;
    }

    .progress-percent {
        font-size: 1.3rem;
        font-weight: 700;
        color: #ff6b6b;
    }

    .progress-bar {
        width: 100%;
        height: 12px;
        background: #f0f0f0;
        border-radius: 10px;
        overflow: hidden;
        position: relative;
        box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    .progress-fill {
        height: 100%;
        background: linear-gradient(90deg, #ff6b6b, #ff8e8e);
        border-radius: 10px;
        position: relative;
        width: 0;
        transition: width 1.5s ease-in-out;
    }

    .progress-fill:after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        background-size: 200% 100%;
        animation: shine 2s infinite;
        border-radius: 10px;
    }

    @keyframes shine {
        0% {
            background-position: -200% 0;
        }

        100% {
            background-position: 200% 0;
        }
    }

    .impact-button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 16px 35px;
        background: linear-gradient(135deg, #1a2a6c, #3a4a9c);
        color: white;
        border: none;
        border-radius: 15px;
        font-size: 1.1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 8px 20px rgba(26, 42, 108, 0.3);
        position: relative;
        overflow: hidden;
        z-index: 1;
    }

    .impact-button:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, #3a4a9c, #1a2a6c);
        z-index: -1;
        transition: transform 0.5s ease;
        transform: scaleX(0);
        transform-origin: right;
    }

    .impact-button:hover:before {
        transform: scaleX(1);
        transform-origin: left;
    }

    .impact-button:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 25px rgba(26, 42, 108, 0.4);
    }

    .impact-button i {
        margin-right: 10px;
        font-size: 1.2rem;
    }

    .stats-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-top: 30px;
    }

    .stat-card {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(5px);
        border-radius: 15px;
        padding: 20px;
        text-align: center;
        border: 1px solid rgba(255, 255, 255, 0.2);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .stat-number {
        font-size: 2.5rem;
        font-weight: 700;
        color: #ffd700;
        margin-bottom: 5px;
    }

    .stat-label {
        font-size: 1rem;
        color: white;
        font-weight: 500;
    }

    .decoration {
        position: absolute;
        z-index: 1;
        pointer-events: none;
    }

    .heart {
        top: 20px;
        right: 30px;
        font-size: 2rem;
        color: rgba(255, 107, 107, 0.4);
        animation: float 6s infinite ease-in-out;
    }

    .circle {
        width: 100px;
        height: 100px;
        border: 2px solid rgba(255, 215, 0, 0.1);
        border-radius: 50%;
        bottom: 40px;
        left: 40px;
        animation: rotate 25s infinite linear;
    }

    .dots {
        top: 50%;
        right: 40px;
        width: 80px;
        height: 80px;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 20%, transparent 20%);
        background-size: 10px 10px;
        opacity: 0.5;
        animation: pulse 5s infinite ease-in-out;
    }

    @keyframes float {
        0% {
            transform: translateY(0) rotate(0deg);
        }

        50% {
            transform: translateY(-20px) rotate(10deg);
        }

        100% {
            transform: translateY(0) rotate(0deg);
        }
    }

    @keyframes rotate {
        0% {
            transform: rotate(0deg);
        }

        100% {
            transform: rotate(360deg);
        }
    }

    @keyframes pulse {
        0% {
            transform: scale(1);
            opacity: 0.5;
        }

        50% {
            transform: scale(1.1);
            opacity: 0.7;
        }

        100% {
            transform: scale(1);
            opacity: 0.5;
        }
    }

    @media (max-width: 992px) {
        .impact-section {
            flex-direction: column;
        }

        .impact-visual {
            min-height: 300px;
        }

        .section-title {
            font-size: 2.4rem;
        }
    }

    @media (max-width: 768px) {
        .impact-content {
            padding: 40px 25px;
        }

        .section-title {
            font-size: 2rem;
        }

        .stats-grid {
            grid-template-columns: 1fr;
        }
    }

    @media (max-width: 480px) {
        .section-title {
            font-size: 1.8rem;
        }

        .impact-button {
            width: 100%;
            text-align: center;
        }
    }

    /* OUR TEAM */
    .team-section {
        max-width: 1200px;
        width: 100%;
        padding: 80px 20px;
    }


    .section-tagline {
        display: inline-block;
        background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
        color: white;
        padding: 8px 25px;
        border-radius: 50px;
        font-size: 1rem;
        font-weight: 600;
        letter-spacing: 1px;
        margin-bottom: 15px;
        box-shadow: 0 5px 15px rgba(255, 107, 107, 0.2);
        animation: floatTag 4s infinite ease-in-out;
    }

    @keyframes floatTag {
        0% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-8px);
        }

        100% {
            transform: translateY(0);
        }
    }

    .section-title {
        font-family: 'Playfair Display', serif;
        font-size: 3.2rem;
        font-weight: 800;
        color: #1a2a6c;
        line-height: 1.2;
        margin-bottom: 20px;
        position: relative;
    }

    .section-title:after {
        content: '';
        position: absolute;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
        width: 100px;
        height: 4px;
        background: #ffd700;
        border-radius: 2px;
    }

    .team-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }

    .team-card {
        position: relative;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        background: white;
    }

    .team-image {
        height: 400px;
        position: relative;
        overflow: hidden;
    }

    .team-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.8s ease;
    }

    .team-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to top, rgba(26, 42, 108, 0.8), transparent);
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        padding: 30px;
        transition: all 0.5s ease;
        opacity: 0;
    }

    .team-content {
        padding: 25px;
        text-align: center;
        position: relative;
        z-index: 2;
        background: white;
    }

    .team-name {
        font-family: 'Playfair Display', serif;
        font-size: 1.8rem;
        font-weight: 700;
        color: #1a2a6c;
        margin-bottom: 8px;
        transition: color 0.3s ease;
    }

    .team-position {
        font-size: 1.1rem;
        font-weight: 500;
        color: #ff6b6b;
        margin-bottom: 20px;
    }

    .team-social {
        display: flex;
        justify-content: center;
        gap: 15px;
        margin-top: 20px;
    }

    .social-link {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: #f0f4f8;
        border-radius: 50%;
        color: #1a2a6c;
        font-size: 1.1rem;
        transition: all 0.3s ease;
    }

    .team-card:hover {
        transform: translateY(-15px);
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
    }

    .team-card:hover .team-image img {
        transform: scale(1.1);
    }

    .team-card:hover .team-overlay {
        opacity: 1;
    }

    .team-card:hover .team-name {
        color: #ff6b6b;
    }

    .social-link:hover {
        background: #ff6b6b;
        color: white;
        transform: translateY(-5px);
    }

    .team-badge {
        position: absolute;
        top: 20px;
        right: 20px;
        background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
        color: white;
        padding: 8px 15px;
        border-radius: 20px;
        font-size: 0.9rem;
        font-weight: 600;
        box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
        z-index: 3;
    }

    .volunteer-years {
        position: absolute;
        bottom: 20px;
        left: 20px;
        background: rgba(255, 255, 255, 0.9);
        color: #1a2a6c;
        padding: 8px 15px;
        border-radius: 20px;
        font-size: 0.9rem;
        font-weight: 600;
        z-index: 3;
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .volunteer-years i {
        color: #ff6b6b;
    }

    .decoration {
        position: absolute;
        z-index: 1;
        pointer-events: none;
    }

    .heart {
        top: 10%;
        left: 5%;
        font-size: 2rem;
        color: rgba(255, 107, 107, 0.3);
        animation: float 6s infinite ease-in-out;
    }

    .circle {
        width: 80px;
        height: 80px;
        border: 2px solid rgba(255, 215, 0, 0.1);
        border-radius: 50%;
        bottom: 10%;
        right: 5%;
        animation: rotate 25s infinite linear;
    }

    .dots {
        top: 20%;
        right: 8%;
        width: 60px;
        height: 60px;
        background: radial-gradient(circle, rgba(255, 107, 107, 0.2) 20%, transparent 20%);
        background-size: 10px 10px;
        opacity: 0.5;
        animation: pulse 5s infinite ease-in-out;
    }

    @keyframes float {
        0% {
            transform: translateY(0) rotate(0deg);
        }

        50% {
            transform: translateY(-20px) rotate(10deg);
        }

        100% {
            transform: translateY(0) rotate(0deg);
        }
    }

    @keyframes rotate {
        0% {
            transform: rotate(0deg);
        }

        100% {
            transform: rotate(360deg);
        }
    }

    @keyframes pulse {
        0% {
            transform: scale(1);
            opacity: 0.5;
        }

        50% {
            transform: scale(1.1);
            opacity: 0.7;
        }

        100% {
            transform: scale(1);
            opacity: 0.5;
        }
    }

    @media (max-width: 768px) {
        .section-title {
            font-size: 2.4rem;
        }

        .team-grid {
            grid-template-columns: 1fr;
            max-width: 500px;
            margin: 0 auto;
        }
    }

    @media (max-width: 480px) {
        .section-title {
            font-size: 2rem;
        }

        .section-tagline {
            font-size: 0.9rem;
            padding: 6px 20px;
        }

        .team-image {
            height: 350px;
        }
    }
    
      @media (max-width: 768px) {
          .support-now{
              margin: 10px auto !important;
              width:100%;
          }
          .donation-box{
              padding: 30px 10px;
          }
          .how-you-can-help__title{
              font-size:25px;
              text-align:center;
          }
          .feature-one__single{
              box-shadow: 2px 2px #aaa;
          }
          .about-section{
              width: auto;
              display: block;
              box-shadow: 2px 2px #fff;
              padding-left:10px;
          }
          .section-title{
              font-size:1.8rem;
              text-align:center;
          }
          .causes-one {
    padding: 46px 0 0px;
          }
          .impact-section{
              padding: 10px 20px;
              margin:50px 0;
              width: 90%;
          }
          .support-content,.impact-content{
              padding: 10px 20px;
              margin:50px 0;
              width: 90%;
          }
          .causes-one__content-box{
              box-shadow:1px 1px #111;
          }
          
          .section-tagline{
              text-align:center;
              padding:7px 10px ;
          }
     
      }
      
      
      
      
      
      
      
      
          @media (max-width: 992px) {
    .support-content, .support-image {
        min-width: 90%;
    }
          }
          
          
    @media (max-width: 768px) {
    @media (max-width: 992px) {
        .support-content, .support-image {
            min-width: 90%;
            margin-right: 45px;
        }
    }
}
