body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background-color: #ebf5eb;
    width: 100%;
}

.top {
    background-image: url("background3.jpg");
    height: 750px;
    width: 100%;
}
.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

.top-bar h6 {
    color: rgb(2, 31, 6);
    font-size: 24px;
    font-weight: bold;
    float: left;
    margin: 0;
    margin-left: 10px;
    margin-top: 15px;
}

.top-bar img {
    width: 50px;
    height: 50px;
    float: left;
    margin-left: 20px;
}

.menu-icon {
    display: none;
    font-size: 30px;
    cursor: pointer;
    color: rgb(2, 31, 6);
    margin: 0;
}

.nav-links {
    list-style: none;
    display: flex;
    margin-right: 20px;
    float: right;
}
.nav-links li {
    margin: 0 15px;
}
.nav-links a {
    text-decoration: none;
    color: rgb(2, 31, 6);
    font-size: 18px;
    padding: 15px;
    transition: background-color 0.3s ease;
    border-radius: 30px 30px 30px 30px;
}
.nav-links a:hover {
    background-color: #80bb82;
}
.slogan-section {
    width: 100%;
    display: flex;
    align-content: center;
    padding: 50px 20px;
    animation: fadeUp 1s ease-out;
}
.slogan {
    padding: 40px;
    margin: 10px;
    margin-left: 60px;
    width: 800px;
}
.slogan .heading{
    font-size: 48px;
    color: #2f4f4f;
    margin: 10px;
}

.slogan .caption {
    margin: 20px;
    font-size: 12px;
    color: rgb(139, 189, 139)
}
.slogan button {
    margin-top: 50px;
    background-color: #4caf50;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 30px 30px 30px 30px;
    transition: background-color 0.3s ease;
    margin-left: 15px;
}
.slogan button:hover {
    background-color: #45a049;
}

.slogan button a {
    text-decoration: none;
    color: white;
}

.slider {
    float: right;
    margin-top: 20px;
    margin-left: 100px;
    width: 700px;
    height: 500px;
    border-radius: 20px 20px 20px 20px;
    overflow: hidden;
}

.slider img {
    object-fit: cover;
}

.slides {
    width: 500px;
    height: 500px;
    display: flex;
}

.slides input {
    display: none;
}

.slide {
    transition: 2s;
}

.slide img {
    width: 700px;
    height: 500px;
}

.navigation-manual {
    position: absolute;
    width: 700px;
    display: flex;
    justify-content: center;
    margin-top: 460px;
}

.manual-btn {
    border: 2px solid black;
    padding: 5px;
    border-radius: 10px;
    cursor: pointer;
    transition: 1s;
}

.navigation-auto {
    position: absolute;
    display: flex;
    width: 700px;
    justify-content: center;
    margin-top: 460px;
}

.navigation-auto div {
    border: 2px solid black;
    padding: 5px;
    border-radius: 10px;
    transition: 1s;
}

.navigation-auto div:not(:last-child) {
    margin-right: 40px;
}

#radio1:checked ~ .navigation-auto .auto-btn1 {
    background: black;
}

#radio2:checked ~ .navigation-auto .auto-btn2 {
    background: black;
}

#radio3:checked ~ .navigation-auto .auto-btn3 {
    background: black;
}

#radio4:checked ~ .navigation-auto .auto-btn4 {
    background: black;
}

.manual-btn:not(:last-child) {
    margin-right: 40px;
}

.manual-btn:hover {
    background: black;
}

#radio1:checked ~ .first{
    margin-left: 0;
}

#radio2:checked ~ .first{
    margin-left: -700px;
}

#radio3:checked ~ .first{
    margin-left: -1400px;
}

#radio4:checked ~ .first{
    margin-left: -2100px;
}

.content-section {
    padding: 20px;
    margin-left: 120px;
    width: 1300px;
}
.content-section h2 {
    font-size: 36px;
    color: #2f4f4f;
    margin-top: 50px;
}
.content-section p {
    font-size: 18px;
    color: #2f4f4f;
    line-height: 1.6;
    margin: 20px auto;
}
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in {
    opacity: 1;
    transform: translateY(0);
    animation: fadeUp 1s ease;
}

.bottom {
    background-color: #5c6363;
    width: 100%;
    height: 100px;
}

.top .message {
    padding: 20px;
    margin-top: 60px;
    margin-left: 70px;
    display: flex;
    width: 1000px;
}
.donate-middle {
    display: flex;
}

.message-img img {
    width: 430px;
    height: 430px;
    margin-left: 80px;
    margin-top: 80px;
}

.message h1 {
    font-size: 40px;
    color: #2f4f4f;
    margin-top: 60px;
}

.message #donate-content {
    font-size: 28px;
    color: #2f4f4f;
    margin-top: 10px;
}

.org-section {
    padding: 20px;
    margin-left: 40px;
    margin-top: 20px;
}

.org-section .organization {
    width: 1220px;
    height: 290px;
    background-color: #d3e9bf;
    border: 2px solid rgb(54, 138, 92);
    border-radius: 30px 30px 30px 30px;
    padding: 10px 30px;
    color: #2f4f4f;
    margin-bottom: 20px;
}

.organization h1 {
    font-size: 30px;
    margin-top: 10px;
}

.organization p {
    font-size: 20px;
    margin-bottom: 20px;
}

.organization a {
    display: block;
    padding: 20px;
    background-color: #133515;
    color: rgb(214, 230, 212);
    font-size: 15px;
    width: 160px;
    height: auto;
    border-radius: 20px 20px 20px 20px;
    text-decoration: none;
}

.organization a:hover {
    background-color: #18411b;
}

.organization .donate-btn {
    padding: 10px 20px;
    font-size: 20px;
    background-color: rgb(86, 199, 52);
    color: rgb(2, 70, 2);
    margin-top: 20px;
    border-radius: 20px 20px 20px 20px;
    cursor: pointer;
    border: none;
}

.organization .donate-btn:hover {
    background-color: rgb(68, 155, 42);
}

.donation-form {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.form-content {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    width: 90%;
    max-width: 350px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.close-btn {
    float: right;
    font-size: 28px;
    cursor: pointer;
    color: #333;
}

.close-btn:hover {
    color: #999;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #333;
}

.form-group input[type="text"],
.form-group input[type="number"],
.form-group input[type="file"] {
    width: 300px;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.donate-link {
    display: inline-block;
    background-color: #4caf50;
    color: white;
    padding: 10px 20px;
    text-align: center;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    text-decoration: none;
    margin-bottom: 20px;
}

.donate-link:hover {
    background-color: #43a347;
}

button[type="submit"] {
    background-color: #4caf50;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
    background-color: #45a049;
}

.summary-stats {
    padding: 40px;
    margin-left: 110px;
    margin-top: 80px;
    color:rgb(2, 31, 6);
    width: 900px;
}

.summary-stats h1 {
    font-size: 35px;
    margin-bottom: 45px;
}

.summary-stats h6 {
    font-size: 23px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.summary-stats p {
    font-size: 18px;
    margin-bottom: 40px;
}

.summary-stats ul {
    font-size: 18px;
}

.summary-stats li {
    margin-bottom: 10px;
}
.stats-middle {
    display: flex;
}
.summary-img img {
    width: 300px;
    height: auto;
    margin-left: 90px;
    margin-top: 180px;
}

.statistics {
    padding: 20px 150px;
    color: rgb(2, 31, 6);
    font-size: 17px;
    width: 910px;
}

.statistics h1 {
    font-size: 24px;
}

.statistics p {
    padding-left: 20px;
}



.graphs {
    margin-bottom: 40px;
}

.graphs img {
    width: 900px;
    height: auto;
    margin-left: 20px;
    margin-top: 20px;
}

.solution-stats {
    padding: 40px;
    margin-left: 110px;
    width: 910px;
}

.solution-stats h1 {
    font-size: 35px;
    margin-bottom: 45px;
}

.solution-stats h6 {
    font-size: 23px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.solution-stats p {
    font-size: 18px;
    margin-bottom: 40px;
}

hr {
    width: 1600px;
}

.about {
    color: rgb(2, 31, 6);
    margin-left: 110px;
    margin-top: 40px;
    width: 1200px;
}

.top .about {
    margin-top: 130px;
}

.about h5 {
    font-size: 30px;
    margin-bottom: 30px;
}

.about p {
    font-size: 22px;
    margin-bottom: 10px;
}

.about h6 {
    font-size: 25px;
    margin-bottom: 10px;
    margin-top: 10px;
}

.about h6 i {
    font-size: 22px;
    opacity: 50%;
}

.about ul {
    font-size: 22px;
}

.about li {
    margin-bottom: 10px;
}

.alert-content {
    display: none;
}

.alert {
    width: 100%;
    background: rgb(0,255,106);
    padding: 10px 20px;
    border-radius: 5px;
    text-align: center;
    font-size: 10px;
    font-weight: 900;
}

.raised {
    margin: 50px 100px;
}

.raised .raised-bar {
    border-radius: 40px 40px 40px 40px;
    height: 50px;
    width: 1000px;
    border: 2px solid #18411b ;
    display: flex;
    background-color: #d3dbd5;
    align-self: center;
    margin-left: 80px;
}

.raised-bar .colorbar {
    background-color: #4caf50;
    width: 20px;
    border-radius: 40px 0px 0px 40px;
}

.raised h6 {
    margin: 0px;
    margin-left: 500px;
    margin-bottom: 10px;
    font-size: 20px;
    color: #2f4f4f;
}

.raised-bar h6 {
    position: absolute;
    font-size: 20px;
    margin: 0px;
    margin-left: 460px;
    margin-top: 15px;
}
/* Responsive Design */
@media (max-width: 768px) {
    .body {
        width: 100%;
        overflow-x: hidden;
        margin: 0;
        padding: 0;
    }
    .top {
        height: 580px;
        width: 100%;
    }

    .top-bar h6 {
        font-size: 17px;
        margin-left: 10px;
        margin-top: 30px;
    }
    
    .top-bar img {
        width: 50px;
        height: 50px;
        float: left;
        margin-left: 10px;
        margin-top: 10px;
    }

    .menu-icon {
        display: block;
    }

    .nav-links {
        flex-direction: column;
        display: none;
        width: 100px;
        text-align: left;
        background-color: white;
        position: absolute;
        top: 60px;
        right: 0;
        left: 280px;
        z-index: 1000;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
        padding-left: 0;
    }

    .nav-links li {
        margin: 10px 0;
    }

    .nav-links li a {
        font-size: 12px;
    }

    .nav-links a:hover {
        background-color: transparent;
    }

    .slogan-section {
        padding: 20px 10px;
        width: 355px;
        height: 600px;
        align-content: center;
    }
    .slogan {
        padding: 10px;
        margin: 5px;
        margin-left: 18px;
        width: 300px;
    }
    .slogan .heading{
        font-size: 22px;
        margin: 5px;
    }

    .slogan .caption {
        margin: 7px;
        font-size: 7px;
    }
    .slogan button {
        margin-top: 20px;
        background-color: #4caf50;
        color: white;
        border: none;
        padding: 12px;
        font-size: 14px;
        cursor: pointer;
        border-radius: 30px 30px 30px 30px;
        transition: background-color 0.3s ease;
        text-decoration: none;
    }
    .slogan button:hover {
        background-color: #45a049;
    }
    
    .slider {
        float: left;
        position: absolute;
        width: 300px;
        height: 200px;
        margin-left: 30px;
        margin-top: 260px;
    }

    .slider img {
        width: 300px;
        height: 200px;
    }
    
    .slides {
        display: flex;
    }
    
    .navigation-manual {
        width: 100%;
        width: 160px;
        justify-content: center;
        margin-top: 180px;
        margin-left: 70px;
    }
    
    .manual-btn {
        border: 2px solid black;
        padding: 2px;
        border-radius: 10px;
        transition: 1s;
    }
    
    .navigation-auto {
        width: 160px;
        justify-content: center;
        margin-top: 180px;
        margin-left: 70px;
    }
    
    .navigation-auto div {
        border: 2px solid black;
        padding: 2px;
        border-radius: 10px;
        transition: 1s;
    }
    
    #radio2:checked ~ .first{
        margin-left: -300px;
    }
    
    #radio3:checked ~ .first{
        margin-left: -600px;
    }
    
    #radio4:checked ~ .first{
        margin-left: -900px;
    }
    
    .content-section {
        padding: 20px;
        margin-left: 20px;
        width: 290px;
    }
    .content-section h2 {
        font-size: 16px;
        color: #2f4f4f;
        margin-top: 20px;
    }
    .content-section p {
        font-size: 11px;
        color: #2f4f4f;
        line-height: 1.6;
        margin: 20px auto;
    }

    .summary-stats {
        padding: 10px;
        margin-left: 10px;
        margin-top: 30px;
        color:rgb(2, 31, 6);
        width: 300px;
    }
    
    .summary-stats h1 {
        font-size: 18px;
        margin-bottom: 25px;
    }
    
    .summary-stats h6 {
        font-size: 16px;
        margin-top: 5px;
        margin-bottom: 5px;
    }
    
    .summary-stats p {
        font-size: 12px;
        margin-bottom: 20px;
    }
    
    .summary-stats ul {
        font-size: 12px;
    }
    
    .summary-stats li {
        margin-bottom: 5px;
    }
    .stats-middle {
        display: inline;
    }
    .summary-img img {
        display: none;
    }
    
    .statistics {
        padding: 10px 20px;
        color: rgb(2, 31, 6);
        font-size: 12px;
        width: 300px;
    }
    
    .statistics h1 {
        font-size: 16px;
    }
    
    .statistics p {
        padding-left: 10px;
    }
    
    
    
    .graphs {
        margin-bottom: 20px;
    }
    
    .graphs img {
        width: 300px;
        height: auto;
        margin-left: 10px;
        margin-top: 10px;
    }
    
    .solution-stats {
        padding: 20px;
        margin-left: 10px;
        width: 310px;
    }
    
    .solution-stats h1 {
        font-size: 18px;
        margin-bottom: 25px;
    }
    
    .solution-stats h6 {
        font-size: 16px;
        margin-top: 5px;
        margin-bottom: 5px;
    }
    
    .solution-stats p {
        font-size: 12px;
        margin-bottom: 20px;
    }
    
    hr {
        width: 300px;
    }

    .top .message {
        padding: 10px;
        margin-top: 40px;
        margin-left: 20px;
        width: 300px;
    }
    .donate-middle {
        display: inline;
    }
    
    .message-img img {
        width: 100px;
        height: auto;
        margin-top: 20px;
        margin-left: 20px;
    }
    
    .message h1 {
        font-size: 18px;
        margin-top: 40px;
    }
    
    .message #donate-content {
        font-size: 16px;
        margin-top: 5px;
    }
    
    .org-section {
        padding: 5px;
        margin-left: 10px;
        margin-top: 5px;
    }
    
    .org-section .organization {
        width: 300px;
        height: auto;
        border-radius: 30px 30px 30px 30px;
        padding: 10px 15px;
        margin-bottom: 10px;
    }
    
    .organization h1 {
        font-size: 16px;
        margin-top: 5px;
    }
    
    .organization p {
        font-size: 12px;
        margin-bottom: 10px;
    }
    
    .organization a {
        display: block;
        padding: 5px;
        font-size: 8px;
        width: 90px;
    }
    
    .organization a:hover {
        background-color: #18411b;
    }
    
    .organization .donate-btn {
        padding: 5px 10px;
        font-size: 8px;
        margin-top: 10px;
        border-radius: 20px 20px 20px 20px;
    }
    
    .donation-form {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        justify-content: center;
        align-items: center;
        z-index: 1000;
    }
    
    .form-content {
        font-size: 10px;
        background-color: white;
        padding: 20px;
        border-radius: 10px;
        width: 90%;
        max-width: 200px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    
    .close-btn {
        float: right;
        font-size: 20px;
        cursor: pointer;
        color: #333;
    }
    
    .close-btn:hover {
        color: #999;
    }
    
    .form-group {
        margin-bottom: 8px;
    }
    
    .form-group label {
        display: block;
        margin-bottom: 5px;
        color: #333;
    }
    
    .form-group input[type="text"],
    .form-group input[type="number"],
    .form-group input[type="file"] {
        width: 140px;
        padding: 8px;
        border: 1px solid #ccc;
        border-radius: 4px;
        font-size: 10px;
    }
    
    .donate-link {
        display: inline-block;
        padding: 5px 10px;
        border-radius: 5px;
        font-size: 10px;
        margin-bottom: 10px;
    }
    
    button[type="submit"] {
        padding: 5px 10px;
        font-size: 10px;
        border-radius: 4px;
    }

    .about {
        margin-left: 20px;
        margin-top: 20px;
        width: 300px;
    }
    
    .top .about {
        margin-top: 80px;
    }
    
    .about h5 {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .about p {
        font-size: 12px;
        margin-bottom: 10px;
    }
    
    .about h6 {
        font-size: 14px;
        margin-bottom: 5px;
        margin-top: 10px;
    }
    
    .about h6 i {
        font-size: 13px;
    }
    
    .about ul {
        font-size: 12px;
    }
    
    .about li {
        margin-bottom: 5px;
    }

    .raised {
        margin: 20px 10px;
    }
    
    .raised .raised-bar {
        border-radius: 20px 20px 20px 20px;
        height: 15px;
        width: 300px;
        border: 2px solid #18411b ;
        margin-left: 20px;
    }
    
    .raised-bar .colorbar {
        width: 20px;
        border-radius: 40px 0px 0px 40px;
    }
    
    .raised h6 {
        margin-left: 110px;
        margin-bottom: 10px;
        font-size: 14px;
        color: #2f4f4f;
    }
    
    .raised-bar h6 {
        position: absolute;
        font-size: 10px;
        margin: 0px;
        margin-left: 120px;
        margin-top: 2px;
    }

    .alert {
        width: 60%;
    }
}
