
/* General Reset */
* {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    box-sizing: border-box;
}

/* Navigation Bar */
.navbar {
    display: flex;
    flex-direction: column;
    font-family: Arial, sans-serif;
    align-items: center;
    background-color: #34834e;
    padding: 10px 20px; /* Adjusted for positioning */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
   
}


/* Logo and Title */
.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
font-size: 30px;
height: 100px;
margin-left: 1px;

}

    .logo img {
        height: 240px; /* Adjusted for perfect size */
        width: auto;
    }

    .logo h4 {
        font-size: 25px;
        line-height: 1.4;
        color: #f3eeee;
        margin: 0;
        text-align: left;
        font-weight: bolder;
    }


    /* Adjust Logo and Title for Small Screens */
@media (max-width: 768px) {
    .logo h4 {
        font-size: 30px; /* Reduce font size */
        line-height: 0;
        text-align: left; /* align the text */
        margin-bottom: 40px;
        
    }

    .logo {
        flex-direction: column; /* Stack the logo and title vertically */
        align-items: center;
    }

    .logo img {
        size: 200%;
    }

    .menuicon {
        position: absolute;
        top: 50px; /* Align it properly with the nav */
        right: 20px; /* Keep it to the right */
    }
}


/* Navigation Links */
  

.nav-links {
    list-style: none;
    display: flex;
    margin-left: 50px;
}

    .nav-links li {
        margin-left: 20px;
        font-size: 16px;
        margin-bottom: 50px;
        font-weight: bolder; 
        margin: 0 10px;
    }

    .nav-links a {
        text-decoration: none;
        color: #f3eeee; /* Matches navbar color scheme */
        padding: 5px 15px;
        border: 1px solid transparent;
        transition: background-color 0.3s ease, color 0.3s ease;
    }

        .nav-links a:hover {
            background-color: #f0ad4e;
            color: white;
            border-radius: 5px;
        }

        .menuicon{
           
            display: none;
            cursor: pointer;
        }
        .menuicon i span {
            font-weight: 600;
        }
        
        @media (max-width: 768px) {
            .nav-links {
              display: none;
            }
            .menuicon {
              display: block;
            }
          }
         
          .nav-links.show {
            display: flex; /* Display menu items */
            flex-direction: column; /* Stack them vertically */
            position: absolute; /* Position relative to parent */
            top: 60px; /* Adjust for menu placement */
            right: 20px;
            background-color: #34834e; /* Match navbar color */
            padding: 8px;
            border-radius: 5px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
            z-index: 1000;
            border: 1px solid #ddd;
            width: 150px;
        }
        
        @media (max-width: 768px) {
            .nav-links {
                display: none; /* Hide menu by default */
            }

            .nav-links.show a {
                font-size: 12px; /* Smaller font for phones */
                padding: 8px 3px;
            }
        }
           
        
        

/* Slideshow Styles */
.slideshow-container {
    position: relative;
    max-width: 100%;
    margin: auto;
    overflow: hidden;
}

.mySlides {
    display: none;
}

    .mySlides img {
        width: 100%;
        display: block;
    }

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    user-select: none;
}

.prev {
    left: 0;
}

.next {
    right: 0;
}



/* Impact Stats */
.impact-stats {
    display: flex;
    justify-content: space-around;
    align-items: center;
    text-align: center;
    padding: 30px 20px;
    margin-top: 20px;
    background: rgba(255, 255, 255, 0.1); /* Semi-transparent */
}

.stat {
    padding: 10px;
}

    .stat h2 {
        font-size: 2rem;
        color: #003366;
        margin-bottom: 10px;
    }

    .stat p {
        font-size: 1rem;
        color: #555;
    }

/* Mission Section */
.mission {
    text-align: center;
    background-color: transparent;
    color: white;
    padding: 40px 20px;
    margin-bottom: 20px;
    border-radius: 5px;
}

    .mission h2 {
        font-size: 2rem;
        margin-bottom: 10px;
        color: white;
        text-align: center;
    }

    .mission p {
        font-size: 1.1rem;
        margin-bottom: 20px;
        max-width: 600px;
        margin: 0 auto;
    }

.learn-more-btn {
    text-decoration: none;
    background: #f0ad4e;
    color: #fff;
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

    .learn-more-btn:hover {
        background-color: #d0892f;
    }

/* About Us Section */

/* Body Background with Image */
body {
    background: url("images/premium_photo-1672346462394-1073fbae6aa0.avif") no-repeat center center fixed;
    background-size: cover;
    color: #f3eeee; /* Text color to contrast with the background */
}

.about-us {
    text-align: center;
    padding: 50px 20px;
    background: transparent; /* Semi-transparent container for readability */
    margin: 20px auto;
    border-radius: 10px;
    max-width: 900px;
}

    .about-us h1, .about-us h2 {
        color: #f0ad4e;
        margin-bottom: 20px;
        font-size: 30px;
        font-weight: bold;
    }

    .about-us p {
        font-size: 1.1rem;
        line-height: 1.6;
        margin-bottom: 20px;
        color: white;
    }

/* Buttons */
.btn {
    text-decoration: none;
    background-color:#007BFF;
    color: #fff;
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

    .btn:hover {
        background-color: #d0892f;
    }

/* Impact Stats */
.impact-stats {
    display: flex;
    justify-content: space-around;
    align-items: center;
    text-align: center;
    background: whitesmoke; /* Semi-transparent for readability */
    padding: 30px 20px;
    margin: 20px auto;
    border-radius: 10px;
}

.stat {
    padding: 10px;
    color: #f3eeee;
}

    .stat h2 {
        font-size: 2rem;
        color: #f0ad4e;
        margin-bottom: 10px;
    }

    .stat p {
        font-size: 1rem;
        color: #f3eeee;
    }

/* Footer */
.footer {
    text-align: center;
    background: #34834e;
    color: #f3eeee;
    padding: 20px;
    margin-top: 20px;
}

    .footer a {
        color: #f0ad4e;
        text-decoration: none;
    }

        .footer a:hover {
            text-decoration: underline;
        }

/* Developer Section */
.developer p {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #f3eeee;
}

/* Responsive Design */
@media (max-width: 900px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px;
    }

    .nav-links {
        flex-direction: column;
        align-items: flex-start;
    }

        .nav-links li {
            margin: 10px 0;
        }

    .about-us {
        padding: 30px 10px;
        max-width: 90%;
    }

    .impact-stats {
        flex-direction: column;
    }

    .stat {
        margin-bottom: 20px;
    }
}

/* Programs Section */
.programs {
    padding: 50px 20px;
    text-align: center;
    margin: 20px auto;
    background: transparent; /* Semi-transparent */
    border-radius: 10px;
    max-width: 1000px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

    .programs .heading {
        font-size: 2.5rem;
        color:  #F0ad4e;
        margin-bottom: 20px;
    }

.program {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
    padding: 20px;
    background: #34834e;
   
    border-radius: 10px;
    color: #f3eeee;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

    .program img {
        max-width: 70%;
        height: auto;
        border-radius: 10px;
        margin-bottom: 15px;
    }

    .program h2 {
        font-size: 1.8rem;
        margin-bottom: 10px;
        color: #f0ad4e;
    }

    .program p {
        font-size: 1rem;
        line-height: 1.5;
    }

    .program a {
        color:  #34834e;
        text-decoration: underline;
    }

    .program:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
    }

/* Responsive Design */
@media (max-width: 900px) {
    .program {
        flex-direction: column;
    }

        .program img {
            width: 100%;
        }
}

/* Get Involved Page Styling */
.get-involved {
    text-align: center;
    padding: 50px 20px;
    color: #fff;
    text-shadow: 2px 2px 8px white;
    background: #34834e; /* Overlay effect for background image */
}
     


    .get-involved h1 {
        font-size: 3.5rem;
        color:  #34834e;
        margin-bottom: 20px;
        text-shadow: 0 0 20px #f0ad4e, 0 0 30px #f9d423;
        animation: glow 1.5s infinite alternate;
    }

    .get-involved p {
        font-size: 1.2rem;
        margin-bottom: 40px;
        
    }
    .get-involved a{
        color: white;

    }
    .about-us .program a{
        color: white;
    
    }
    .about-us .program p{
        color: white;
    }

/* Glow Animation */
@keyframes glow {
    from {
        text-shadow: 0 0 10px #f0ad4e, 0 0 20px #f9d423;
    }

    to {
        text-shadow: 0 0 20px #f0ad4e, 0 0 40px #f9d423;
    }
}

/* Cards Section */
.cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    padding: 20px;
}

.card {
    background: linear-gradient(135deg, #ffffff, #f9f9f9);
    border: 2px solid #ddd;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    width: 300px;
    overflow: hidden;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    position: relative;
}

    .card img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        border-radius: 10px 10px 0 0;
    }

    .card h2 {
        font-size: 1.5rem;
        margin: 15px 0;
        color: #00274d;
    }

    .card p {
        font-size: 1rem;
        margin: 10px 0;
        color: #555;
    }

    .card a {
        display: inline-block;
        margin-top: 15px;
        padding: 12px 25px;
        background: linear-gradient(90deg, #f0ad4e, white);
        color: #fff;
        font-size: 1rem;
        text-decoration: none;
        border-radius: 5px;
        transition: background 0.3s ease, transform 0.3s ease;
        font-weight: bold;
    }

        .card a:hover {
            background: linear-gradient(90deg, #f0ad4e, white);
            transform: scale(1.1);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

    .card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    }

    .card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle, rgba(0, 39, 77, 0.3), rgba(0, 0, 0, 0));
        opacity: 0;
        transition: opacity 0.3s ease;
        z-index: 1;
    }

    .card:hover::before {
        opacity: 1;
    }

/* Footer */
.footer {
    text-align: center;
    background-color: #34834e;
    color: #fff;
    padding: 20px 10px;
}

    .footer a {
        color: #f0ad4e;
        text-decoration: none;
        transition: color 0.3s ease;
    }

        .footer a:hover {
            color: #fff;
        }

/* Responsive Design */
@media (max-width: 900px) {
    .cards {
        flex-direction: column;
        align-items: center;
    }

    .card {
        width: 90%;
    }

    .navbar .nav-links {
        flex-direction: column;
        gap: 10px;
    }

    .get-involved h1 {
        font-size: 2.5rem;
    }

    .get-involved p {
        font-size: 1rem;
    }
}


/* Impact Section */
.impact {
    text-align: center;
    padding: 50px 20px;
    background-color: transparent;
}

    .impact .heading {
        font-size: 2.5rem;
        color:  #f0ad4e;
        margin-bottom: 20px;
        text-transform: uppercase;
        font-weight: bold;
    }

    .impact p {
        font-size: 1.2rem;
        margin-bottom: 40px;
        color: white;
    }

/* Impact Stats */
.impact-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.stat {
    background: linear-gradient(135deg, #34834e, #4aaa6a);
    color: #fff;
    padding: 20px 30px;
    border-radius: 10px;
    width: 200px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

    .stat:hover {
        transform: translateY(-10px);
    }

    .stat h2 {
        font-size: 2rem;
        margin-bottom: 10px;
        color: #f0ad4e;
    }

    .stat p {
        font-size: 1rem;
        margin: 0;
    }

/* Success Stories Section */
.success-stories {
    text-align: center;
    margin: 30px 20px;
    padding: 30px;
    background: transparent;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

    .success-stories h3 {
        font-size: 1.9rem;
        margin-bottom: 10px;
        color: #f0ad4e;
    }

    .success-stories p {
        font-size: 1rem;
        margin-bottom: 20px;
        color: white;
    }

    .success-stories .btn {
        display: inline-block;
        padding: 12px 25px;
        font-size: 1rem;
        font-weight: bold;
        color: #fff;
        background: linear-gradient(90deg, #f0ad4e, #ff8c00);
        text-decoration: none;
        border-radius: 5px;
        transition: background 0.3s ease, transform 0.3s ease;
    }

        .success-stories .btn:hover {
            background: linear-gradient(90deg, #ff8c00, #f0ad4e);
            transform: scale(1.1);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

/* Footer */
.footer {
    background-color: #34834e;
    color: #fff;
    text-align: center;
    padding: 20px 10px;
}

    .footer a {
        color: #f0ad4e;
        text-decoration: none;
        font-weight: bold;
        transition: color 0.3s ease;
    }

        .footer a:hover {
            color: #fff;
        }

/* Responsive Design */
@media (max-width: 768px) {
    .impact-stats {
        flex-direction: column;
        align-items: center;
    }

    .stat {
        width: 90%;
    }

    .navbar .nav-links {
        flex-direction: column;
        gap: 10px;
    }

    .impact .heading {
        font-size: 2rem;
    }
}

/* Partners Section */
.partners {
    background-image: url('../images/bckgrnd3.jfif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: overlay;
    background-color: #f9f9f9;
    padding: 20px;
   
    margin: 20px auto;
    width: 100%;
    max-width: 1500px;
    color: #333;
}

.partners {
    max-width: 1500px;
    margin: auto;
    padding: 2rem;
    background-color: #f9f9f9;
    text-align: center;
}

    .partners .heading {
        font-size: 2.5rem;
        margin-bottom: 15px;
        font-weight: 600;
        color: #131212;
    }

    .partners p {
        font-size: 1.1rem;
        color: #555;
        margin-bottom: 2rem;
    }

.partner-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(150px, 1fr));
    gap: 50px;
    align-items: center;
}

    .partner-logos img {
        max-width: 100%;
        height: auto;
        display: block;
        margin: 0 auto;
        border-radius: 8px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
    }

        .partner-logos img:hover {
            transform: scale(1.1);
        }

.become-partner {
    text-align: center;
    margin-top: 2rem;
}

.become-partner {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-top: 30px;
    text-align: center;
}

    .become-partner p {
        color: #666;
        margin-bottom: 1rem;
    }

.btn {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    color: #fff;
    background-color: #f0ad4e;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

    .btn:hover {
        background-color: #0056b3;
    }

    /* Media Queries for Responsiveness */
/* Small devices (mobile, 900px) */
    @media (max-width: 900px) {
        .partners {
            padding: 2rem;
            max-width: 100%;
        }
    }

    /* Small devices (mobile, 480px to 768px) */
@media (max-width: 768px) {

    .partners {
        padding: 2rem;
        text-align: center;
        max-width: 800px;
    }

    .partners .heading {
        font-size: 1.7rem;
    }

    .partners p {
        font-size: 1.1rem;
    }

    .partner-logos {
        grid-template-columns: repeat(2, 1fr);
    }
}

    /* Hide scrollbar on Chrome/Safari */
    .partner-logos::-webkit-scrollbar {
        display: none;
    }

    .become-partner h3 {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }

    .btn {
        padding: 0.5rem 1.2rem;
    }


/* Extra small devices (mobile, under 480px) */
@media (max-width: 480px) {
    .partners {
        padding: 20px 10px;
    }

    .partner-logos {
        grid-template-columns: repeat(1, 1fr);
    }
}

    .partners p {
        font-size: 1.1rem;
    }

    .become-partner h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }

    .btn {
        padding: 0.4rem 1rem;
    }


/* Medium devices (tablets, 768px to 1024px) */
@media (max-width: 1024px) {
    .partners .heading {
        font-size: 2rem;
    }

    .partners p {
        font-size: 1.1rem;
    }

    .partner-logos {
        /* Remove flex-direction: column */
        display: flex;
        flex-wrap: wrap; /* Allow logos to wrap if needed */
        justify-content: center;
        gap: 15px; /* Maintain spacing between logos */
    }

    

    .btn {
        padding: 0.5rem 1.5rem;
    }
}




/* Team Page */
.team-page {
    max-width: 1500px;
    margin: 0 auto;
}

h1 {
    text-align: center;
    margin-bottom: 30px;
    color: #34834e;
}

.team-section {
    margin-bottom: 70px;
}

    .team-section h2 {
        text-align: center;
        color: #555;
        margin-bottom: 20px;
    }

.team-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.team-member {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 200px;
    padding: 20px;
    transition: transform 0.3s;
}

    .team-member img {
        width: 100%;
        height: auto;
        border-radius: 5%;
        margin-bottom: 15px;
    }

    .team-member h3 {
        color: #34834e;
        font-size: 1.2rem;
        margin: 10px 0 5px;
    }

    .team-member p {
        color: #4b4a4a;
        font-size: 1rem;
    }

    .team-member:hover {
        transform: translateY(-5px);
    }

/* Footer */
.footer {
    background-color: #34834e;
    color: #fff;
    text-align: center;
    padding: 20px 10px;
    margin-top: 30px;
}

    .footer span {
        color: #f0ad4e;
    }

    .footer a {
        color: #f0ad4e;
        text-decoration: none;
        font-weight: bold;
        transition: color 0.3s ease;
    }

        .footer a:hover {
            color: #fff;
        }

/* Responsive Design */

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr; /* 1 column on small screens */
    }

    .team-section h2 {
        font-size: 1.5rem;
    }

    .team-member img {
        width: 120px;
        height: 120px;
    }

    .team-member h3 {
        font-size: 1rem;
    }

    .team-member p {
        font-size: 0.85rem;
    }
}



/* Footer */
.footer {
    text-align: center;
    background: #34834e;
    color: #f3eeee;
    padding: 20px;
    margin-top: 20px;
}

    .footer a {
        color: #f0ad4e;
        text-decoration: none;
    }

        .footer a:hover {
            text-decoration: underline;
        }

/* Developer Section */
.developer p {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #f3eeee;
}

/* Responsive Design */
@media (max-width: 900px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px;
    }

    .nav-links {
        flex-direction: column;
        align-items: flex-start;
        margin-top: 10px;
    }

        .nav-links li {
            margin: 10px 0;
        }

    .partners {
        padding: 2rem;
        max-width: 100%;
        height: 100%;
    }

    .partner-logos {
        flex-direction: column;
        gap: 20px;
    }
}


/* Contact Us */
.contact-us {
    background-image: url('../images/bckgrnd3.jfif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: overlay;
    background-color: rgba(255, 255, 255, 0.7);
    padding: 20px;
    color:  #34834e;
    border-radius: 10px;
    max-width: 1500px;
    margin: auto;
}


.contact-us {
    max-width: 1500px;
    margin: auto;
    padding: 2rem;
    text-align: center;
}


    .contact-us h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

.contact-info {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    color: #34834e;
}

    .contact-info a {
        color: #34834e;
        text-decoration: none;
    }

        .contact-info a:hover {
            text-decoration: underline;
        }

.social-links a {
    color: #007BFF;
    font-weight: bold;
    margin: 0 0.5rem;
}

.contact-form {
    text-align: center;
    margin-top: 2rem;
}

    .contact-form h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        color: #34834e;
    }

    .contact-form label {
        display: block;
        margin-top: 1rem;
        color: #34834e;
    }

    .contact-form input,
    .contact-form textarea {
        width: 40%;
        padding: 0.5rem;
        margin-top: 0.5rem;
        border: 1px solid #ddd;
        border-radius: 5px;
        align-items: center;
    }

    .contact-form .btn {
        display: block;
        width: 20%;
        padding: 0.5rem 1.5rem;
        color: #fff;
        background-color:  #34834e;
        text-decoration: none;
        border-radius: 5px;
        font-weight: bold;
        margin-left: 40%;
    }

.send-message-button {
    display: block;
    width: 20%;
    padding: 10px 20px;
    background-color:  #f0ad4e;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
    margin-left: 40%;
}

    .send-message-button:hover {
        background-color: #0056b3;
    }

.contact-form .btn:hover {
    background-color: #0056b3;
}

/* Donation Section 1 */
.Donation1 p, .Donation2 p, .Donation3 p {
    font-size: 1rem;
    line-height: 1.6;
    color: white;
    margin-bottom: 20px;
}

.Donation1 {
    background-image: url('../images/premium_photo-1672346462394-1073fbae6aa0');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: overlay;
    background-color:  #34834e;
    padding: 20px;
    border-radius: 10px;
    margin: 20px auto;
    width: 55%;
    max-width: 1500px;
    color: white;
}

.Donation2 {
    background-image: url('../images/premium_photo-1672346462394-1073fbae6aa0');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: overlay;
    background-color: #34834e;
    padding: 20px;
    border-radius: 10px;
    margin: 20px auto;
    width: 65%;
    max-width: 1500px;
    color: white;
}

.Donation3 {
    background-image: url('../images/premium_photo-1672346462394-1073fbae6aa0');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: overlay;
    background-color:  #34834e ;
    padding: 20px;
    border-radius: 10px;
    margin: 20px auto;
    width: 55%;
    max-width: 1500px;
    color: white;
}

.Donation1 h2 {
    font-size: xx-large;
    color: white;
    margin-right: 0 auto 20px;
    text-align: center;
}

.Donation1 p {
    font-size: 1rem;
    max-width: 800px;
    margin: 0 auto 20px;
    text-align: center;
}

.Donation2 h2 {
    font-size: xx-large;
    color: white;
    text-align: center;
}

.Donation2 p {
    font-size: 1rem;
    max-width: 800px;
    margin: 0 auto 20px;
    text-align: center;
}

.Donation2 ul {
    text-align: center;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 20px;
}

.Donation2 .ul p {
    text-decoration-thickness: 10px;
}

.Donation3 h2 {
    font-size: 2rem;
    color: white;
    text-align: center;
}

.Donation3 p {
    font-size: 1rem;
    text-align: center;
}

.Donation3 .donation-option {
    text-align: center;
    margin: 20px 0;
}

.Donation3 .bank {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: left;
    max-width: 600px;
    margin: 20px auto;
}

.Donation3 .bank p {
    font-size: x-large;
    line-height: 1.8;
    color: #333;
    margin: 10px 0;
}

.cta-button {
    background-color: #f0ad4e;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    margin: 10px 0;
}

    .cta-button:hover {
        background-color: #0056b3;
    }


/* Partnership Section */
.partnership {
    background-image: url('../images/bckgrnd3.jfif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: overlay;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 20px;
    border-radius: 10px;
    margin: 20px auto;
    width: 100%;
    max-width: 1500px;
    color: #333;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    max-width: 600px;
    margin: 20px auto;
}





    .partnership h2 {
        color: #333;
        margin-bottom: 10px;
        text-align: center;
    }

    .partnership p {
        color: #555;
        margin-bottom: 20px;
        text-align: center;
    }

    .partnership .benefits h3 {
        margin-bottom: 5px;
        color: #444;
        text-align: center;
    }

    .partnership li {
        margin-left: 20px;
        color: #555;
        text-align: center;
        margin-bottom: 10px;
    }

.cta-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #f0ad4e;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
    text-align: center;
    position: center;
}

    .cta-button:hover {
        background-color: #0056b3;
        text-align: center;
    }



/* Footer */
.footer {
    background-color: #34834e;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    margin-top: 30px;
}

    .footer span {
        color: #f0ad4e;
    }

    .footer a {
        color: #f0ad4e;
        text-decoration: none;
        font-weight: bold;
        transition: color 0.3s ease;
    }

        .footer a:hover {
            color: #fff;
        }

/* Responsive Design */
@media (max-width: 768px) {
    .navbar .nav-links {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .partnership h2 {
        font-size: 1.8rem;
    }

    .benefits li {
        font-size: 1rem;
    }

    .cta-button {
        font-size: 1rem;
    }
}


/* Volunteer Section */
.volunteer-section {
    padding: 40px 20px;
    text-align: center;
    background: transparent;
}

    .volunteer-section h1 {
        font-size: 2.5rem;
        margin-bottom: 20px;
        color: #34834e;
    }

    .volunteer-section p {
        font-size: 1.2rem;
        margin-bottom: 30px;
        color: #555;
    }

/* Volunteer Form */
.volunteer-form {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

    .volunteer-form label {
        display: block;
        margin: 15px 0 5px;
        font-size: 1rem;
        color: #003865;
        font-weight: bold;
    }

    .volunteer-form input,
    .volunteer-form select,
    .volunteer-form textarea {
        width: 100%;
        padding: 10px;
        border: 1px solid #ccc;
        border-radius: 5px;
        font-size: 1rem;
        margin-bottom: 15px;
        transition: border-color 0.3s ease;
    }

        .volunteer-form input:focus,
        .volunteer-form select:focus,
        .volunteer-form textarea:focus {
            border-color: #f0ad4e;
            outline: none;
        }

    .volunteer-form button {
        background-color: #f0ad4e;
        color: #fff;
        border: none;
        padding: 10px 20px;
        font-size: 1rem;
        border-radius: 5px;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }

        .volunteer-form button:hover {
            background-color: #003865;
        }

/* Footer */
.footer {
    background-color: #34834e;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    margin-top: 30px;
}

    .footer span {
        color: #f0ad4e;
    }

    .footer a {
        color: #f0ad4e;
        text-decoration: none;
        font-weight: bold;
        transition: color 0.3s ease;
    }

        .footer a:hover {
            color: #fff;
        }

/* Responsive Design */
@media (max-width: 768px) {
    .volunteer-section h1 {
        font-size: 2rem;
    }

    .volunteer-form {
        padding: 15px;
    }

        .volunteer-form label {
            font-size: 0.9rem;
        }

        .volunteer-form input,
        .volunteer-form select,
        .volunteer-form textarea {
            font-size: 0.9rem;
        }

        .volunteer-form button {
            font-size: 0.9rem;
        }
}



/* Hero Section */
.hero {
    background: #e6f3ff;
    text-align: center;
    padding: 50px 20px;
    margin-bottom: 20px;
}

    .hero h1 {
        font-size: 2.5rem;
        margin-bottom: 10px;
        color: #34834e;
    }

    .hero p {
        font-size: 1.2rem;
        color: #003865;
    }

/* Featured Stories Section */
.featured-stories {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

    .featured-stories h2 {
        font-size: 2rem;
        margin-bottom: 20px;
        color: white;
    }

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.story {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

    .story:hover {
        transform: translateY(-5px);
    }

    .story h3 {
        font-size: 1.5rem;
        margin-bottom: 10px;
        color: #34834e;
    }

    .story p {
        font-size: 1rem;
        margin-bottom: 10px;
        color: #555;
    }

.read-more-btn {
    text-decoration: none;
    background: #34834e;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 1rem;
    transition: background 0.3s;
}

    .read-more-btn:hover {
        background: #004d99;
    }

/* Video Stories Section */
.video-stories {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

    .video-stories h2 {
        font-size: 2rem;
        margin-bottom: 20px;
        color: white;
    }

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.video iframe {
    width: 100%;
    height: 200px;
    border: none;
    border-radius: 8px;
    margin-bottom: 10px;
}

.video p {
    font-size: 1rem;
    color: rgb(24, 22, 22);
}

/* Footer */
.footer {
    background: #34834e;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 20px;
}

    .footer span {
        color: white;
    }

    .footer .developer a {
        color: #0066cc;
        text-decoration: none;
    }

        .footer .developer a:hover {
            text-decoration: underline;
        }



/* footer Section */
.footer {
    text-align: center;
    background: #34834e;
    color: #fff;
    padding: 20px;
    font-size: 0.9rem;
    margin-top: 20px
}

    .footer .developer a {
        color: #f0ad4e;
        text-decoration: none;
    }

        .footer .developer a:hover {
            text-decoration: underline;
        }

/* Responsive Design for max-width 900px */
@media (max-width: 900px) {
    /* Navbar adjustments */
    .navbar .navbar menu {
        display: block;
        position: fixed;
        left: 0;
        top: 0;
        width: 300px;
        height: 100%;
        background: white;
        padding-top: 100px;
        align-items: center;
    }

    .navbar {
        flex-direction: column;
        align-items: flex-start;
        position: relative;
    }

    .logo {
        flex-direction: column;
        text-align: center;
    }

        .logo img {
            height: 80px;
        }

        .logo h4 {
            font-size: 10px;
        }

    .nav-links {
        display: none; /* Hidden by default */
        flex-direction: column;
        background-color: #cdd5dd;
        width: 100%;
        text-align: left;
        padding: 10px 0;
        position: absolute;
        top: 60px;
        left: 0;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    }

        .nav-links li {
            width: 100%;
            margin: 0;
            padding: 10px;
            text-align: left;
        }

        .nav-links a {
            display: block;
            width: 100%;
            font-size: 1.2rem;
            padding: 10px 20px;
            text-decoration: none;
            color: #f3eeee;
            transition: background-color 0.3s ease, color 0.3s ease;
        }

            .nav-links a:hover {
                background-color: #f0ad4e;
                color: white;
            }

    /* Slideshow adjustments */
    .slideshow-container {
        padding: 0 10px;
    }

    .prev, .next {
        font-size: 16px;
        padding: 8px;
    }

    /* Impact Stats adjustments */
    .impact-stats {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }

    .stat h2 {
        font-size: 1.8rem;
    }

    .stat p {
        font-size: 1rem;
    }

    /* Mission Section adjustments */
    .mission {
        padding: 20px;
    }

        .mission h2 {
            font-size: 1.8rem;
        }

        .mission p {
            font-size: 1rem;
        }

    .learn-more-btn {
        font-size: 0.9rem;
        padding: 8px 15px;
    }
}


/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        padding: 10px;
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
        margin-left: 0; /* Center align for smaller screens */
    }

        .nav-links li {
            margin: 10px 0;
        }

    .logo {
        margin-right: 0;
        text-align: center;
    }
}

/* Linkedin*/
:root {
    --primary-color: #0077b5;
    --shadow-light: #ffffff;
    --shadow-dark: #d1d9e6;
    --background: #ecf0f3;
}

[data-theme="dark"] {
    --primary-color: #00a0dc;
    --shadow-light: #2a2a2a;
    --shadow-dark: #1a1a1a;
    --background: #232323;
}

.container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
}

.theme-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    background: var(--background);
    box-shadow: 5px 5px 10px var(--shadow-dark), -5px -5px 10px var(--shadow-light);
    transition: all 0.3s ease;
}

    .theme-toggle:hover {
        transform: scale(1.1);
    }

.linkedin-icon {
    width: 80px;
    height: 80px;
    border-radius: 15px;
    background: var(--background);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 6px 6px 12px var(--shadow-dark), -6px -6px 12px var(--shadow-light);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .linkedin-icon::before {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        background: linear-gradient(45deg, transparent, rgba(0, 119, 181, 0.1), transparent);
        transform: translateX(-100%);
        transition: transform 0.6s ease;
    }

    .linkedin-icon:hover::before {
        transform: translateX(100%);
    }

    .linkedin-icon:hover {
        transform: translateY(-5px);
        box-shadow: 8px 8px 16px var(--shadow-dark), -8px -8px 16px var(--shadow-light);
    }

    .linkedin-icon:active {
        transform: translateY(2px);
        box-shadow: 4px 4px 8px var(--shadow-dark), -4px -4px 8px var(--shadow-light);
    }

    .linkedin-icon i {
        font-size: 2.5rem;
        color: var(--primary-color);
        transition: all 0.3s ease;
    }

    .linkedin-icon:hover i {
        transform: scale(1.1);
    }

@media (max-width: 768px) {
    .linkedin-icon {
        width: 60px;
        height: 60px;
    }

        .linkedin-icon i {
            font-size: 2rem;
        }
        
        .Donation1, .Donation2, .Donation3 {
            padding: 30px 15px;
            width: 100%;
        }

        .Donation1 h2, .Donation2 h2, .Donation3 h2 {
            font-size: 1.5rem;
        }
    }

    /* contact-us social icons*/


    .social-icons i {
        font-size: 40px; /* Adjust the size as needed */
        margin: 10px; /* Space between icons */
        color: #34834e; /* Icon color */
        transition: transform 0.3s; /* Optional: add a hover effect */
    }
    
    .social-icons i:hover {
        transform: scale(1.1); /* Optional: make the icon slightly larger on hover */
    }

    .Donation3 .bank p{

    text-align: center;
    font-size: x-large;

    }

    .Donation3  h2{

        text-align: center;
        font-size: xx-large;
        }

        /* reCAPTCHA Styling */
.g-recaptcha {
    display: flex;
    justify-content: center;
    margin: 15px 0;
}

button {
    background-color: #f0ad4e; /* Blue color */
    color: white;
    font-size: 16px;
    font-weight: bold;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

button:hover {
    background-color: #0056b3; /* Darker blue on hover */
    transform: scale(1.05); /* Slightly enlarges on hover */
}

button:active {
    background-color: #004494; /* Even darker on click */
    transform: scale(0.98); /* Slightly shrinks on click */
}
