* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: white;
}

.navbar {
    background-color: white;
    padding: 1rem 2rem;
    width: 100%;
    border-bottom: 1px solid #000000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    transform: scale(1.0);
}

/* Navigation Items */
.nav-items {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333333;
    font-size: 1rem;
    font-weight: 500; /* Default weight */
    transition: color 0.2s ease, text-shadow 0.2s ease;
    background-color: transparent !important;
}

/* Prevent movement by setting a minimum width */
.nav-link span {
    display: inline-block;
    min-width: max-content; /* Ensures text width remains constant */
}

/* Only apply bold visually without affecting spacing */
.nav-link:hover span, 
.nav-link:hover .dropdown-icon { 
    color: #00008B;
    font-weight: 500; /* Keep same font-weight */
    text-shadow: 0.5px 0 0 #000, -0.5px 0 0 #000;
}

.dropdown-item {
    text-decoration: none;
    color: #333333;
    font-size: 1rem;
    font-weight: 500; /* Prevents shifting */
    transition: color 0.2s ease, text-shadow 0.2s ease;
}

.dropdown-item:hover {
    color: #00008B;
    font-weight: 500; /* No bolding to prevent shift */
    text-shadow: 0.5px 0 0 #000, -0.5px 0 0 #000;
}

.bold:hover {
color: #00008B;
    font-weight: 500; /* No bolding to prevent shift */
    text-shadow: 0.5px 0 0 #000, -0.5px 0 0 #000;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

/* Dropdown styling */
.resources-dropdown {
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.dropdown-icon {
    width: 25px;
    height: 25px;
    margin-left: -5px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white !important;
    border: 1px solid #97b8e8;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    flex-direction: column;
    min-width: 150px;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out, visibility 0.3s;
}

.dropdown-item {
    padding: 10px 15px;
    color: black;
    text-decoration: none;
    display: block;
    white-space: nowrap;
    background-color: transparent !important;
}

.dropdown-item:hover {
    background-color: #97b8e8 !important;
}

.resources-dropdown:hover .dropdown-menu,
.dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.donate-btn {
    background-color: #232694 !important;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.2s ease;
}

.donate-btn:hover {
    background-color: #151b60 !important;
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 9999;
    position: relative;
}

/* Specifically target and force the hamburger bars to show */
.navbar .nav-container .hamburger-menu .bar1,
.navbar .nav-container .hamburger-menu .bar2,
.navbar .nav-container .hamburger-menu .bar3 {
    width: 30px;
    height: 3px;
    background-color: #333 !important;
    margin: 0;
    transition: 0.4s;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hamburger-menu {
        display: flex !important; /* Force display with !important */
    }

    .nav-items {
    position: fixed !important;
    top: 0 !important;
    right: -100% !important; /* Start off-screen */
    height: 100vh !important;
    width: 250px !important;
    background-color: white !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    padding: 80px 30px 30px !important;
    transition: right 0.3s ease-in-out !important;
    z-index: 999 !important; /* High z-index to appear above other content */
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1) !important;
}

    .nav-items.active {
        right: 0 !important; /* Force with !important */
display: flex !important;
    }

    .resources-dropdown {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
    }

    .dropdown-menu {
        position: static;
        width: 100%;
        opacity: 0;
        max-height: 0;
        overflow: hidden;
        visibility: hidden;
        box-shadow: none;
        border: none;
        background-color: transparent !important;
        transition: max-height 0.3s ease, opacity 0.3s ease, visibility 0.3s;
        transform: none;
        margin-top: 0.5rem;
    }

    .resources-dropdown.active .dropdown-menu {
        opacity: 1;
        visibility: visible;
        max-height: 500px;
    }

    .dropdown-icon {
        position: absolute;
        right: 0;
        transition: transform 0.3s ease;
    }

    .resources-dropdown.active .dropdown-icon {
        transform: rotate(180deg);
    }

    /* Transform hamburger to X when menu is open */
    .hamburger-menu.active .bar1 {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .hamburger-menu.active .bar2 {
        opacity: 0;
    }

    .hamburger-menu.active .bar3 {
        transform: rotate(45deg) translate(-5px, -6px);
    }
}
    .hero-section {
background-color: white;
padding: 4rem 2rem;
font-family: Arial, sans-serif;
display: flex;
justify-content: center; /* Ensures content is centered */
align-items: center;
min-height: 300px;
width: 100%;
margin: 0 auto; /* Centers the section */
box-sizing: border-box; /* Prevents unintended overflow */
}

.hero-content {
max-width: 1200px;
margin: 0 auto;
display: flex;
justify-content: space-between;
align-items: center;
width: 100%;
gap: 4rem;
}

.hero-title {
flex: 1;
}

.hero-title h1 {
font-size: 3.5rem;
color: #000;
margin: 0;
line-height: 1.2;
}

.hero-description {
flex: 1;
font-size: 1.1rem;
line-height: 1.6;
color: #333;
}

/* Mobile Fix */
@media (max-width: 768px) {
.hero-content {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
}

.hero-title h1 {
    font-size: 2.5rem;
}
}


    .youth-development {
background-color: white;
padding: 80px 20px;
}
.youth-development1 {
background-color: white;
padding: 80px 20px;
margin-top: -150px;
}

.content-wrapper {
max-width: 1200px;
margin: 0 auto;
display: flex;
gap: 60px;
align-items: center;
}

.text-content {
flex: 1;
}

h2 {
font-size: 40px;
line-height: 1.2;
margin-bottom: 24px;
color: #000;
}

.description {
font-size: 18px;
line-height: 1.6;
color: #333;
margin-bottom: 32px;
}

.image-container-no {
flex: 1;
max-width: 600px;
border-radius: 10px;
}
.image-container-long {
flex: 1;
max-width: 600px;
height: 400px;
overflow: hidden;
position: relative;
border-radius: 10px;
}

.image-container-long img {
width: 100%;
height: 150%;
object-fit: cover; /* Ensures the image covers the container */}

.team-image {
width: 100%;
height: auto;
border-radius: 8px;
object-fit: cover;
}

@media (max-width: 1024px) {
.content-wrapper {
    gap: 40px;
}

h2 {
    font-size: 32px;
}
}

@media (max-width: 768px) {
.content-wrapper {
    flex-direction: column;
}

.benefits-list {
    align-items: flex-start;
    text-align: left;
}

.text-content {
    text-align: center;
}

.benefits-list li {
    justify-content: center;
    font-size: 20px;
}

.image-container {
    order: -1;
}
.content-wrapper {
    max-width: 400px;
}
.image-container-long-F {
    margin-bottom: -100px;
    width: 70%;
}
}

@media (max-width: 480px) {
.youth-development {
    padding: 40px 20px;
}

h2 {
    font-size: 28px;
}

.description {
    font-size: 16px;
}

.benefits-list li {
    font-size: 15px;
}
}
.donate-btn {
        background-color: #1a237e;
        color: white;
        border-radius: 4px;
        text-decoration: none;
        font-weight: 500;
        transition: background-color 0.2s ease;
    }
   
.donate-btn:hover {
        background-color: #151b60;
    }
    * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.image-container-long-F {
flex: 1;
max-width: 600px;
height: 400px;
overflow: hidden;
position: relative;
border-radius: 10px;
}
.fourimage {
width: 50%;
}

.image-container-long-F img {
width: 100%;
height: 150%;
object-fit: cover; /* Ensures the image covers the container */}
.footer {
background-color: white;
padding: 60px 0 20px;
width: 100%;
}

.footer-content {
max-width: 1200px;
margin: 0 auto;
display: grid;
grid-template-columns: repeat(5, 1fr);
gap: 40px;
padding: 0 20px;
}

.footer-logo {
max-width: 150px;
}

.footer-logo-img {
width: 100px;
height: auto;
}

.footer-section h3 {
color: #000;
font-size: 18px;
margin-bottom: 20px;
font-weight: 600;
}

.footer-section ul {
list-style: none;
padding: 0;
}

.footer-section ul li {
margin-bottom: 12px;
}

.footer-section ul li a {
color: #333;
text-decoration: none;
font-size: 12px;
}

.footer-section ul li a:hover {
text-decoration: underline;
}

.subscribe-section {
grid-column: 5;
}

.subscribe-section p {
margin-bottom: 15px;
font-size: 14px;
}

.subscribe-form {
display: flex;
flex-direction: column;
gap: 10px;
}

.subscribe-input {
padding: 12px;
border: 1px solid #ccc;
border-radius: 4px;
font-size: 14px;
width: 100%;
}

.subscribe-button {
background-color: #232694;
color: white;
padding: 12px 24px;
border: none;
border-radius: 4px;
cursor: pointer;
font-size: 14px;
font-weight: 500;
}

.subscribe-button:hover {
background-color: #151b60;
}

.privacy-notice {
font-size: 12px;
color: #666;
margin-top: 10px;
}

.footer-bottom {
margin-top: 60px;
padding-top: 20px;
border-top: 1px solid #ccc;
}

.footer-bottom-content {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
display: flex;
justify-content: space-between;
align-items: center;
}

.footer-bottom p {
font-size: 14px;
color: #666;
}

.footer-links {
display: flex;
gap: 20px;
}

.footer-links a {
color: #666;
text-decoration: none;
font-size: 14px;
}

.footer-links a:hover {
text-decoration: underline;
}

.social-icons {
display: flex;
gap: 15px;
}

.social-icons a {
display: flex;
align-items: center;
justify-content: center;
}

.social-icons img {
width: 24px;
height: 24px;
}

@media (max-width: 1024px) {
.footer-content {
    grid-template-columns: repeat(3, 1fr);
}

.subscribe-section {
    grid-column: auto;
}
}

@media (max-width: 768px) {
.footer-content {
    grid-template-columns: repeat(2, 1fr);
}

.footer-bottom-content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
}

.footer-links {
    flex-direction: column;
    gap: 10px;
}
}

@media (max-width: 480px) {
.footer-content {
    grid-template-columns: 1fr;
}
}
.highlights-section {
        background: white;
        padding: 4rem 2rem;
        font-family: Arial, sans-serif;
    }

    .highlights-container {
        max-width: 1300px;
        margin: 0 auto;
    }

    .highlights-header {
        text-align: center;
        margin-bottom: 3rem;
    }

    .highlights-header h2 {
        font-size: 2.5rem;
        margin: 0 0 1rem 0;
        color: #000;
    }

    .highlights-header p {
        font-size: 1.1rem;
        color: #333;
        margin: 0;
    }

    .gallery-grid {
        display: grid;
        grid-template-columns: 416px 416px 416px;
        gap: 1rem;
        justify-content: center;
    }

    .gallery-column {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .gallery-item {
        position: relative;
        overflow: hidden;
        border-radius: 8px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.3s ease;
    }

    .gallery-item:hover img {
        transform: scale(1.05);
    }

    /* Left column */
    .gallery-item.left {
        height: 416px;
    }

    /* Middle column */
    .gallery-item.middle-small {
        height: 234px;
    }

    .gallery-item.middle-large {
        height: 416px;
        margin-top: 1rem;
    }

    /* Right column */
    .gallery-item.right {
        height: 416px;
    }

    @media (max-width: 1300px) {
        .gallery-grid {
            grid-template-columns: 1fr;
            gap: 1rem;
        }

        .gallery-column {
            gap: 1rem;
        }

        .gallery-item.left,
        .gallery-item.middle-small,
        .gallery-item.middle-large,
        .gallery-item.right {
            height: auto;
            aspect-ratio: 1/1;
        }

        .gallery-item.middle-small {
            aspect-ratio: 16/9;
        }

        .gallery-item.middle-large {
            margin-top: 0;
        }
    }

    .highlight {
        background-color: #80add8 !important; /* Your requested color */
        font-family: Arial, sans-serif;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-bottom: 200px;
        }
.up {
    margin-top: -50px;
}