﻿.goals-2025 {
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

    .goals-2025::before {
        content: '';
        position: absolute;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(2,104,56,0.05) 0%, rgba(255,255,255,0) 70%);
        top: -250px;
        left: -150px;
        border-radius: 50%;
        z-index: 0;
    }

    .goals-2025::after {
        content: '';
        position: absolute;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(242,101,34,0.05) 0%, rgba(255,255,255,0) 70%);
        bottom: -250px;
        right: -150px;
        border-radius: 50%;
        z-index: 0;
    }

.goals-container {
    position: relative;
    z-index: 1;
}

.goal-card {
    background-color: #fff;
    border-radius: 15px;
    padding: 2.5rem 1.5rem 2rem;
    box-shadow: 0 10px 30px rgba(27,37,82, 0.07);
    text-align: center;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(27,37,82, 0.1);
}

    .goal-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: linear-gradient(to right, #1b2552, #d66f29);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.5s ease;
    }

    .goal-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(27,37,82, 0.15);
    }

        .goal-card:hover::before {
            transform: scaleX(1);
        }

.goal-icon-wrapper {
    width: 90px;
    height: 90px;
    margin-bottom: 1.5rem;
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.goal-card:hover .goal-icon-wrapper {
    transform: scale(1.15) rotate(5deg);
}

.goal-icon {
    width: 100%;
    height: 100%;
}

.goal-amount {
    margin-bottom: 1.25rem;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.amount-value {
    font-size: 3rem;
    font-weight: 700;
    color: rgb(27 37 82);
    line-height: 1;
    display: inline-block;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.amount-unit {
    font-size: 1.1rem;
    font-weight: 500;
    margin-top: 0.25rem;
}

.goal-title {
    color: #d66f29;
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    position: relative;
    padding-bottom: 12px;
}

    .goal-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
        height: 2px;
        background-color: rgba(214,111,41, 0.3);
    }

.goal-description {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
}

/* Animation for counter */
.counter {
    transition: all 0.5s ease;
}

@media (max-width: 1199.98px) {
    .goal-card {
        padding: 2rem 1.25rem 1.5rem;
    }

    .goal-icon-wrapper {
        width: 80px;
        height: 80px;
    }

    .amount-value {
        font-size: 2.75rem;
    }
}

@media (max-width: 991.98px) {
    .goals-container > div {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .goals-2025 {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .goals-container {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
        scroll-padding: 1rem;
        padding-bottom: 1.5rem;
        margin-left: -1rem;
        margin-right: -1rem;
        padding-left: 1rem;
        padding-right: 0.5rem;
    }

        .goals-container::-webkit-scrollbar {
            height: 6px;
        }

        .goals-container::-webkit-scrollbar-thumb {
            background-color: rgba(27,37,82, 0.5);
            border-radius: 10px;
        }

        .goals-container::-webkit-scrollbar-track {
            background-color: rgba(214,111,41, 0.1);
            border-radius: 10px;
        }

        .goals-container > div {
            flex: 0 0 85%;
            scroll-snap-align: center;
            margin-right: 1rem;
            max-width: 85%;
        }

    .goal-card {
        margin-bottom: 0.5rem;
    }

    .goal-description {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .title-goals {
        font-size: 1.7rem;
    }
}

@media (max-width: 575.98px) {
    .goal-icon-wrapper {
        width: 70px;
        height: 70px;
    }

    .amount-value {
        font-size: 2.5rem;
    }

    .goal-title {
        font-size: 1.25rem;
    }
}

.card-list .card-item {
    height: auto;
    color: #fff;
    user-select: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    backdrop-filter: blur(30px);
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.5);
    overflow: hidden;
}

.slider-wrapper .swiper-pagination-bullet {
    background: #1b2552;
    height: 13px;
    width: 13px;
    opacity: 0.5;
    margin-top: 50px;
}

.slider-wrapper .swiper-pagination-bullet-active {
    opacity: 1;
}

.slider-wrapper {
    margin-bottom: 3rem;
    margin-top: 3rem;
}

@media (max-width: 767.9px) {
    .slider-wrapper {
        margin-bottom: 2rem;
        margin-top: 2rem;
    }
}

.image-wrapper {
    position: relative;
    width: 75%;
    max-width: 1000px;
}

.giving-week-text {
    width: 100%;
    height: auto;
}

.event-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    width: 100%;
}

.timeEvent {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 20px 7px 7px;
    font-size: 1.8rem;
    font-weight: bold;
    color: white;
    background: linear-gradient(180deg, rgba(255,255,255,0.7) 0%, rgba(255,255,255,0) 50%);
    border-radius: 37px;
    border: none;
    position: absolute;
    top: 70%;
    transform: translateY(-70%);
    left: 0;
    user-select: none;
}

.iconEvent {
    width: 4rem;
    height: 4rem;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .iconEvent svg {
        width: 2rem;
    }

@media (max-width: 767.9px) {
    .timeEvent {
        position: relative;
        font-size: 1.3rem;
        justify-content: center;
        margin-top: 4rem;
        margin-bottom:-1rem;
    }

    .image-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .iconEvent {
        width: 2.5rem;
        height: 2.5rem;
    }

        .iconEvent svg {
            width: 1.5rem;
        }
}

@media (min-width: 768px) and (max-width: 1023.9px) {
    .timeEvent {
        font-size: 1rem;
    }

    .iconEvent {
        width: 2.5rem;
        height: 2.5rem;
    }

        .iconEvent svg {
            width: 1.5rem;
        }
}


@media (min-width: 1024px) and (max-width: 1344px) {
    .timeEvent {
        font-size: 1.3rem;
    }

    .iconEvent {
        width: 2.5rem;
        height: 2.5rem;
    }

        .iconEvent svg {
            width: 1.8rem;
        }
}

a:hover {
    color: #fff;
}

.footerLink:hover{
    text-decoration: underline;
}

.bannerTop .container {
    display: flex;
    justify-content: space-between;
}

.lang-panel {
    display: flex;
    gap: 12px;
    z-index: 1;
    align-items: start;
}

.lang-panel .btn-lang img {
    display: block;
    filter: brightness(.6);
    height: 26px;
    width: 40px;
}

.lang-panel .btn-lang.active img, .lang-panel .btn-lang:hover img {
    filter: brightness(1);
}

    .lang-panel .btn-lang.active {
        border: 1px solid #fff;
    }

    .lang-panel .btn-lang {
        background: transparent;
        border: 1px solid transparent;
        border-radius: 4px;
        padding: 0;
        position: relative;
    }