/* Campaign Section Styles */
#campaign {
    padding: 60px 0;
    background-color: #f8f9fa;
    /* slate-50 equivalent */
    position: relative;
    overflow: hidden;
}

#campaign .container {
    position: relative;
    z-index: 10;
}

/* Typography & Colors */
.text-primary {
    color: #1B5E20 !important;
    /* Green from the tree */
}

.font-nepali {
    font-family: 'Mukta', 'Poppins', sans-serif;
    /* Fallback if Mukta isn't loaded */
}

.tracking-widest {
    letter-spacing: 0.3em;
}

/* Tree Visualization */
.tree-container {
    position: relative;
    height: 350px;
    background-color: #ffffff;
    border-radius: 2rem;
    border: 1px solid #e2e8f0;
    /* slate-100 */
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    width: 100%;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

@media (min-width: 768px) {
    .tree-container {
        height: 400px;
        border-radius: 3rem;
    }
}

.tree-svg {
    width: auto;
    height: 250px;
    filter: drop-shadow(0 25px 25px rgb(0 0 0 / 0.15));
    transition: transform 0.7s ease-in-out;
}

@media (min-width: 768px) {
    .tree-svg {
        height: 320px;
    }
}

.tree-container:hover .tree-svg {
    transform: scale(1.05);
}

/* Mango Animation */
#leaf-container {
    position: absolute;
    bottom: 20px;
    width: 100%;
    height: 300px;
    pointer-events: none;
    z-index: 20;
}

.mango-node {
    position: absolute;
    width: 44px;
    height: 44px;
    background-color: #FFC107;
    /* Mango yellow */
    border-radius: 50% 50% 50% 0;
    /* Mango shapeish */
    transform: rotate(-45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    /* Animation */
    animation: float 3s ease-in-out infinite;
}

.mango-text {
    transform: rotate(45deg);
    /* Counter rotate text */
    font-size: 8px;
    font-weight: bold;
    color: #5D4037;
    white-space: nowrap;
}

@keyframes float {
    0% {
        transform: rotate(-45deg) translateY(0px);
    }

    50% {
        transform: rotate(-45deg) translateY(-10px);
    }

    100% {
        transform: rotate(-45deg) translateY(0px);
    }
}

/* Interaction Panel */
.stats-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 2rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    /* shadow-xl */
    border: 1px solid #e2e8f0;
}

@media (min-width: 768px) {
    .stats-card {
        padding: 2rem;
    }
}

.icon-wrapper {
    background-color: #fff1f2;
    /* rose-50 */
    padding: 1rem;
    border-radius: 9999px;
    color: #1B5E20;
    /* Primary green */
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-wrapper i {
    font-size: 2rem;
}

#support-counter {
    font-size: 1.875rem;
    /* 3xl */
    font-weight: 900;
    color: #0f172a;
    /* slate-900 */
    line-height: 1;
}

@media (min-width: 768px) {
    #support-counter {
        font-size: 2.25rem;
        /* 4xl */
    }
}

/* Button */
#support-btn {
    background: #ED462F;
    /* Brand Red */
    border: none;
    color: white;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 1rem;
    font-size: 1.125rem;
    /* lg */
    border-radius: 50px;
    /* pill shape */
    box-shadow: 0 4px 6px -1px rgba(237, 70, 47, 0.4);
    transition: all 0.3s ease;
    cursor: pointer;
}

#support-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(237, 70, 47, 0.5);
}

#support-btn:active {
    transform: scale(0.95);
}

#support-btn i {
    font-size: 1.5rem;
}

/* Changing Text Underline */
#changing-text {
    display: inline-block;
    border-bottom: 4px solid #22c55e;
    /* green-500 */
    transition: all 0.3s ease;
    min-width: 60px;
    text-align: center;
}