<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    font-size: 1.4rem; 
    padding: 0;
    background-color: #f3f3f3;
    color: #333;
}


.top-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #222;
    color: white;
    padding: 1rem;
    text-align: center;
    
}

.logo {
    display: flex;
    align-items: center;  /* Centers logo vertically */
    justify-content: center;  /* Centers logo horizontally */
    padding: 0.5rem;  /* Reduce padding for smaller background */
}

.logo img {
    max-width: 80px;
    margin-right: 10px;
}

.top-bar .logo {
    font-size: 1.7rem;  /* Adjust font size of the text */
}


/* 
.social-icons a {
    color: white;
    margin-left: 10px;
    text-decoration: none;
} */

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #0a7304;
    padding: 1rem 2rem;
    z-index: 1000;
    position: relative; /* Removed fixed positioning */
}

/* Hamburger Menu */
.hamburger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    z-index: 1100;
}

/* Hide hamburger menu in full-screen mode */
#mobile-menu {
    display: none;
    cursor: pointer;
}

/* Show hamburger menu only for small screens */
@media screen and (max-width: 768px) {
    #mobile-menu {
        display: block;
    }

    /* Hide nav links by default */
    #nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: #0a7304;
    }

    /* Show nav links when active */
    #nav-links.active {
        display: flex;
    }
}

.hamburger div {
    width: 30px;
    height: 3px;
    background-color: white;
    margin: 5px;
    transition: all 0.3s ease-in-out;
}

/* Animation for hamburger icon */
.hamburger.open div:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.open div:nth-child(2) {
    opacity: 0;
}
.hamburger.open div:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}


.nav-links {
    display: flex;
    gap: 20px;
    
}

.nav-links li {
    list-style: none;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 1.6rem;
    font-weight: 500;
}

.nav-links li a:hover {
    color: #fdb827;
}

.donate-btn {
    background: #fdb827;
    color: white;
    padding: 0.7rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 1.6rem;
    border-radius: 5px;
}


.hero {
    margin-top: 80px; /* Push below navbar */
    background: url('Jdpc pics/Front.jpg') no-repeat center center/cover;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero-content {
    background: rgba(0, 0, 0, 0.5);
    padding: 2rem;
    border-radius: 10px;
}

.hero-content h1 {
    font-size: 2.5rem;
}

.hero-buttons .btn-primary, .hero-buttons .btn-secondary {
    margin: 1rem;
    padding: 0.7rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 5px;
}

.btn-primary {
    background: orange;
    color: white;
}

.btn-secondary {
    background: white;
    color: #333;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        background: #0a7304;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        text-align: center;
        padding: 10px 0;
    }

    .nav-links.active {
        display: flex;
    }
}

/* Vision &amp; Mission Section Styles */
.vision-mission {
    text-align: center;
    padding: 50px 20px;
    background-color: #f5f5f5;
}
.vision-mission .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
}
.vision, .mission {
    max-width: 500px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}
.vision:hover, .mission:hover {
    transform: scale(1.05);
    background: #ffcc00;
    cursor: pointer;
    color: #0a7304;
}   

/* Core Values Section Styles */
.core-values {
    text-align: center;
    padding: 50px 20px;
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    color: white;
}
.values-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}
.value-circle {
    background: white;
    color: #333;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: bold;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, background 0.3s;
}
.value-circle:hover {
    transform: translateY(-5px);
    background: #ffcc00;
    cursor: pointer;
}


.significance{
  text-align: center;
  padding: 20px;
  /* border: 6px solid green; */
}
.image {
    /* border: 8px solid red; */
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
    
}

.image div {
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    width: 250px;
    transition: transform 0.3s ease-in-out;
}

.image div:hover{
    transform: scale(1.09);
    cursor: pointer;
}

.image img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 5px;
}

.image div p {
    margin-top: 10px;
    font-weight: bold;
    color: #333;
}

@media (max-width: 768px) {
    .image {
        flex-direction: column;
        align-items: center;
    }
}

footer {
    background-color: #222;
    color: white;
    text-align: center;
    padding: 1.5rem 0;
    margin-top: 2rem;
}
/* .partners {
    border: 6px solid red;
} */

/* .partners img {
    height:120px;
    padding: auto;
} */

/* Our Partners Section */
.partners {
    display: flex;
    justify-content: space-around; /* Distribute logos evenly */
    align-items: center; /* Vertically align logos */
    flex-wrap: wrap; /* Allow logos to wrap on smaller screens */
    gap: 20px; /* Adds space between logos */
    padding: 20px 0; /* Padding to ensure logos don't touch edges */
}

.partners img {
    height: 120px; /* Keep a default size for logos */
    object-fit: contain; /* Ensure logos maintain their aspect ratio */
    transition: transform 0.3s ease; /* Smooth transition for hover effect */
    max-width: 100%; /* Ensure images don't exceed their container */
}

/* Add hover effect to logos */
.partners img:hover {
    transform: scale(1.1); /* Slightly enlarge logos on hover */
}

/* Responsive for tablets and mobile (max-width: 768px) */
@media (max-width: 768px) {
    .partners {
        justify-content: center; /* Center logos horizontally */
    }

    .partners img {
        height: 100px; /* Slightly smaller logos on tablets */
        max-width: 90%; /* Prevent logos from overflowing */
    }
}

/* For very small screens (max-width: 480px) */
@media (max-width: 480px) {
    .partners {
        gap: 10px; /* Reduce gap between logos */
    }

    .partners img {
        height: 80px; /* Even smaller logos on very small screens */
    }
}   
</pre></body></html>