*{
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;
    }
	
	
.homepage-bg{

background:url('image/homebg.jpeg');
background-repeat:no-repeat;
background-size:cover;
margin:0;
padding:30px;
}
.main {
max-width: 1200px;
margin:0 auto;
padding:20px;
background-color:#e6f3ff;
border-radius:50px 50px 50px 50px;
padding-top:15px;


}
.first {
background-image:url('image/homepage1.jpeg');
background-repeat:no-repeat;
background-size:100%; 
padding:100px 20px 20px 20px;
border-radius:45px;
text-align: center;
position:relative;
margin-top:-20px;
width:103%;
right:16;
height:350px;
  
}

h1 {
margin-top:80px;
font-size:58px;

font-weight: bold;
color: #1f1f1f;
}
.second {
display:flex;
justify-content:space-between;
gap:20px;
margin-top:50px;
text-align:center;
flex-wrap:wrap;

}
.box {
flex:1;
min-width:280px;
padding:20px;
}
h3 {
color: #1f3493;
margin-bottom: 10px;
}
.photo {
width:250px;
height:200px;
margin-bottom:10px;
}
p{
font-size:16px;
color:#333;
}
.third {
  background-color: #002b5c;
  color: white;
  text-align: center;
  padding: 40px 20px 20px 20px;
  margin-top: -35px; 
  width:83%;
  margin-left: auto;
  margin-right: auto;
  border-top-left-radius:60px;
  border-top-right-radius: 60px;
  border-bottom-left-radius: 60px;
  border-bottom-right-radius: 60px;
  position: relative;
  z-index: 2; 
}

.third h2{
font-size:28px;
font-weight:bold;
top:20px;
}

.three{
display:flex;
justify-content:space-between;
flex-wrap:wrap;
gap:30px;
}
.list{
flex:1;
min-width:200px;
}
.list h3 {
font-size:26px;
margin-bottom:10px;
color:white;
}
.list p{
font-size:16px;
color:white;
}
.fourth{
text-align:center;
margin-top:40px;
color:white;
}
.fourth p{
max-width:700px;
margin:10px auto;
font-style:istok web;
color:white;
font-size:16px;
}
.fourth h3{
color:white;
}

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;
}
.first {
    position: relative;
    width: 85vw;
    height:150px;
    background: url('image/homapage1.jpeg') no-repeat center center;
    background-size: cover;
    border-radius: 30px;
    overflow: hidden;
    padding-top: 30px;
	padding-right:8px;
    text-align: center;
    display: flex;
    align-items: flex-end;
    justify-content: center;
  }

  .first h1 {
font-size: 16px;       
line-height: 1.2;
text-align: center;
padding: 10px;
    max-width: 90%;
    word-break: break-word;
  }

.third {
  width:100%;
  margin: -30px auto 20px auto;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
  padding: 30px 15px 15px 15px;
  position: relative;
  z-index: 2;
}

.photo {
  max-width: 100%;
  height: auto;
}

h1 {
  font-size: 36px;
  margin-top: 40px;
}

.second {
  flex-direction: column;
  gap:20px;
}

.box {
  padding: 10px;
}



.fourth p {
  padding: 0 10px;
  font-size: 14px;
}

body {
  overflow-x: hidden;
}




}