/* CSS Reset */
@font-face {
    font-family: 'Avenis';
    src: url('../font/Avenis.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Avenis', sans-serif;
}
body {
    font-family: 'Avenis', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #ffffff;
}

/* Color Variables */
:root {
    --dark-blue: #003566;
    --midnight-blue: #001D3D;
    --gold-yellow: #FFC300;
    --white: #FFFFFF;
    --light-gray: #f5f5f5;
    --blue-text: #003566;
}

/* Header Styles */
header {
    background-color: var(--white);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 100;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    height: 40px;
    width: auto;
}

nav {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
    margin-left: 2rem;
}

.nav-links li {
    position: relative;
}

.nav-btn {
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s;
    margin: 0 0.5rem;
}

.nav-btn-blue {
    background-color: var(--dark-blue);
    color: var(--white);
}

.nav-btn-yellow {
    background-color: var(--gold-yellow);
    color: var(--dark-blue);
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Dropdown Menu */
.dropdown {
    display: none;
    position: absolute;
    background-color: var(--white);
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    z-index: 1;
    border-radius: 4px;
    margin-top: 0.5rem;
    padding: 0.5rem 0;
}

.dropdown li {
    display: block;
    width: 100%;
}

.dropdown a {
    display: block;
    padding: 0.8rem 1.2rem;
    color: var(--dark-blue);
    text-decoration: none;
    transition: background-color 0.3s;
}

.dropdown a:hover {
    background-color: #f1f1f1;
}

.nav-links li:hover .dropdown {
    display: block;
}

/* Main Content */
.main-content {
    padding: 3rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.content-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1000px;
    margin: 0 auto;
}

.logo-side {
    flex: 0 0 20%;
    padding-right: 2rem;
}

.content-logo {
    max-width: 100%;
    height: auto;
}

.text-side {
    flex: 0 0 75%;
}

.decorative-lines {
    display: flex;
    margin-bottom: 1.5rem;
    margin-top: 1rem;
}

.yellow-line {
    height: 3px;
    background-color: var(--gold-yellow);
    flex: 1;
    margin-right: 10px;
}

.blue-line {
    height: 3px;
    background-color: var(--dark-blue);
    flex: 0 0 100px;
}

.main-title {
    font-size: 2rem;
    color: var(--dark-blue);
    margin-bottom: 1.5rem;
    font-weight: normal;
}

.content-text {
    line-height: 1.6;
    color: var(--dark-blue);
}

.content-text p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.vision-mission-container {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin-top: 2rem;
}

.vision-box, .mission-box {
    flex: 1;
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.vision-title, .mission-title {
    font-size: 2rem;
    color: var(--dark-blue);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.vision-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--dark-blue);
}

.mission-list {
    list-style: none;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--dark-blue);
}

.mission-list li {
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1.5rem;
}

.mission-list li:before {
    content: "•";
    color: var(--dark-blue);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Decorative Lines */
.top-line {
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--gold-yellow) 30%, var(--dark-blue) 30%);
    margin-bottom: 2rem;
}

.bottom-line {
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--dark-blue) 40%, var(--gold-yellow) 40%);
    margin-top: 2rem;
}

/* Footer */
footer {
    background-color: var(--white);
    color: var(--blue-text);
    padding: 3rem 5% 2rem;
    margin-top: 3rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.footer-logo img {
    height: 150px;
    margin-right: 1rem;
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
}

.footer-logo-text h3 {
    font-size: 1.8rem;
    margin-bottom: 0.2rem;
}

.footer-logo-text p {
    font-size: 1rem;
    max-width: 250px;
}

.footer-address {
    margin-bottom: 2rem;
}

.footer-address h4, .footer-secretariat h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: normal;
}

.footer-address p, .footer-secretariat p {
    font-size: 0.9rem;
    line-height: 1.4;
}

.footer-statement {
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 500px;
    margin-bottom: 1rem;
}

.footer-statement-line {
    width: 120px;
    height: 3px;
    background: linear-gradient(to right, var(--gold-yellow) 60%, var(--blue-text) 60%);
    margin-top: 1rem;
}

.footer-social {
   
    display: flex;
    justify-content: flex-end;
    margin-top: 3rem;
}

.footer-social a {
    color: #001D3D;
    margin-left: 1rem;
    font-size: 1.5rem;
}

.footer-right {
    border-top: 1px solid #eee;
    padding-top: 2rem;
    margin-top: 2rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    text-align: right;
}

/* New section with background image */
.hero-banner {
    position: relative;
    margin-top: 2rem;
    margin-bottom: 2rem;
    height: 1000px;
    overflow: hidden;
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-content {
    position: absolute;
    top: 50%;
    text-align: center;
    padding: 2rem;
    background-color: rgba(255, 213, 0, 0.8);
    width: 50%;
    color: #333;
    font-size: 1.2rem;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Mobile Menu Toggle */
    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 20px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0;
        align-self: flex-end;
    }

    .bar {
        display: block;
        width: 100%;
        height: 2px;
        background-color: var(--dark-blue);
        border-radius: 2px;
        transition: all 0.3s ease-in-out;
    }

    .top {
        width: 100%;
        transform-origin: 0.5px 0.5px;
    }

    .middle {
        width: 100%;
        opacity: 1;
    }

    .bottom {
        width: 100%;
        transform-origin: 0.5px 0.5px;
    }

    /* Mobile Menu */
    .nav-links {
        position: fixed;
        top: -100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        transition: top 0.3s ease-in-out;
        z-index: 999;
    }

    .nav-links.active {
        top: 0;
    }

    .nav-links li {
        margin-bottom: 15px;
        position: relative;
    }

    .nav-btn {
        width: 100%;
        padding: 10px 0;
        text-align: left;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-radius: 4px;
    }

    .nav-btn:hover {
        background-color: #f8f8f8;
    }

    .dropdown {
        display: none;
        background-color: #f8f8f8;
        margin-top: 10px;
        padding: 0;
        border-radius: 4px;
    }

    .dropdown.active {
        display: block;
    }

    .dropdown a {
        padding-left: 20px;
    }

    /* Header Layout */
    header {
        padding: 1rem;
    }

    .logo-container {
        order: 1;
    }

    .mobile-menu-toggle {
        order: 2;
    }

    nav {
        order: 3;
    }

    /* Content Adjustments */
    .main-content {
        padding: 2rem;
    }

    .content-container {
        flex-direction: column;
    }

    .logo-side {
        margin-bottom: 2rem;
        padding-right: 0;
    }

    .text-side {
        width: 100%;
    }

    .main-title {
        font-size: 1.5rem;
    }

    .content-text p {
        font-size: 0.9rem;
    }

    .vision-mission-container {
        flex-direction: column;
    }

    .vision-box, .mission-box {
        margin-bottom: 2rem;
    }

    /* Hero Banner */
    .hero-banner {
        height: 300px;
    }

    .banner-content {
        width: 100%;
        font-size: 2rem;
    }

    .banner-content p {
        font-size: 1rem;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-statement {
        max-width: 100%;
    }

    .footer-social {
        justify-content: flex-start;
        margin-top: 2rem;
    }
}

/* Active navigation item */
.nav-btn.current {
    background-color: var(--gold-yellow);
    color: var(--dark-blue);
}

/* Optional: Change hover color for active item */
.nav-btn.current:hover {
    background-color: var(--gold-yellow);
    color: var(--dark-blue);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}








/* Add this CSS to your existing stylesheet */
:root {
    --primary-color: #003566;
    --secondary-color: #FFC300;
    --text-color: #333;
    --background-color: #fff;
    --border-color: #eee;
    --transition-speed: 0.3s;
}

.header {
    background-color: var(--background-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all var(--transition-speed) ease;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    height: 40px;
    width: auto;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--primary-color);
    transition: all var(--transition-speed) ease-in-out;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    background-color: var(--background-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
    transition: top var(--transition-speed) ease;
}

.mobile-menu.active {
    display: block;
    top: 0;
}

.menu-header {
    display: flex;
    justify-content: flex-end;
    padding: 15px 5%;
    background-color: var(--primary-color);
}

.close-button {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

.menu-content {
    padding: 0 5%;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
}

.mobile-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.mobile-nav li {
    margin-bottom: 15px;
    position: relative;
    width: 100%;
}

.nav-item {
    display: block;
    padding: 15px 0;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid var(--border-color);
    transition: all var(--transition-speed) ease;
    width: 100%;
    box-sizing: border-box;
}

.nav-item:hover {
    color: var(--secondary-color);
}

.mobile-dropdown {
    display: none;
    list-style: none;
    padding-left: 20px;
    margin-top: 10px;
    width: 100%;
}

.mobile-dropdown.active {
    display: block;
}

.dropdown-item {
    padding-left: 15px;
    font-weight: normal;
    color: var(--text-color);
    text-decoration: none;
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    width: calc(100% - 15px);
    box-sizing: border-box;
}

.dropdown-item:hover {
    color: var(--secondary-color);
}

@media (max-width: 768px) {
    .nav-links {
        display: none !important;
    }
    
    .mobile-menu-toggle {
        display: block !important;
    }
    
    .logo-container {
        flex: 1;
    }
}