*{
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: 15px 20px;
}
.logo{
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;
transition:all 0.3s ease;
    }
.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;
    }
.index-section {
display: flex;
justify-content: center;
align-items: center;
flex-wrap: wrap;
text-align: center;
}
.content {
background-image: url('image/index.jpeg');
background-repeat: no-repeat;
background-size: cover;
background-position: center center;
min-height: 110vh;
width: 100%;
display: flex;
justify-content: center;
align-items: center;
padding: 40px 20px;
position:relative;
text-align: center;
}
.text {
max-width: 90%;
color: #1f3493;
}
.subheading {
font-size: 1.5rem;
font-weight: 400;
margin-bottom: 10px;
transform: translateX(60px);
color: #5DADE2;
}
.text h2{
font-size: 2.5rem;
font-weight: 700;
margin: 20px 0;
padding-left:50px;
color: #1f3493;
}
.line {
width:20%;
transform: translateX(60px);
margin: 10px auto 30px;
border: none;
border-top: 3px solid #ffcc00; 
opacity:0.9;
}
.button {
background-color: #ffcc00;
color:#000;
font-size: 1rem;
padding: 12px 20px;
border: none;
font-weight: 600;
cursor: pointer;
transition:background-color 0.3s ease;
margin-top: 30px;
margin-left:100px;
}
.button a{
text-decoration:none;
}
.button:hover{
background-color: #e6b800;
}
footer {
      text-align: center;
      font-size: 13px;
      padding: 20px;
      color: #001f3f;
      
    }

    footer a {
      color: #003366;
      margin: 0 10px;
      text-decoration: none;
      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;
}

.content {
padding: 60px 15px;
min-height: 50vh;
}
.subheading {
font-size: 0.85rem;
padding-right: 0;
transform: translateX(0);
}
.text h2 {
font-size: 1.2rem;
line-height: 1.2;
padding-left: 0;
}
.line {
transform: translateX(0);
width: 40%;
  }
.button {
font-size: 0.9rem;
padding: 10px 18px;
width: 80%;
margin: 20px auto 0;
display: block;
}

}