/* styles.css */
.navbar {
    background: #fff;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid #e5e7eb;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
}

.navbar-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 1rem;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-left {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.navbar-brand {
    font-size: 1.25rem;
    font-weight: bold;
    color: #111827;
    text-decoration: none;
}

.navbar-links {
    display: flex;
    gap: 1.5rem;
}

.navbar-link {
    color: #374151;
    text-decoration: none;
    padding: 0.5rem 0.75rem;
    border-radius: 0.375rem;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.2s;
}

.navbar-link:hover {
    color: #111827;
}

@media (max-width: 768px) {
    .navbar-links {
        display: none;
    }
}

body {
    margin: 0;
    font-family: 'Inter', Arial, sans-serif;
    background: #f8fafc;
    color: #1e293b;
}


/* style.css */
.hero-section {
    position: relative;
    width: 100vw;
    height: 75vh;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/desktop.jpg');
    background-repeat: no-repeat;
    background-position: center 20%;
    background-size: 80% auto;
    min-height: 100vh;
}

/* Tablet */
@media (max-width: 1024px) {
    .hero-bg {
        background-image: url('../images/tablet.jpg');
    }
}

/* Mobile */
@media (max-width: 600px) {
    .hero-bg {
        background-image: url('../images/mobile.jpg');
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.05);
}

/*@media (max-width: 600px) {*/
/*    .hero-section,*/
/*    .hero-bg {*/
/*        background-size: contain; !* Show the whole image *!*/
/*        background-position: top center;*/
/*        min-height: 120px;*/
/*        height: 120px;*/
/*        margin-top: 40px;*/
/*        padding-bottom: 100px; !* Reduced space below hero *!*/
/*    }*/
/*}*/

.mission-section {
    padding: 0 0;
    background: linear-gradient(to bottom, #f9fafb, #fff);
}

.mission-container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 1rem;
}

.mission-header {
    text-align: center;
    margin-bottom: 4rem;
}

.mission-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 1.5rem;
}

.mission-desc {
    font-size: 1.25rem;
    color: #4b5563;
    max-width: 700px;
    margin: 0 auto;
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.mission-image img {
    width: 100%;
    height: auto;
    border-radius: 0.75rem;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.mission-text {
    /* For spacing on small screens */
}

.mission-subtitle {
    font-size: 2rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 1.5rem;
}

.mission-text-desc {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 1.5rem;
}

.mission-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mission-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: #4b5563;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.mission-dot {
    width: 0.5rem;
    height: 0.5rem;
    background: #2563eb;
    border-radius: 50%;
    margin-top: 0.4rem;
    flex-shrink: 0;
    display: inline-block;
}

@media (min-width: 768px) {
    .mission-content {
        grid-template-columns: 1fr 1fr;
    }
}

.initiatives-section {
    padding: 5rem 0;
    background: #fff;
}

.initiatives-container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 1rem;
}

.initiatives-header {
    text-align: center;
    margin-bottom: 4rem;
}

.initiatives-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 1.5rem;
}

.initiatives-desc {
    font-size: 1.25rem;
    color: #4b5563;
    max-width: 700px;
    margin: 0 auto;
}

.initiatives-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: stretch;

}

.initiative-card {
    background: #fff;
    border-radius: 0.75rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    padding: 2.5rem 2rem 2rem 2rem;
    display: flex;
    height: 80%;
    flex-direction: column;
    align-items: flex-start;
    transition: box-shadow 0.3s;
}

.initiative-card:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.10);
}

.initiative-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.initiative-icon::after {
    content: "";
    width: 1.5rem;
    height: 1.5rem;
    background: #fff;
    border-radius: 50%;
    display: block;
}

.bg-green {
    background: #16a34a;
}

.bg-purple {
    background: #7c3aed;
}

.bg-blue {
    background: #2563eb;
}

.initiative-card-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 1rem;
}

.initiative-card-desc {
    color: #4b5563;
    font-size: 1rem;
    flex: 1;
}

@media (min-width: 768px) {
    .initiatives-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 1024px) {
    .initiatives-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 640px) {
    .initiatives-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .initiative-card {
        padding: 1.5rem 1rem 1rem 1rem;
    }
}

.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1e293b 0%, #1e40af 60%, #0f766e 100%);
}

.cta-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 1rem;
}

.cta-header {
    text-align: center;
    margin-bottom: 0;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 1.5rem;
}

.cta-desc {
    font-size: 1.25rem;
    color: #dbeafe;
    max-width: 600px;
    margin: 0 auto 2rem auto;
    line-height: 1.7;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    background: linear-gradient(90deg, #facc15 0%, #f97316 100%);
    color: #111;
    font-weight: 600;
    font-size: 1.125rem;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: background 0.3s, transform 0.3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.cta-btn:hover {
    background: linear-gradient(90deg, #fde047 0%, #fb923c 100%);
    transform: scale(1.05);
}

.cta-icon {
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.5rem;
}
.bg-yellow { background: #FFD600; }
.bg-orange { background: #FF9100; }
.bg-royal { background: #174B5B; }

.footer-section {
    background: #0f172a;
    color: #fff;
    padding: 3rem 0;
}

.footer-container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #fde047;
    margin-bottom: 1rem;
}

.footer-desc {
    color: #cbd5e1;
    line-height: 1.7;
}

.footer-subtitle {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.footer-social-link {
    color: #cbd5e1;
    transition: color 0.2s;
    display: flex;
    align-items: center;
}

.footer-social-link:hover {
    color: #fde047;
}

.footer-icon {
    width: 1.5rem;
    height: 1.5rem;
}

.footer-separator {
    height: 1px;
    background: #334155;
    margin-bottom: 2rem;
}

.footer-copyright {
    text-align: center;
    color: #94a3b8;
    font-size: 0.95rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

.initiatives-grid a {
    display: block;
    text-decoration: none;
    color: inherit;
}

.initiative-card {
    transition: box-shadow 0.2s;
}

.initiatives-grid a:hover .initiative-card {
    box-shadow: 0 8px 32px 0 rgba(30, 41, 59, 0.16);
}


/* Hide links and show hamburger on mobile */
@media (max-width: 768px) {
    .navbar-links {
        display: none;
        flex-direction: column;
        background: #fff;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        z-index: 1000;
    }

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

    .navbar-toggle {
        display: block;
        background: none;
        border: none;
        cursor: pointer;
    }

    .navbar-toggle-icon {
        /*width: 30px;*/
        /*height: 10px;*/
        /*background: #333;*/
        /*display: block;*/
        /*margin: 6px 0;*/
        /*border-radius: 2px;*/
        /*box-shadow: 0 2px #333, 0 4px #333;*/
    }
}

@media (min-width: 769px) {
    .navbar-toggle {
        display: none;
    }
}


.footer-location {
    text-align: center;
    color: #fde047;
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}

.navbar-icon-close {
    display: none;
}

.navbar-toggle.active .navbar-icon-open {
    display: none;
}

.navbar-toggle.active .navbar-icon-close {
    display: inline;
}

.footer-extra {
    text-align: center;
    margin: 0.5rem 0;
}

.footer-extra a {
    color: #fde047;
    text-decoration: underline;
    font-weight: 500;
}
