:root {
    /* --primary-color: #2c5f8b;  */
    --primary-color: #FF800F;
    --secondary-color: #f8a055;
    --accent-color: #e74c3c;
    --light-bg: #f8f9fa;
    --dark-color: #2c3e50;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.8;
    overflow-x: hidden;
    color: #444;
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');



/* Donation Card Animations */
.donation-option {
    border: 1px solid #eee;
    border-radius: 10px;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    overflow: hidden;
    position: relative;
    height: 100%;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.donation-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 95, 139, 0.1) 0%, rgba(248, 160, 85, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.donation-option:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.donation-option:hover::before {
    opacity: 1;
}

.donation-option .icon {
    width: 80px;
    height: 80px;
    background: rgba(44, 95, 139, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.donation-option:hover .icon {
    background: var(--primary-color);
    transform: rotateY(180deg);
}

.donation-option .icon i {
    font-size: 2rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.donation-option:hover .icon i {
    color: white;
    transform: rotateY(-180deg) scale(1.2);
}

/* Button Animation */
.btn-donate {
    background: var(--primary-color);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 500;
    border: 2px solid var(--primary-color);
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.3s ease;
}

.btn-donate::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: white;
    transition: all 0.5s ease;
    z-index: -1;
}

.btn-donate:hover {
    color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(44, 95, 139, 0.3);
}

.btn-donate:hover::before {
    left: 0;
}

/* Impact Stats Animation */
.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: inline-block;
    position: relative;
}

.stat-number::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--secondary-color);
    transition: width 0.5s ease;
}

.impact-stats:hover .stat-number::after {
    width: 100%;
}

/* Floating Animation */
.floating {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .hero-section {
        background-attachment: scroll;
        padding: 120px 0;
    }

    .donation-option {
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 100px 0;
    }

    .stat-number {
        font-size: 2rem;
    }

    .donation-option .icon {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 80px 0;
    }

    .btn-donate {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}