* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Source Sans 3", sans-serif;

}

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

h1,
h2,
h3,
a {
    font-family: "Bebas Neue", sans-serif;
}

p,
li {
    font-size: 20px;
}

.header {
    background-color: #4169E1;
}

.navbar {
    background-color: #4169E1;
    min-width: 100%;
    position: fixed;
    top: 0;
    z-index: 999;
}

.navbar-nav {
    margin-right: 40px;
    gap: 20px;
}

h1,
h2,
h3 {
    text-shadow:
        0 1px 0 #66cc66,
        0 2px 0 #55bb55,
        0 2px 0 #44aa44,
        0 2px 0 #339933,
        0 3px 3px rgba(0, 128, 0, 0.5);

}

.nav-link,
.navbar-brand {
    color: white;
    text-shadow:
        0 1px 0 #66cc66,
        0 2px 0 #55bb55,
        0 2px 0 #44aa44,
        0 2px 0 #339933,
        0 3px 3px rgba(0, 128, 0, 0.5);

}


.nav-link {
    font-size: 22px;
}

.navbar-brand {
    font-size: 35px;
    color: #FF8F00;
}

.nav-link:hover,
.navbar-brand:hover {
    color: #FF8F00;
}

.header-content {
    color: white;
    padding: 100px 0 80px 0;
    text-align: center;
}

.header-content h1 {
    color: #FF8F00;
    font-size: 80px;
    text-shadow:
        0 1px 0 #66cc66,
        0 2px 0 #55bb55,
        0 3px 0 #44aa44,
        0 4px 0 #339933,
        0 5px 5px rgba(0, 128, 0, 0.5);


}

.header-content h2 {
    font-size: 60px;
}

.arrow-wrap {
    max-width: 50%;
    margin: 0 auto;
}

.chev {
    width: 28px;
    height: 28px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    opacity: 0;
}

.chev svg {
    width: 100%;
    height: 100%;
    stroke: #FF8F00;
}

/* Slower animation: increased from 1.2s to 1.8s */
.chev:nth-child(1) {
    animation: moveDown 1.8s cubic-bezier(.2, .9, .3, 1) infinite
}

.chev:nth-child(2) {
    animation: moveDown 1.8s cubic-bezier(.2, .9, .3, 1) infinite .25s
}

.chev:nth-child(3) {
    animation: moveDown 1.8s cubic-bezier(.2, .9, .3, 1) infinite .5s
}

@keyframes moveDown {
    0% {
        transform: translateX(-50%) translateY(-8px) scale(.9);
        opacity: 0
    }

    10% {
        opacity: 1;
        transform: translateX(-50%) translateY(-2px) scale(1)
    }

    60% {
        opacity: .9;
        transform: translateX(-50%) translateY(12px) scale(.95)
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px) scale(.85)
    }
}

.landing-image {
    height: 80%;
    min-width: 100%;
    object-fit: cover;
}

.section-1,
.about-section-1 {
    padding-block: 60px;
}

.section-1 h2,
.about-section-1 h2 {
    color: #4169E1;
    font-weight: bold;
    font-size: 50px;
}

.btn-1 {
    display: inline-block;
    background-color: #FF8F00;
    /* Blue background */
    color: #fff;
    /* White text */
    padding: 16px 60px;
    /* Bigger padding */
    border-radius: 50px;
    /* Pill shape */
    font-family: "Arial", sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 18px;
    text-transform: uppercase;
    text-decoration: none;
    position: relative;
    box-shadow: 0 6px 0 #4cbb17;
    /* Red bottom shadow */
    transition: all 0.2s ease-in-out;
}

.btn-1:hover {
    transform: translateY(2px);
    /* Slight press effect */
    box-shadow: 0 4px 0 #4cbb17;
    /* Adjust shadow */
    background-color: #FF8F00;
    /* Slightly lighter blue */
    color: white;
}




.section-2 {
    background-color: #FF8F00;
    margin-top: 20px;
    padding-top: 30px;
    padding-bottom: 30px;
}

.section-2 form {
    background-color: white;
    max-width: 40%;
    margin: 0 auto;
    padding: 20px;
    border-left: 4px solid #4169E1;
}


.section-2 form p {
    font-size: 12px;
}

.section-2 form input,
.section-2 form textarea {
    border-radius: 0;
}


.btn-2 {
    display: inline-block;
    background-color: #4169E1;
    /* Blue background */
    color: #fff;
    /* White text */
    padding: 16px 60px;
    /* Bigger padding */
    border-radius: 50px;
    /* Pill shape */
    font-family: "Arial", sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 18px;
    text-transform: uppercase;
    text-decoration: none;
    position: relative;
    box-shadow: 0 6px 0 #FF8F00;
    /* Red bottom shadow */
    transition: all 0.2s ease-in-out;
    width: 100%;
    margin-bottom: 10px;
}

.btn-2:hover {
    transform: translateY(2px);
    /* Slight press effect */
    box-shadow: 0 4px 0 #FF8F00;
    /* Adjust shadow */
    background-color: #4169E1;
    /* Slightly lighter blue */
    color: white;
}

.footer {
    background-color: black;
    padding: 40px;
}

.footer ul,
.footer-home ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 0;
    margin: 0;
}

.footer ul li a i {
    color: white;
    border: 2px solid white;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 18px;
    transition: background 0.3s ease, color 0.3s ease;
}

.footer-home ul li a i {
    color: black;
    border: 2px solid black;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 18px;
    transition: background 0.3s ease, color 0.3s ease;
}

.footer ul li a i:hover {
    background: white;
    color: black;
}

.footer-home ul li a i:hover {
    background-color: white;
    border: 2px solid white;
}

.footer ul li a,
.footer-home ul li a {
    text-decoration: none;
}

.navbar-toggler {
    box-shadow: none !important;
    border: 0 !important;
    color: white;
}


/* Responsiveness */
@media screen and (max-width: 767px) {
    .landing-image {
        height: auto;
    }

    .wrap-img {
        float: none;
        display: block;
        margin: 0 auto 1rem;
        max-width: 100%;
    }

    .wrap-img-2 {
        float: none;
        display: block;
        margin: 0 auto 1rem;
        max-width: 100%;
    }

    .ord-1 {
        order: 2;
        margin-top: 30px;
    }

    .ord-2 {
        order: 1;
    }

    .header-content {
        padding-top: 100px;
    }

    .section-1 img {
        margin-top: 10px;
    }

    .section-2 form {
        min-width: 100%;
    }

    .header-content h1 {
        font-size: 60px;
    }

    .header-content h2 {
        font-size: 40px;
    }

    .platform-image-1 {
        margin-top: 30px;
    }

    .quote {
        min-width: 100%;
    }

    quote {
        font-size: 25px !important;
        padding: 10px;
    }

}

@media (min-width: 768px) and (max-width: 1199px) {
    .section-2 form {
        min-width: 75%;
    }

    .platform-image-2,
    .platform-image-1 {
        margin-top: 50px !important;
    }

    .landing-image {
        height: 100%;
    }
}


.header-content p {
    max-width: 80%;
    margin: 0 auto;
}


.card {
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
}

.timeline {
    position: relative;
    margin-left: .75rem;
    padding-left: 2rem;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 12px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(#4169E1, transparent)
}

.tl-item {
    position: relative;
    padding-bottom: 1.25rem;
}

.tl-item:last-child {
    padding-bottom: 0;
}

.tl-dot {
    position: absolute;
    left: -2px;
    top: .35rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tl-content {
    margin-left: 1.5rem;
    padding: 1rem;
    background: #fff;
    border-radius: 1rem;
    border: 1px solid rgba(0, 0, 0, .05);
}

.badge-year {
    background: #4169E1;
}

.tag {
    display: inline-block;
    padding: 10px 15px;
    border-radius: 999px;
    background-color: #FF8F00;
    font-size: 14px;
}

.faqs {
    padding-block: 60px;
}

.faqs h2 {
    color: #4169E1;
    font-weight: bold;
}

.block {
    background-color: white;
    border-left: 4px solid #4169E1;
    padding: 10px 20px;
}

.accordion-button {
    font-size: 22px;
}

.accordion-item {
    margin-top: 10px;
}


.wrap-img {
    float: right;
    margin: 0 0 1rem 1rem;
    /* gap between text and image */
    max-width: 400px;
    /* size limit */
    height: auto;
    display: block;
    /* removes bottom gap under image */
}

.wrap-img-2 {
    float: left;
    margin: 1rem 1rem 0 0;
    /* gap between text and image */
    max-width: 400px;
    /* size limit */
    height: auto;
    display: block;
    /* removes bottom gap under image */
}


.link {
    color: #4169E1;
    font-weight: 600;
    text-decoration: none;
    font-family: "Source Sans 3", sans-serif;
}

.btn-3 {
    background-color: #FF8F00;
    padding: 10px 40px;
    text-align: center;
    border-radius: 50px;
    color: #fff;
    font-weight: bold;
    font-family: "Bebas Neue", sans-serif;
    letter-spacing: 1px;
}

.btn-3:hover {
    background-color: #FF8F00;
    color: white;
}

.btn-donate {
    background-color: #4cbb17;
    padding: 10px 40px;
    text-align: center;
    border-radius: 50px;
    color: white;
    font-weight: bold;
    font-family: "Bebas Neue", sans-serif;
    letter-spacing: 1px;
    text-decoration: none;
}

.btn-donate-2 {
    background-color: transparent;
    padding: 10px 40px;
    border: 2px solid white;
    text-align: center;
    border-radius: 50px;
    color: white;
    font-weight: bold;
    font-family: "Bebas Neue", sans-serif;
    letter-spacing: 1px;
    text-decoration: none;
}

.btn-donate:hover {
    background-color: #FF8F00;
    color: #fff;
}

.btn-donate-2:hover {
    background-color: #4cbb17;
    color: white;
}

.platform-image-2 {
    margin-top: 30px;
}

.consent {
    font-size: 12px;
    padding-top: 5px;
    text-align: center;
}

#down {
    scroll-margin-top: 60px;
}

.nav-link:focus {
    color: white;
}

.btn-donate-mobile {
    padding: 5px 20px;
    margin-left: auto;
    float: right;
}

@media (min-width: 992px) {
    .btn-donate-mobile {
        display: none;
    }
}

@media (min-width: 1400px) {
    .navbar-nav {
        margin-right: 130px;
    }
}


.quote {
    text-align: center;
    max-width: 75%;
    margin: 40px auto 0;
}

quote {
    color: #4169E1;
    font-style: italic;
    font-size: 30px;
    font-weight: bold;
}

.quote p {
    color: #FF8F00;
}