.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(6px);
    padding: 0px 0;
    transition: all 0.3s ease-in-out;
}

/* When scrolling */
.nav-overlay.scrolled {
    background: rgba(0, 0, 0, 0.85);
    padding: 5px 0;
}
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&amp;display=swap');
body {
    margin: 0;
    padding: 0;
    font-family: "Inter", sans-serif;
    background-image: url("/web/jakarta.faces.resource/images/hero.jpg.xhtml");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    min-height: 100vh;
    display: block;  /* was flex, removed to allow natural scroll */
    line-height: 1.6;
}

.partner-container{
    justify-content: center;
    margin: 10% 25%;
    text-align: center;
}
/* Grid layout: 3 columns */
.partner-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    justify-items: center;
    margin: 10% 0;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    padding-top: 10%;
}

/* Initially show only first 6 partners */
.partner-grid .partner-card {
    display: none;
}

.partner-grid .partner-card.show {
    display: block;
}

/* Show More button */
.show-more-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}

.show-more-wrapper::before,
.show-more-wrapper::after {
    content: "";
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
    margin: 0 15px; /* spacing between line and button */
}

.show-more-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50px;
    color: white;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.show-more-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* Responsive grid */
@media (max-width: 1024px) {
    .partner-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .partner-grid {
        grid-template-columns: 1fr;
    }
}

/* Map styling */
iframe {
    width: 100%;
    height: 400px;
    border: 0;
    margin-top: 50px;
    border-radius: 15px;
}
