/* RESET */
html, body {
  height: 100%;
  margin: 0;
  font-family: Segoe UI, sans-serif;
}

/* LAYOUT */
body {
  display: flex;
  flex-direction: column;
}

/* MAIN CONTENT */
.main-content {
  flex: 1;
}

/* NAVBAR */
.navbar {
  background: #ffffff;
  padding: 15px;
  border-bottom: 1px solid #ddd;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* MENU */
.menu {
  list-style: none;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
}

.menu li {
  position: relative;
  margin-left: 25px;
}

.menu a {
  text-decoration: none;
  color: #0b1f3a;
  font-weight: 500;
  transition: 0.3s;
}

.menu a:hover {
  color: #0d6efd;
}

/* MODERN DROPDOWN */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 120%;
  left: 0;
  background: #ffffff;
  padding: 20px;
  min-width: 260px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  animation: fadeIn 0.25s ease-in-out;
  z-index: 999;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

/* DROPDOWN CONTENT */
.dropdown-menu li {
  margin: 8px 0;
}

.dropdown-menu a {
  color: #333;
  font-size: 14px;
}

.dropdown-menu a:hover {
  color: #0d6efd;
}

/* SECTION TITLES */
.dropdown-menu strong {
  display: block;
  margin-top: 12px;
  margin-bottom: 5px;
  font-size: 13px;
  color: #0b1f3a;
  text-transform: uppercase;
}

/* ANIMATION */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* HERO */
.hero {
  color: white;
  padding: 100px;
  text-align: center;
  background-size: cover;
  background-position: center;
}

/* CONTENT */
.container {
  max-width: 1100px;
  margin: auto;
  padding: 40px;
}

/* FOOTER */
.footer {
  background: #0b1f3a;
  color: white;
  text-align: center;
  padding: 15px;
}