* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}


.navbar {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 15px 0;
  display: flex;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  z-index: 1000;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 40px;
  align-items:center;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  position: relative;
  display:inline-block;
  transition:0.3s ease;
}

.nav-links a:hover {
  transform: scale(1.1);
}

.dropdown{
    position: relative;
    display: inline-block;
}

.dropdown-content{
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(190, 190, 190, 0.516);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 10px;
    min-width: 160px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    overflow: hidden;
    z-index: 20;
}

.dropdown-content a{
    color: white;
    padding: 12px 16px;
    display: block;
    text-decoration: none;
    transition: 0.3s;
}

.dropdown-content a:hover{
    background: rgba(169, 169, 169, 0.639);
}

.dropdown:hover .dropdown-content{
    display: block;
}

.hero {
  height: 50vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 20px 20px; 
  background:
  linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.7)),#003262;
  background-size: cover;
  background-position: center 10%;
  text-align: center;
  position:relative;
}

.hero h1 {
  font-size: 60px;
  color: white;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
  margin-bottom: 30px;
}

.info {
  background: #003262;
  margin: 40px 20px;
  border-radius: 30px;
  padding: 60px 30px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  color: white;
}

.info-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.info-text {
  flex: 1;
}

.info-text h2 {
  font-size: 20px;
  margin-bottom: 15px;
  text-align: center;
}

.info-text h3 {
  margin-bottom: 15px;
  font-size:15px;
}

.info-text p {
  margin-bottom: 12px;
  line-height: 1.6;
  color: #f2f4ff;
}

.fee-card {
  background: rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  padding: 10px;
  flex: 1;
}

.fees {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
}

.extra{
    text-align:center;
}


footer {
  text-align: center;
  padding: 30px;
  color: white;
  background-color: #003262;
}

.icons {
  margin-top: 10px;
}

.icons a {
  color: white;
  font-size: 22px;
  margin: 0 10px;
  transition: 0.3s;
}

.icons a:hover {
  color: #ddd;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(0, 30, 70, 0.97);
    padding: 12px 0;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 10px 24px;
  }
}