body {
    margin: 0;
    font-family: Arial;
    background: linear-gradient(to bottom right, white, #eef3ff);
}

.navbar {
    display: flex;
    justify-content: space-between;
    background: #0b3d91;
    color: white;
    padding: 10px 20px;
}

.navbar ul {
    display: flex;
    list-style: none;
    gap: 15px;
}

.navbar a {
    color: white;
    text-decoration: none;
}

.container {
    padding: 20px;
}

.card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 2px 8px rgba(0,0,0,0.1);
}

button, .btn {
    background: #0b3d91;
    color: white;
    padding: 8px 15px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
}

.navbar {
    background: #0b3d91;
    color: white;
    padding: 10px 20px;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

/* Links */
.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: white;
    text-decoration: none;
}

/* Right */
.nav-right {
    display: flex;
    gap: 15px;
    align-items: center;
}

.btn {
    background: white;
    color: #0b3d91;
    padding: 5px 10px;
    border-radius: 5px;
    text-decoration: none;
}

/* Hamburger */
.hamburger {
    display: none;
    cursor: pointer;
    font-size: 20px;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    flex-direction: column;
    background: #0b3d91;
    padding: 10px;
}

.mobile-menu a {
    color: white;
    padding: 5px 0;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-right {
        display: none;
    }

    .hamburger {
        display: block;
    }
}


footer/

body {
  font-family: Arial, sans-serif;
}

.footer {
  border-top: 1px solid #ddd;
  background: #f9f9f9;
  padding: 10px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  max-width: 900px;
  margin: auto;
}

.link-btn {
  color: blue;
  background: none;
  border: none;
  cursor: pointer;
}

/* Modal */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: flex;
  justify-content: center;
  align-items: center;
}

.hidden {
  display: none;
}

.modal-content {
  background: white;
  width: 90%;
  max-width: 700px;
  height: 85vh;
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  overflow: hidden;
}

.modal-header {
  background: #1e3a8a;
  color: white;
  padding: 10px;
  display: flex;
  justify-content: space-between;
}

.modal-body {
  flex: 1;
  overflow-y: auto;
  padding: 15px;
}

.modal-footer {
  padding: 10px;
  border-top: 1px solid #ddd;
  display: flex;
  gap: 10px;
}

.modal-footer button {
  flex: 1;
  padding: 10px;
  cursor: pointer;
}

#nextBtn {
  background: #2563eb;
  color: white;
  border: none;
}

#backBtn {
  background: #ddd;
  border: none;
}
