* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}
/* ======= NAVIGATION BAR ====== */
.navbar {
    width: 100%;
    padding: 15px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #002244;
    color: white;
    position: relative;
    z-index: 100;
}

/* Logo */
.logo-box {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    height: 40px;
}

.site-title {
    font-size: 1.3rem;
    font-weight: bold;
}

/* Desktop Links */
.nav-links {
    display: flex; /* visible on desktop */
    gap: 20px;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #ffde59;
}

/* Burger */
.burger {
    display: none;
    cursor: pointer;
}

.burger-icon {
    height: 30px;
    width: 30px;
}

/* ----- LOGIN CARD ----- */
.login-container {
    display: flex;
    justify-content: center;
    margin-top: 80px;
}

.login-card {
    background: white;
    width: 350px;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.login-card h2 {
    text-align: center;
    margin-bottom: 20px;
}

.login-card label {
    font-weight: bold;
    margin-top: 10px;
    display: block;
}

.login-card input {
    width: 100%;
    padding: 10px;
    margin: 7px 0 15px 0;
    border: 1px solid #ccc;
    border-radius: 8px;
}

.login-card button {
    width: 100%;
    padding: 12px;
    background: navy;
    border: none;
    color: white;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
}

.login-card button:hover {
    opacity: .85;
}

.link {
    text-align: center;
    margin-top: 10px;
}

.link a {
    color: navy;
    font-weight: bold;
    text-decoration: none;
}
/*=====SHOW/HIDE PASSWORD=====*/
.eye-icon {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid #000;
  border-radius: 50%;
  cursor: pointer;
}

.eye-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background-color: #000;
  border-radius: 50%;
}

.eye-icon::after {
  content: "";
  position: absolute;
  top: 12px;
  left: 4px;
  width: 12px;
  height: 2px;
  background-color: #000;
  transform: rotate(45deg);
}

.eye-icon.closed::after {
  transform: rotate(0deg);
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 6px solid #000;
  background-color: transparent;
}
.showPassword {
    font-size: 15px;
    margin-bottom: 5%;
}

/* ===== FOOTER ===== */
.footer {
    background-color: #002244;
    padding: 30px 20px;
    text-align: center;
    color: white;
    margin-top: 4%;
}

.footer-title {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
}

.social-icon img {
    width: 35px;
    height: 35px;
    transition: transform 0.3s, filter 0.3s;
}

.social-icon img:hover {
    transform: scale(1.2);
    filter: drop-shadow(0 0 8px white);
}

.footer-copy {
    opacity: 0.7;
    font-size: 0.9rem;
}
/* ===== MOBILE MENU ===== */
@media (max-width: 768px) {
    #navLinks {
        position: fixed;
        top: -100%;
        left: 50%;
        transform: translateX(-50%);
        width: 500px;
        background: #002244;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 20px;
        border-radius: 8px;
        transition: top 0.4s ease;
        gap: 20px;
        z-index: 1000;
    }

    #navLinks.open {
        top: 70px;
    }

    /* Show burger icon */
    .burger {
        display: block;
    }/* mobile design*/
    .footer {
        padding: 25px 15px;
        height: 100%;
    }

    .footer-title {
        font-size: 1.2rem;
    }

    .social-links {
        gap: 15px;
    }

    .social-icon img {
        width: 30px;
        height: 30px;
    }

    .footer-copy {
        font-size: 0.8rem;
    }
}