*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.contact-nav{
  display: flex;
  padding: 10px 15px;
  justify-content: space-between;
  align-items: center;
  background: #303394;
  color: #ffffffd8;
}
.contact{
  display: flex;
  gap: 20px;
  cursor: pointer;
  font-size: 12px;
}
.social-links{
  display: flex;
  gap: 15px;
}
.social-links i{
  display: flex;
  padding: 5px;
  border: 1px solid #5f5f7e;
  font-size: 14px;
  border-radius: 50px;
  width: 100%;
  transition: 0.4s ease-in-out;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.social-links i:hover{
  background: white;
  color: #1d1d4e;
}
.header{
  position: sticky;
  top: 0;
  z-index: 999;
}
.navbar{
  display: flex;
  justify-content: space-between;
  background: #1a65b4;
  align-items: center;
  height: 65px;
}
.logo img{
  height: 50px;
  padding-left: 40px;
}
.nav-links ul{
  display: flex;
  list-style: none;
  gap: 25px;
  align-items: center;
  padding-right: 100px;
}
.nav-links a{
  text-decoration: none;
  color: white;
  font-size: 16px;
  font-family: "Gupter";
}
.nav-links a:hover{
  color: #020327;
  transition: 0.3s ease-in;
}
.hamburger{
  display: none;
  font-size: 26px;
  color: white;
  cursor: pointer;
  padding-right: 20px;
}
.whatsapp-float{
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1;
}
.whatsapp-float img{
  width: 70px;
  height: 70px;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.whatsapp-float img:hover{
  transform: scale(1.1);
}
/* footer area */
footer{
  background-color: #1a65b4;
  padding: 50px 60px 20px 60px;
}
.footer-content{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 30px;
}
.footer-logo img{
  height: 40px;
}
.quick-socials{
  color: white;
  font-size: 16px;
  display: flex;
  gap: 30px;
}
hr{
  color: #eeeaea;
  margin-top: 20px;
}
.all-links{
  display: flex;
  justify-content: space-between;
  padding: 20px 40px 10px 40px;
  color: white;
}
.location{
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.location h4{
  font-weight: 800;
  font-size: 15px;
}
.location p{
  font-size: 12px;
  font-weight: 600;
}
.contactus{
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contactus h4{
  font-weight: 800;
  font-size: 14px;
}
.contactus p{
  font-size: 13px;
  font-weight: 600
}
.quick-links{
  display: flex;
  flex-direction: column;
  gap: 17px;
}
.quick-links h4{
  font-weight: 400;
  font-size: 16px;
}
.quick-links ul{
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.quick-links li {
  font-size: 13px;
  font-weight: 700;
}
.quick-links li:hover{
  color: #303394;
  transition: 0.3s ease-in-out;
  transform: translateX(-10px)
}
.email-sub{
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.email-sub h3{
 font-size: 16px;
 font-weight: 700;
}
.email-sub h6{
  font-size: 11px;
}
.email-form{
  border: 2px solid white;
  padding: 1px;
  border-radius: 16px;
}
.email-form input{
  padding: 5px;
  font-size: 16px;
  outline: none;
}
.email-form button{
  padding: 10px;
  background: #1a65b4;
  border-radius: 15px;
  cursor: pointer;
}
.email-form button:hover{
  background-color: #303394;
  transition: 0.3s ease-out;
}
.final-footer{
 display: flex;
 justify-content: space-between;
 color: white;
}
.terms{
  display: flex;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
}
@media (max-width: 820px){
  .all-links{
    padding: 10px;
  }
}
@media (max-width: 768px) {
  .hamburger{
    display: block;
  }
  .nav-links{
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #303394e0;
    display: none;
    flex-direction: column;
    text-align: center;
    padding: 20px 0;
  }
  .nav-links ul{
    flex-direction: column;
    gap: 20px;
    padding: 0;
  }
  .nav-links li:hover{
    transform: translateX(-6px);
    transition: 0.3s ease-in;
  }
  .nav-links.active{
    display: flex;
  }
  .navbar{
    padding: 10px;
  }
  .nav-links ul{
    flex-direction: column;
    padding-right: 0;
    gap: 15px;
  }
  .final-footer{
    font-size: 10px;
    gap: 10px;
  }
}
@media (max-width:740px){
 .email-sub{
  padding-left: 50px;
 }
 .email-form{
  display: flex;
 }
 .quick-links h4{
  font-size: 14px;
 }
}
@media(max-width:712px){
  .all-links{
    flex-wrap: wrap;
    gap: 10px;
  } 
  .email-sub{
    width: 100%;
    padding-top: 20px;
    text-align: center;
  }
  .email-form{
    justify-content: space-between;
  }
}
@media(max-width:680px){
  .quick-socials{
    font-size: 15px;
    gap: 10px;
  }
}
@media (max-width:611px){
  .contact-nav{
    display: none;
  }
}
@media (max-width:600px){
  .value-grid{
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    padding: 25px;
    gap: 20px;
  }
}
@media (max-width:564px){
  .footer-content{
    padding: 1px;
  }
  .quick-socials{
    font: 14px;
    gap: 10px;
  }
  .terms{
    font-size: 9px;
  }
}
@media(max-width:510px){
  .stat p{
    font-size: 12px;
  }
}
@media (max-width:480px) {
  .all-links{
  text-align: center;
  justify-content: center;
  }
  .email-sub{
  text-align: center;
  padding: 2px;
  }
  .email-sub h3{
  font: 14px;
  }
  .email-form input{
  width: 100%;
  }
  .email-form::placeholder{
  font-size: 5px;
  }
  .year p{
  font-size: 7px;
  }
  .terms{
  font-size: 8px;
  }
}

