/* RESET (IMPORTANT) */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}


body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* LOGO */
.logo img {
    width: 150px;
    height: auto;
}

/* NAVBAR */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 50px;
    background: #004080;
    color: white;
    position: relative;
}

/* NAV LINKS */
.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    align-items: center;
}

/* REMOVE absolute center (IMPORTANT FIX) */

/* LINKS */
.nav-links a {
    text-decoration: none;
    color: white;
    font-size: 16px;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #ffd700;
}

/* DROPDOWN */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 40px;
    left: 0;
    background: white;
    list-style: none;
    width: 160px;
    border-radius: 5px;

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.3s;
}

.dropdown-menu li {
    padding: 10px;
}

.dropdown-menu li a {
    color: black;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* BUTTONS */
.nav-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 8px 18px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
}

/* MENU ICON */
.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #004080;

        flex-direction: column;
        display: none;
        text-align: center;
        padding: 20px 0;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-buttons {
        display: none;
    }

    /* MOBILE DROPDOWN */
    .dropdown-menu {
        position: static;
        background: #003060;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
    }

    .dropdown.open .dropdown-menu {
        display: block;
    }

    .dropdown-menu li a {
        color: white;
    }
}



/* VICE PRINCIPAL SECTION */
.vice-section {
    padding: 80px 60px;
    background: #f5f5f5;
}

.vice-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;

    max-width: 1200px;
    margin: auto;
}

/* TEXT */
.vice-text {
    flex: 1;
}

.vice-text h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

.vice-text p {
    font-size: 17px;
    line-height: 1.9;
    color: #333;
}

/* IMAGE */
.vice-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.vice-image img {
    width: 100%;
    max-width: 380px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .vice-container {
        flex-direction: column;
        text-align: center;
    }

    .vice-section {
        padding: 40px 20px;
    }

    .vice-image img {
        max-width: 250px;
    }
}





.footer {
  background: linear-gradient(135deg, #0a3d62, #1e5f9e);
  color: white;
  padding: 50px 60px 20px;
}

/* CONTAINER */
.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

/* SECTIONS */
.footer-section {
  flex: 1;
  min-width: 250px;
}

.footer-section h2 {
  margin-bottom: 15px;
  font-size: 22px;
  border-bottom: 2px solid rgba(255,255,255,0.3);
  display: inline-block;
  padding-bottom: 5px;
}

.footer-section p {
  margin: 8px 0;
  font-size: 14px;
}

/* LINKS */
.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin: 8px 0;
}

.footer-section ul li a {
  color: white;
  text-decoration: none;
  transition: 0.3s;
}

.footer-section ul li a:hover {
  color: #00c3ff;
}

/* BRANCH */
.branch {
  margin-top: 15px;
}

.branch h3 {
  font-size: 16px;
  margin-bottom: 5px;
}

/* BOTTOM */
.footer-bottom {
  text-align: center;
  margin-top: 30px;
  padding-top: 15px;
  border-top: 1px solid rgba(255,255,255,0.3);
  font-size: 14px;
}


.footer {
    background: #004080;
    color: #fff;
    text-align: center;
    padding: 15px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 70px;
        right: 0;
        background: #004080;
        width: 200px;
        flex-direction: column;
        align-items: center;
        display: none;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .hero-content h1 {
        font-size: 28px;
    }
}