/* ================= ROOT COLORS ================= */
:root {
    --blue-main: #0b4f8a;
    --blue-secondary: #1e73be;
    --light-blue: #eef5fc;
    --orange: #f58220;
    --text-dark: #0f172a;
    --text-muted: #475569;
    --footer-text: #e6edf5;
}

/* ================= RESET ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}

body {
    color: var(--text-dark);
    background: #ffffff;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* ===== TOP BAR ===== */
.top-bar {
    border-bottom: 1px solid #eee;
    padding: 12px 0;
}

.top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    width: 90px;
}

.contact {
    display: flex;
    gap: 40px;
    font-size: 13px;
    color: #475569;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.contact-item p {
    margin-top: 2px;
    font-size: 12.5px;
}

/* ===== MAIN NAV ===== */
.navbar {
    padding: 9px 0px 3px;
    background-color: #ffede0;
}

.nav-content {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links li a {
    text-decoration: none;
    font-size: 14px;
    color: #0f172a;
}

.nav-links li.active a,
.sub-nav-inner a.active {
    color: #f58220;
    font-weight: 600;
}

.join-btn {
    margin-left: auto;
    background: #f58220;
    border: none;
    color: #fff;
    padding: 10px 24px;
    border-radius: 999px;
    font-size: 14px;
    cursor: pointer;
}

/* ===== SUB NAV ===== */
.sub-nav {
    padding: 4px 0;
    background-color: #ffede0;
}

.sub-nav-inner {
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    gap: 18px;
    background: #2c6da4;
    padding: 12px 20px;
    border-radius: 14px;
}

.sub-nav-inner a {
    color: #fff;
    font-size: 13px;
    text-decoration: none;
    white-space: nowrap;
}

.sub-nav-inner a:hover {
    text-decoration: underline;
}

.logo .logo-row {
    display: flex;
    align-items: center;
}

.logo img {
    max-width: 90px;
}

.logo .logo-text {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    white-space: nowrap;
}

.hero {
    padding: 80px 0;
    position: relative;

    background:
        linear-gradient(to right,
            rgba(255, 255, 255, 0.96) 0%,
            rgba(255, 255, 255, 0.9) 30%,
            rgba(255, 255, 255, 0.6) 55%,
            rgba(255, 255, 255, 0.25) 75%,
            rgba(255, 255, 255, 0.1) 100%),
        url("assets/images/image.png");

    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
}

.hero .container {
    max-width: 1100px;
    margin: auto;
}

.hero-subtitle {
    font-size: 18px;
    font-style: italic;
    font-weight: 600;
    color: rgb(23 37 84 / var(--tw-text-opacity, 1));
    margin-bottom: 16px;
}

.hero h1 {
    font-size: 34px;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 20px;
}

.hero h1 span {
    font-weight: 600;
    color: #022462;
}

.hero p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

.highlight-orange {
    color: #f58220;
    font-weight: 600;
}

/* Extra spacing section */
.hero-extra {
    margin-top: 35px;
}

.established {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 20px;
}

/* Join Button */
.join-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #f58220;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    border-radius: 22px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.join-btn:hover {
    background-color: #d86f12;
}



/* ================= SECTION TITLES ================= */
.section-title {
    text-align: center;
    font-size: 30px;
    color: rgb(42 104 156 / var(--tw-text-opacity, 1));
    margin: 58px 0 50px;
}

/* ================= WHO WE SERVE ================= */
.cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.serve-card {
    background: var(--light-blue);
    padding: 26px;
    border-radius: 14px;
}

.serve-card h3 {
    color: rgb(42 104 156 / var(--tw-text-opacity, 1));
    font-size: 16px;
    margin-bottom: 14px;
}

.serve-card ul {
    list-style: none;
}

.serve-card li {
    position: relative;
    padding-left: 16px;
    font-size: 13.5px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.serve-card li::before {

    position: absolute;
    left: 0;
    font-size: 18px;
}

/* ================= OBJECTIVES ================= */
.objectives {
    max-width: 900px;
    margin: auto;
}

.objectives ul {
    list-style: none;
}

.objectives li {
    position: relative;
    padding-left: 18px;
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.objectives li::before {
    content: "•";
    position: absolute;
    left: 0;
    font-size: 20px;
}

/* ================= KEY INITIATIVES ================= */
.three-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.info-card {
    background: #f5f9fe;
    padding: 26px;
    border-radius: 14px;
}

.info-card h3 {
    color: var(--blue-main);
    font-size: 16px;
    margin-bottom: 14px;
}

.info-card ul {
    list-style: none;
}

.info-card li {
    position: relative;
    padding-left: 16px;
    font-size: 13.5px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.info-card li::before {
    content: "•";
    position: absolute;
    left: 0;
    font-size: 18px;
}

/* ================= FOOTER ================= */
.site-footer {
    background: var(--blue-main);
    color: var(--footer-text);
    position: relative;
    margin-top: 120px;
    font-family: "Inter", sans-serif;
}

.footer-wave {
    position: absolute;
    top: -80px;
    width: 100%;
    height: 80px;
    background: var(--blue-main);
    border-top-left-radius: 100% 80px;
    border-top-right-radius: 100% 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1.4fr 1fr;
    gap: 40px;
    padding: 90px 0 60px;
}

.footer-logo img {
    display: block;
    width: 89px;
}

.footer-logo p {
    font-size: 13px;
    color: var(--footer-text);
    max-width: 180px;
    line-height: 1.4;
}

.footer-links h4,
.footer-social h4 {
    color: var(--orange);
    font-size: 14px;
    margin-bottom: 14px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: var(--footer-text);
    text-decoration: none;
    font-size: 13px;
}

.footer-links ul li a:hover {
    color: var(--orange);
}

.footer-social .social-icons {
    display: flex;
    gap: 14px;
}

.footer-social .social-icons a {
    width: 36px;
    height: 36px;
    background: #fff;
    color: var(--blue-main);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s;
}

.footer-social .social-icons a:hover {
    background: var(--orange);
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    padding: 14px 0;
    font-size: 12.5px;
    display: flex;
    justify-content: space-between;
}

.footer-bottom a {
    color: var(--orange);
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

.footer-logo .logo-row {
    display: flex;
    align-items: center;
}

.footer-logo img {
    max-width: 90px;
    /* adjust as needed */
}

.footer-logo .logo-text {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    /* change if footer text color differs */
    white-space: nowrap;
}

/* Responsive */
@media(max-width: 1000px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 6px;
        text-align: center;
    }
}

.nav-links li.active a {
    color: #f58220;
    font-weight: 600;
}

.sub-nav-inner a.active {
    color: #f58220;
    font-weight: 600;
}

/* ================= RESPONSIVE HEADER & FOOTER ================= */

/* Tablet Styles (768px - 1024px) */
@media (max-width: 1024px) {

    /* Top Bar Responsive */
    .top-content {
        flex-wrap: wrap;
        gap: 16px;
    }

    .contact {
        gap: 24px;
        flex-wrap: wrap;
    }

    .contact-item {
        font-size: 12px;
    }

    .contact-item p {
        font-size: 11.5px;
    }

    /* Navbar Responsive */
    .nav-content {
        flex-wrap: wrap;
        gap: 16px;
    }

    .nav-links {
        gap: 20px;
        flex-wrap: wrap;
    }

    .join-btn {
        margin-left: 0;
        width: 100%;
        text-align: center;
    }

    /* Sub Nav Responsive */
    .sub-nav-inner {
        flex-wrap: wrap;
        gap: 12px;
        padding: 10px 16px;
    }

    .sub-nav-inner a {
        font-size: 12px;
    }
}

/* Mobile Styles (max-width: 768px) */
@media (max-width: 768px) {

    /* Top Bar Mobile */
    .top-bar {
        padding: 10px 0;
    }

    .top-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .logo img {
        width: 70px;
    }

    .logo .logo-text {
        font-size: 14px;
    }

    .contact {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .contact-item {
        width: 100%;
        font-size: 11.5px;
    }

    .contact-item .icon {
        font-size: 16px;
    }

    .contact-item p {
        font-size: 11px;
    }

    /* Navbar Mobile */
    .navbar {
        padding: 8px 0;
    }

    .nav-content {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .nav-links {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .nav-links li {
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

                                .nav-links li a {
                                    display: block;
                                    padding: 12px 0;
                                    font-size: 14px;
                                }
                
                                .join-btn {
                                    width: 100%;
                                    padding: 12px 24px;
                                    text-align: center;
                                }
                
                                /* Sub Nav Mobile */
                                .sub-nav {
                                    padding: 8px 0;
                                }
                
                                .sub-nav-inner {
                                    flex-direction: column;
                                    gap: 8px;
                                    padding: 12px 16px;
                                }
                
                                .sub-nav-inner a {
                                    padding: 8px 0;
                                    font-size: 12px;
                                    text-align: center;
                                    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
                                }
                
                                .sub-nav-inner a:last-child {
                                    border-bottom: none;
                                }
                
                                /* Footer Mobile */
                                .footer-content {
                                    grid-template-columns: 1fr;
                                    gap: 30px;
                                    padding: 60px 0 40px;
                                    text-align: center;
                                }
                
                                .footer-logo {
                                    display: flex;
                                    flex-direction: column;
                                    align-items: center;
                                }
                
                                .footer-logo p {
                                    max-width: 100%;
                                    margin-top: 12px;
                                }
                
                                .footer-links,
                                .footer-social {
                                    text-align: left;
                                }
                
                                .footer-social .social-icons {
                                    justify-content: center;
                                }
                
                                .footer-bottom {
                                    flex-direction: column;
                                    gap: 8px;
                                    text-align: center;
                                    padding: 16px 0;
                                }
                                }
                
                                /* Small Mobile Styles (max-width: 480px) */
                                @media (max-width: 480px) {
                                    .logo img {
                                        width: 60px;
                                    }
                
                                    .logo .logo-text {
                                        font-size: 13px;
                                    }
                
                                    .contact-item {
                                        font-size: 11px;
                                    }
                
                                    .nav-links li a {
                                        font-size: 13px;
                                    }
                
                                    .sub-nav-inner a {
                                        font-size: 11px;
                                    }
                
                                    .footer-content {
                                        padding: 50px 0 30px;
                                        gap: 24px;
                                    }
                
                                    .footer-logo img {
                                        width: 70px;
                                    }
                
                                    .footer-logo .logo-text {
                                        font-size: 14px;
                                    }
                                }
.sub-nav-inner a {
    text-decoration: none;
    font-weight: 500;
    white-space: nowrap;
}

.navbar .nav-link.active {
    font-weight: 600;
}

.btn.btn.ms-lg-3 {
    border-radius: 20px;
    color: white;
    background: #f58220;
}


/* for footer */
/* ================= FOOTER GRID (DEFAULT – DESKTOP) ================= */
.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* ================= TABLET & MOBILE ================= */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    /* Logo takes full width */
    .footer-logo {
        grid-column: 1 / -1;
    }

    /* Social icons also full width */
    .footer-social {
        grid-column: 1 / -1;
        margin-top: 10px;
    }
}

@media (max-width: 768px) {
    .footer-links ul li {
        margin-bottom: 2px;
    }

    .footer-links h4 {
        margin-bottom: 6px;
    }
}

div.serve-card ul,
div.info-card ul {
    padding-left: 0;
}
.navbar-nav .nav-link,
.sub-nav a {
    text-decoration: none;
    font-weight: 500;
}

.navbar-nav .nav-link:hover,
.sub-nav a:hover {
    text-decoration: underline;
}

.sub-nav.d-lg-none a {
    padding: 5px 0;
}

.sub-nav.d-lg-none .mobile-subnav-link {
    display: inline-block;
    padding: 5px 12px;
    margin-bottom: 8px;
    border-radius: 15px;
    text-decoration: none;
    color: #fff;
    background: #2c6da4;
}

.cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media (max-width: 768px) {
    .cards {
        grid-template-columns: 1fr;
    }

    .serve-card {
        padding: 16px;
    }
}

.three-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

@media (max-width: 768px) {
    .three-grid {
        grid-template-columns: 1fr;
    }

    .info-card {
        padding: 16px;
    }
}