/* ===============================
   GLOBAL RESET & BASE
================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Segoe UI", Arial, sans-serif;
    background: #f4f8fb;
    color: #333;
    line-height: 1.6;
}

/* ===============================
   HEADER & NAVBAR
================================ */
header {
    background: #004080;
    color: #fff;
}

.navbar {
    width: 100%;
    background: #004080;
}

/* NAV LIST */
.navbar ul {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 20px;
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
}

.navbar ul li {
    position: relative;
}

/* LINKS */
.navbar a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    padding: 6px 4px;
}

.navbar a:hover,
.navbar a.active-link {
    border-bottom: 2px solid #ffd700;
}

/* ===============================
   DROPDOWN (FIXED)
================================ */
#moreDropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #004080;
    list-style: none;
    min-width: 180px;
    z-index: 9999;
}

#moreDropdown li {
    padding: 10px;
    text-align: left;
}

#moreDropdown li a {
    display: block;
}

/* ===============================
   HAMBURGER
================================ */
.menu-toggle {
    display: none;
    font-size: 28px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 10px;
}

/* ===============================
   BANNER
================================ */
.banner img {
    width: 100%;
    display: block;
}

/* ===============================
   MAIN CONTENT
================================ */
main {
    max-width: 1200px;
    margin: 30px auto;
    padding: 25px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* ===============================
   HEADINGS
================================ */
h1, h2, h3 {
    color: #003366;
    margin-bottom: 15px;
}

h2 {
    border-bottom: 2px solid #003366;
    padding-bottom: 5px;
}

/* ===============================
   INFO SECTIONS
================================ */
.info-wrapper {
    margin-top: 30px;
}

.info-row.horizontal {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
}

.info-row.vertical {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-block {
    flex: 1;
    padding: 22px;
    background: #f9f9f9;
    border-radius: 8px;
    border: 1px solid #ddd;
    text-align: center;
}

.info-block.full {
    text-align: left;
}

/* ===============================
   BUTTONS
================================ */
.btn,
button {
    display: inline-block;
    padding: 10px 18px;
    background: #004080;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
}

.btn:hover,
button:hover {
    background: #0066cc;
}

/* ===============================
   FORMS
================================ */
form {
    max-width: 650px;
    margin: 25px auto;
    padding: 25px;
    background: #f9f9f9;
    border-radius: 8px;
}

form input,
form select,
form textarea {
    width: 100%;
    padding: 10px;
    margin: 8px 0 15px;
    border-radius: 5px;
}

/* ===============================
   TABLES
================================ */
table {
    width: 100%;
    border-collapse: collapse;
}

table th {
    background: #004080;
    color: #fff;
}

/* ===============================
   SLIDESHOW
================================ */
.slideshow-container {
    position: relative;
}

.mySlides img {
    width: 100%;
}

/* ===============================
   TEAM
================================ */
.team-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.team-member img {
    width: 150px;
    border-radius: 50%;
}

/* ===============================
   PARTNERS
================================ */
.partners-logos {
    display: flex;
    justify-content: center;
    gap: 35px;
    flex-wrap: wrap;
}

/* ===============================
   FOOTER
================================ */
footer {
    text-align: center;
    padding: 20px;
    background: #eee;
}

/* ===============================
   RESPONSIVE
================================ */

/* Tablet */
@media (max-width: 900px) {
    .info-row.horizontal {
        flex-direction: column;
    }

    .team-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 768px) {

    .menu-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #004080;
    }

    .navbar ul.open {
        display: flex;
    }

    .navbar ul li {
        text-align: center;
        padding: 12px;
    }

    /* Dropdown mobile fix */
    #moreDropdown {
        position: static;
    }

    .team-container {
        grid-template-columns: 1fr;
    }
}