*{
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    color: #130e0e;
    
}

a {
    text-decoration: none;
    color: #130e0e;
}
.topbar{
    background-color: #90a6c4;
    color: white;
    padding: 10px;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;

}
.top-bar h4 {
    margin: 0;
    font-size: 14px;
}
.social-icons a {
    margin-left: 10px;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.social-icons a:hover {
    transform: scale(1.1);
    filter: grayscale(50%);
}
.logo {
    max-width: 200px;
    mix-blend-mode: multiply;
    float: left;


}




.main{

    background-color: #567db4;
    color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%; 
}

.navbar{ 

    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px;
    

}
nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
}
nav ul li a {
    color:white;
    font-weight: bold;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.3s, font-size 0.3s  ease, transform 0.3s ease ;
}

nav ul li a:hover {
    color: #130e0e;
    
    transform: scale(1.05);
}
.donate-btn {
    background-color: #ff9900;
    color: white;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 10px;
}
.donate-btn:hover {
    background-color: #ffcc00;
}
.menu-toggle {
    display: none;
    background-color: transparent;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}
.menu-toggle:focus {
    outline: none;
}
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 0;
        background-color: #0047ab;
        width: 100%;
        text-align: center;
    }

    nav ul.showing {
        display: flex;
    }

    nav ul li {
        margin: 10px 0;
    }

    .navbar{
        flex-direction: column;
        align-items: flex-start;
    }
}
@media (max-width: 480px) {
    .navbar h1, .navbar h2 {
        font-size: 18px;
        text-align: center;
        margin: 5px 0;
    }

    .logo {
        max-width: 80px;
        
    }

    .topbar {
        flex-direction: column;
    }

    .topbar h4, .social-icons {
        margin-bottom: 5px;
    }
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #4A83B0; /* Slightly lighter blue */
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    z-index: 1;
}
.dropdown-content a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}



.dropdown:hover .dropdown-content {
    display: block;

}

.content {
    max-width: 800px;
    margin: 40px auto;
    text-align: center;
}

h1 {
    color: #130e0e;
    margin-bottom: 20px;
}
.content h2{
    color: #0047ab;
}


p {
    font-size: 1.2em;
    line-height: 1.3em;
    color: #130e0e;
    margin-bottom: 20px;
    letter-spacing: 0.8px;
    
}

.image-container img {
    max-width: 100%;
    height: auto;
    border: 2px solid #ddd;
    border-radius: 10px;
}

.join-now {
    margin-top: 30px;
}

.join-btn {
    background-color: #ff9900;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 10px;
    font-size: 1.2em;
}

.join-btn:hover {
    background-color: #ffcc00;
}

footer {
    background-color: #1E3A5F;
    color: white;
    padding: 20px;
    text-align: center;
    font-size: 0.9em;
}

footer a {
    color: white;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    iframe {
        width: 100%;
        height: auto;
    }

    .video-container {
        margin: 0 auto;
        width: 90%;
    }
}

.join-now {
    margin-top: 30px;
}

.join-btn {
    background-color: #ff9900;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2em;
}

.join-btn:hover {
    background-color: #ffcc00;
}

/* Footer Styles */
footer {
    background-color: #567db4; /* Dark blue background to match the theme */
    color: white;
    padding: 40px 0;
    text-align: left;
    font-size: 14px;
    line-height: 1.6;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-section {
    flex: 1;
    padding: 15px;
    min-width: 250px;
}

.footer-section h3 {
    color: black; /* Contrasting yellow color for headers */
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-section p, 
.footer-section ul {
    margin: 0;
    padding: 0;
}

.footer-section ul {
    list-style-type: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #130e0e;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ffcc00; /* Match the hover color with the section headers */
}

.social-icons {
    margin-top: 20px;
}

.social-icons a {
    display: inline-block;
    margin-right: 10px;
    font-size: 18px;
    color: white;
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
    transform: scale(1.1); /* Slightly increase the size on hover */
    color: #ffcc00; /* Change color to match headers */
}

.footer-bottom {
    background-color:  #90a6c4; 
    color: whitesmoke; 
    text-align: center;
    padding: 20px;
    margin-top: 20px;
}
.copy{
    color: black;
}
.footer-bottom p {
    margin: 0;
}


/* Responsive Adjustments */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
    }

    .footer-section {
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }
}





