
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', sans-serif;
   
    }

    .header {
      
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 10px 20px;
    }

    .logo img {
      height: 50px;
    }

    .hamburger {
      display: none;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 4px;
      width: 35px;
      height: 30px;
      cursor: pointer;
      border: 2px solid #1f3493;
      border-radius: 5px;
      padding: 4px;
    }

    .hamburger div {
      width: 22px;
      height: 3px;
      background-color: #1f3493;
	  border-radius: 3px;
transition: all 0.3s ease;
    }

    .hamburger.open div:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.open div:nth-child(2) {
      opacity: 0;
    }

    .hamburger.open div:nth-child(3) {
      transform: rotate(-45deg) translate(5px, -5px);
    }

  .navbar{
display:flex;
align-items:center;
gap:20px;
}
.navbarmenu {
background-color: #dcdcdc;
padding: 8px 20px;
border-radius: 20px;
display: flex;
gap: 20px;
}
.navbarmenu a {
text-decoration:none;
color:#003366;
font-weight:500;
}

    .user-icon {
      font-size: 30px;
      color: #1f3493;
      cursor: pointer;
    }

    .hero {
      background-image: url('image/itpage.jpg');
      background-size: cover;
      background-repeat: no-repeat;
      background-position: center;
      min-height: 90vh;
      width: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding: 20px;
      position: relative;
    }

    .hero h1 {
      color: #1f3493;
      font-size: 2.8rem;
      margin-bottom:180px;
    }

    .filters {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 15px;
      width: 100%;
      max-width: 800px;
margin-bottom:200px;
    }

    .filter-row {
      display: flex;
      gap: 15px;
      justify-content: center;
      flex-wrap: wrap;
      width: 100%;

    }

    .filters select {
      height: 40px;
      width: 200px;
      border-radius: 5px;
      background-color: #e6f3ff;
      border: 1px solid #ccc;
      font-weight: bold;
      font-size: 15px;
    }

    .search-btn {
      background-color: #1f3493;
      color: #fff;
      font-weight: bold;
      font-size: 16px;
      border: none;
      border-radius: 5px;
      padding: 10px 20px;
      cursor: pointer;
    }

    .footer {
      text-align: center;
      margin: 20px 0 60px;
      font-size: 14px;
      color: #1f3493;

    }

    .footer a {
      color: #1f3493;
      text-decoration: none;
      margin: 0 10px;
      font-weight: bold;


    }

    
    @media (max-width: 768px) {
     .hamburger {
display: flex;
}
.navbarmenu {
display:none;
flex-direction: column;
position: absolute;
top: 70px;
left: 0;
width: 100%;
padding: 10px 0;
background-color: #f5f5f5;
z-index: 10;
}
.navbarmenu.active {
display: flex;
}

      .hero h1 {
        font-size: 1.8rem;
  margin-bottom: 100px;
      }

      .filters select {
        width: 90%;
      }

      .filter-row {
        flex-direction: column;
        align-items: center;
      }

      .search-btn {
        width: 90%;

      }
    }
  @media (max-width: 600px) {
  .hero { min-height: calc(var(--vh, 1vh) * 70); }
}
@media (min-width: 1440px) {
  .hero { padding: clamp(2rem, 4vw + 1rem, 5rem); }
}
