* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    overflow-x: hidden;
}

html {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Nav-Menu */
.header {
    width: 100%;
    background: #fff;
    position: fixed;
    top: 0;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 85px;
}

.logo img {
    width: 165px;
    display: block;
}

/* DESKTOP NAV */

.desktop-nav {
    flex: 1;
    margin-left: 40px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
}

.nav-links a,
.dropdown-toggle {
    text-decoration: none;
    color: #2563eb;
    font-size: 15px;
    font-weight: 600;
    background: none;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.nav-links a:hover,
.dropdown-toggle:hover {
    color: #2563eb;
}


/* DROPDOWN */

.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
}

.arrow {
    font-size: 12px;
}

.dropdown-menu {
    position: absolute;
    top: 55px;
    left: 0;
    background: #fff;
    width: 260px;
    padding: 15px 0;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.3s;
    list-style: none;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 12px 20px;
    font-size: 14px;
}

.dropdown-menu li a:hover {
    background: #f7f7f7;
}

/* BUTTON */

.donate-btn {
    background: #2563eb;
    color: #fff;
    text-decoration: none;
    padding: 12px 22px;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s;
}

.donate-btn:hover {
    background: #fff;
    border: 2px solid #2563eb;
    color: #2563eb;
}

/* MOBILE TOGGLE */

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 26px;
    height: 3px;
    background: #2563eb;
    border-radius: 5px;
}

/* MOBILE MENU */

.mobile-menu {
    display: none;
    background: #fff;
    border-top: 1px solid #eee;
    padding: 20px;
}

.mobile-menu ul {
    list-style: none;
}

.mobile-menu li {
    margin-bottom: 15px;
}

.mobile-menu a {
    text-decoration: none;
    color: #2563eb;
    font-weight: 600;
}

.mobile-dropdown-header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: #2563eb;
}


.mobile-submenu {
    display: none;
    padding-left: 15px;
    margin-top: 10px;
}

.mobile-submenu li {
    margin-bottom: 10px;
}

.mobile-donate-btn {
    display: block;
    text-align: center;
    background: #2563eb;
    color: #fff !important;
    padding: 14px;
    border-radius: 50px;
}

/* RESPONSIVE */

@media(max-width:991px) {

    .desktop-nav,
    .donate-btn {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .mobile-menu.active {
        display: block;
    }

}


/* ==========================
   ANIMATION BASE
========================== */

.reveal,
.fade-up,
.slide-left,
.slide-right,
.zoom-in {
    opacity: 0;
    transition: all 0.8s ease;
}

/* Fade Up */

.fade-up {
    transform: translateY(60px);
}

/* Slide Left */

.slide-left {
    transform: translateX(-80px);
}

/* Slide Right */

.slide-right {
    transform: translateX(80px);
}

/* Zoom In */

.zoom-in {
    transform: scale(0.8);
}

/* Standard Reveal */

.reveal {
    transform: translateY(40px);
}

/* Active State */

.reveal.active,
.fade-up.active,
.slide-left.active,
.slide-right.active,
.zoom-in.active {
    opacity: 1;
    transform: translate(0, 0) scale(1);
}

/* Progress bar animation */

.support-progress-fill {
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, #c89b3c, #d6ab4d);
    border-radius: 100px;
    position: relative;
    transition: width 1.5s ease;
}

.support-section-tag {
    display: block;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 16px;
    font-weight: 700;
    color: #c89b3c;
    margin-bottom: 12px;
}

.support-impact-section {
    padding-top: 150px;
    overflow: hidden;
}

.support-featured-project {
    padding: 90px 0;
    overflow: hidden;
}

.support-stories-section {
    padding-top: 90px;
    overflow: hidden;
}

.support-impact-section,
.support-featured-project,
.support-stories-section {
    overflow: hidden;
}

.support-impact-grid,
.support-project-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
}

.support-impact-content h2,
.support-project-content h2,
.support-stories-section h2 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #1d1d1d;
}

.support-impact-content p,
.support-project-content p {
    color: #666;
    line-height: 1.5;
}

.support-impact-amounts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin: 30px 0;
}

.support-amount-card {
    background: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 12px;
    padding: 22px 15px;
    text-align: center;

    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    transition: .3s ease;
}

.support-amount-card strong {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: #07182a;
}

.support-amount-card span {
    display: block;
    font-size: 14px;
    line-height: 1.4;
    color: #666;
}

.support-amount-card.active {
    background: #07182a;
    color: #fff;
}

.support-payment-icons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.support-payment-icons img {
    height: 70px;
    width: auto;

    background: #fff;

    padding: 8px 12px;

    border-radius: 8px;

    border: 1px solid #e8e8e8;

    transition: .3s ease;
}

.support-payment-icons img:hover {
    transform: translateY(-3px);
}

.secure-payment {
    font-size: 14px;
    color: #444;
    font-weight: 500;
    margin-left: 5px;
}

.support-impact-image {
    position: relative;
}

.support-impact-image img {
    width: 100%;
    border-radius: 20px;
}

.support-impact-card {
    position: absolute;
    right: 30px;
    bottom: 30px;

    width: 280px;

    background: #fff;
    padding: 25px;
    border-radius: 18px;

    box-shadow: 0 20px 40px rgba(0, 0, 0, .08);
}

.support-project-video {
    position: relative;
}

.support-project-video img {
    width: 100%;
    border-radius: 20px;
}

.support-play-button {
    position: absolute;
    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    width: 90px;
    height: 90px;

    border: none;
    border-radius: 50%;

    background: #07182a;
    color: #fff;

    font-size: 24px;
    cursor: pointer;
}

/* PROJECT STATS */

.support-project-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 35px 0 18px;
    gap: 20px;
}

.support-project-stats div {
    display: flex;
    flex-direction: column;
}

.support-project-stats strong {
    font-size: 30px;
    font-weight: 800;
    color: #07182a;
    line-height: 1;
}

.support-project-stats span {
    font-size: 14px;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 6px;
}

.support-progress-bar {
    position: relative;
    height: 14px;
    background: #ece7dc;
    border-radius: 100px;
    overflow: hidden;
    margin-top: 10px;
}

/* .support-progress-fill {
    width: 28%;
    height: 100%;
    background: linear-gradient(90deg, #c89b3c, #d6ab4d);
    border-radius: 100px;
    position: relative;

} */

/* OPTIONAL END DOT */

.support-progress-fill::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(50%, -50%);
    width: 18px;
    height: 18px;
    background: #c89b3c;
    border: 4px solid #fff;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .15);
}

/* PERCENTAGE */

.support-progress-percent {
    margin-top: 12px;
    font-size: 15px;
    font-weight: 700;
    color: #c89b3c;
    text-align: right;
}

.support-project-buttons {
    display: flex;
    gap: 20px;
    margin-top: 25px;
}

.support-btn {
    background: #c89b3c;
    color: #000;
    padding: 14px 28px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
}

.support-view-btn {
    text-decoration: none;
    color: #07182a;
    font-weight: 600;
}

/* ===================================
   STORIES SECTION
=================================== */

.support-stories-section {
    padding: 90px 0;
    background: #faf8f4;
    text-align: center;
}

.support-stories-section h2 {
    font-size: 48px;
    margin-bottom: 50px;
    color: #1d1d1d;
}

.support-stories-wrapper {
    position: relative;
    overflow: hidden;
}

.support-stories-slider {
    display: flex;
    gap: 25px;
    overflow-x: hidden;
    width: 100%;
}

.support-stories-slider::-webkit-scrollbar {
    display: none;
}

.support-story-card {
    flex: 0 0 calc(33.333% - 17px);

    background: #fff;
    border-radius: 18px;
    padding: 30px;

    text-align: left;

    box-shadow: 0 10px 25px rgba(0, 0, 0, .05);
}

.support-story-card i {
    color: #c89b3c;
    font-size: 24px;
    margin-bottom: 18px;
}

.support-story-card p {
    color: #555;
    line-height: 1.8;
    min-height: 90px;
    text-align: left;
}

.support-story-user {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
}

.support-story-user img {
    width: 55px;
    height: 55px;

    border-radius: 50%;
    object-fit: cover;
}

.support-story-user strong {
    display: block;
    color: #111;
}

.support-story-user span {
    color: #777;
    font-size: 14px;
}

/* ARROWS */

.story-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);

    width: 50px;
    height: 50px;

    border: none;
    border-radius: 50%;

    background: #ffffff00;

    box-shadow: 0 10px 20px rgba(0, 0, 0, .08);

    cursor: pointer;

    z-index: 5;

    transition: .3s ease;
}

.story-nav:hover {
    transform: translateY(-50%) scale(1.08);
}

.prev-story {
    left: 10px;
}

.next-story {
    right: 10px;
}

/* TABLET */

@media(max-width:991px) {

    .support-story-card {
        flex: 0 0 calc(50% - 13px);
    }

    .support-stories-section h2 {
        font-size: 36px;
    }

}

/* MOBILE */

@media(max-width:768px) {

    .support-story-card {
        flex: 0 0 100%;
    }

    .story-nav {
        width: 42px;
        height: 42px;
    }

    .prev-story {
        left: -10px;
    }

    .next-story {
        right: -10px;
    }

    .support-stories-section {
        padding: 70px 0;
    }

    .support-stories-section h2 {
        font-size: 30px;
    }
    
    .support-impact-card {
        position: absolute;
        right: 30px;
        bottom: -5px;

        width: 280px;

        background: #fff;
        padding: 25px;
        border-radius: 18px;

        box-shadow: 0 20px 40px rgba(0, 0, 0, .08);
    }

}

@media(max-width:991px) {

    .support-impact-grid,
    .support-project-grid {
        grid-template-columns: 1fr;
    }

    .support-impact-amounts {
        grid-template-columns: repeat(2, 1fr);
    }

    .support-stories-grid {
        grid-template-columns: 1fr;
    }

    .support-impact-content,
    .support-project-content {
        text-align: center;
    }

    .support-project-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .support-impact-card {
        position: relative;
        right: auto;
        bottom: auto;
        margin: -40px auto 0;
    }

    .support-impact-content h2,
    .support-project-content h2,
    .support-stories-section h2 {
        font-size: 36px;
    }
}

@media(max-width:768px) {

    .support-payment-icons {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .support-payment-icons img {
        width: 100%;
        height: 55px;
        object-fit: contain;
    }

}


.support-video-modal {
    position: fixed;
    inset: 0;

    background: rgba(0, 0, 0, .85);

    display: flex;
    justify-content: center;
    align-items: center;

    opacity: 0;
    visibility: hidden;

    transition: .35s ease;

    z-index: 9999;
}

.support-video-modal.active {
    opacity: 1;
    visibility: visible;
}

.support-video-box {
    width: min(900px, 90%);
    position: relative;
}

.support-video-box video {
    width: 100%;
    border-radius: 20px;
    display: block;
}

.support-close-video {
    position: absolute;
    top: -45px;
    right: 0;

    width: 38px;
    height: 38px;

    border: none;
    border-radius: 50%;

    background: #fff;
    cursor: pointer;

    font-size: 22px;
}

/* =========================
   FOOTER
========================= */

.main-footer {
    background: #2563eb;

    color: #fff;

    overflow: hidden;
}

/* TOP */

.footer-top {
    padding: 100px 20px 70px;
}

/* GRID */

.footer-grid {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 80px;

    align-items: start;
}

/* LOGO */

.footer-logo img {
    height: 70px;

    display: block;

    margin-bottom: 30px;
}

/* COMPANY */

.footer-company h3 {
    font-size: 24px;

    margin-bottom: 10px;

    font-weight: 700;
}

.company-number {
    display: block;

    color: #cfcfcf;

    font-size: 13px;

    margin-bottom: 20px;
}

.footer-company p {
    line-height: 1.9;

    color: #f1f1f1;

    font-size: 15px;
}

/* CONTACT */

.footer-contact {
    list-style: none;

    margin-top: 30px;
}

.footer-contact li {
    margin-bottom: 12px;
}

.footer-contact a {
    color: #fff;

    text-decoration: none;

    transition: 0.3s ease;
}

.footer-contact a:hover {
    color: #fff;
}

/* SOCIALS */

.footer-socials {
    display: flex;

    gap: 14px;

    margin-top: 35px;
}

.footer-socials a {
    width: 46px;
    height: 46px;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.08);

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;

    font-size: 18px;

    text-decoration: none;

    transition: 0.3s ease;
}

.footer-socials a:hover {
    background: #F7941E;

    transform: translateY(-5px);
}

/* RIGHT */

.footer-download-title {
    font-size: 26px;

    line-height: 1.5;

    margin-bottom: 30px;
}

/* STORE BUTTONS */

.store-buttons {
    display: flex;

    flex-wrap: wrap;

    gap: 15px;

    margin-bottom: 40px;
}

.store-buttons img {
    width: 130px;

    display: block;

    transition: 0.3s ease;
}

.store-buttons img:hover {
    transform: translateY(-4px);
}

/* VERSE */

.footer-verse {
    background: rgba(255, 255, 255, 0.05);

    padding: 30px;

    border-radius: 24px;

    border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-verse p {
    line-height: 2;

    color: #f5f5f5;

    margin-bottom: 20px;
}

.footer-verse span {
    color: #F7941E;

    font-weight: 700;
}

/* BOTTOM */

.footer-bottom {
    border-top:
        1px solid rgba(255, 255, 255, 0.08);

    padding: 25px 20px;
}

.footer-bottom-inner {
    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 20px;
}

/* COPYRIGHT */

.copyright-text {
    color: #d9d9d9;

    font-size: 14px;
}

/* LINKS */

.footer-links {
    display: flex;

    gap: 25px;
}

.footer-links a {
    color: #fff;

    text-decoration: none;

    font-size: 14px;

    transition: 0.3s ease;
}

.footer-links a:hover {
    color: #F7941E;
}

/* =========================
   TABLET
========================= */

@media(max-width:991px) {

    .footer-grid {
        grid-template-columns: 1fr;

        gap: 60px;
    }

}

/* =========================
   MOBILE
========================= */

@media(max-width:768px) {

    .footer-top {
        padding: 80px 20px 60px;
    }

    .footer-company h3 {
        font-size: 20px;
    }

    .footer-download-title {
        font-size: 22px;
    }

    .footer-bottom-inner {
        flex-direction: column;

        text-align: center;
    }

    .footer-links {
        justify-content: center;

        flex-wrap: wrap;
    }

    .store-buttons {
        gap: 12px;
    }

    .store-buttons img {
        width: 115px;
    }

}

/* SCROLL TO TOP BUTTON */

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 20px;
    width: 55px;
    height: 55px;
    background: #f7931a;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9999;

    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s ease;
}

/* Visible State */
.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Hover */
.scroll-to-top:hover {
    background: #11C3E8;
}

/* Icon */
.scroll-to-top i {
    font-size: 1.2rem;
}

/* Mobile Fix */
@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 80px;
        /* avoids mobile browser bar */
        right: 15px;
        width: 50px;
        height: 50px;
    }
}