* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: 1300px;
  margin: auto;
  padding: 0 16px;
}

/* Top Header */

.top-header {
  background: #fff;
  color: #000;
  font-size: 16px;
}

.top-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height:45px;
}

.top-header i {
  margin-right: 6px;
  color: #0052d4;
}

/* Main Header */

.main-header {
  background: linear-gradient(90deg, #0052d4, #4364f7, #6fb1fc);
  position: sticky;
  top: 0;
  z-index: 999;
}

.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo img {
  height: 35px;
}

.nav ul {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav a {
  color: #fff;
  font-weight: 500;
  font-size: 17px;
}

.nav a:hover {
  color: #000;
}

/* Button */

.btn {
  color: #ffffff;
  padding: 12px 22px;
  border-radius: 30px;
  border: 1px solid #fff;
  cursor: pointer;
  background-color: transparent;
  font-size: 16px;
}

.btn:hover {
  color: black;
  background-color: white;
  border: 1px solid #4c78dd;
}

/* Hamburger */

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #fff;
  transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile */

@media (max-width: 768px) {
  .logo img {
    height: 30px;
    padding-bottom: 4px;
  }

  .top-header {
    display: none;
  }

  .nav {
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background: #0a3d91;
    max-height: 0;
    overflow: hidden;
    transition: 0.4s;
  }

  .nav ul {
    flex-direction: column;
    padding: 20px;
  }

  .nav.open {
    max-height: 300px;
  }

  .hamburger {
    display: flex;
    padding-right: 10px;
    padding-bottom: 10px;
  }

  .cta {
    display: none;
    position: fixed;
    /* bottom:20px; */
    right: 20px;
    z-index: 9999;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  }
}

/* Popup */

.contact-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.contact-popup.active {
  display: flex;
}

.popup-box {
  /* background:url("/assets/images/home/subbanner.jpg") center/cover no-repeat; */
  background-color: rgb(243, 243, 243);

  padding:30px;
  width: 90%;
  max-width: 400px;
  border-radius: 8px;
  position: relative;
}

.popup-box input,
.popup-box select,
.popup-box textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
   background-color: rgb(243, 243, 243);
   outline: none;

}

.submit-btn {
  background: #0052d4;
  color: #fff;
  padding: 12px;
  border: none;
  width: 100%;
  border-radius: 4px;
  cursor: pointer;
}

.close-popup {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 22px;
  cursor: pointer;
}

.popup-box h2 {
  padding-bottom: 10px;
  text-align: center;
}
