* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  line-height: 24px;
}
body {
  position: relative;
  opacity: 0;
}

nav {
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
  position: sticky;
  background-color: #fff;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: center;
  column-gap: 420px;
  padding-bottom: 8px;
}

.nav-logo img {
  height: 50px;
  margin-top: 5px;
}

.nav-list {
  display: flex;
  gap: 42px;
  align-items: center;
  margin-top: 8px;
  list-style: none;
  padding: 0;
}

.nav-list li a {
  color: #424242;
  text-decoration: none;
  transition: color 0.2s ease;
  font-weight: 600;
  text-transform: uppercase;
}

.nav-list li a:hover {
  color: #0068ac;
}

.hamburger {
  display: none;
  cursor: pointer;
  background: transparent;
  outline: none;
  box-shadow: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  user-select: none;
}
a{
    -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

.hamburger .line {
  width: 25px;
  height: 2.2px;
  background-color: #116cab;
  margin: 2.5px;
  transition: all 0.5s ease;
}

.hamburger.active .line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active .line:nth-child(2) {
  opacity: 0;
}

.hamburger.active .line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.visa-info {
  width: 730px;
  min-width: 730px;
  padding-bottom: 20px;
  margin: 150px auto 5rem;
  background-color: #f7f7f7;
  transition: transform 0.5s ease, box-shadow 0.5s ease,
    background-color 0.5s ease;
}

.visa-info:hover {
  box-shadow: 0px 0px 6px 5px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
  background-color: #fff;
  position: relative;
  z-index: 997;
}

.blue-clr div {
  display: flex;
  justify-content: center;
  width: 18%;
  transition: width 0.3s ease-out;
}

.blue-clr div div {
  background: #0068ac;
  width: 64px;
  height: 5px;
}

.ref {
  text-align: center;
  color: #116cab;
  padding: 2rem 2rem 1.42rem;
  cursor: pointer;
  font-size: 18px;
  line-height: 40px;
  font-weight: 600;
}

.visa-info hr {
  height: 1px;
  width: 95%;
  border: none;
  margin: auto;
  background: #f3f0f0;
}

.data-container {
  display: flex;
  flex-wrap: wrap;
  color: #585858;
  padding: 20px 30px 0px 30px;
}

.info-photo {
  width: 152px;
  height: 200px;
  margin: 1px 20px 10px 40px;
}

.info-photo img {
  width: 100%;
}

.resp-info {
  display: flex;
  margin: 30px 40px 0px 10px;
}

.resp-info p {
  padding-left: 12px;
  width: 140px;
  height: 60px;
  font-size: 15px;
  font-weight: 500;
}

#info1 .resp-info {
  margin: 0;
}

#info1 p {
  width: 185px;
  height: 45px;
}

#info1 {
  margin-top: 20px;
  margin-left: 15px;
}

.button {
  text-align: center;
  width: fit-content;
  background-color: #036bb0;
  margin: auto;
  padding: 10px 16px;
  transition: background-color 0.4s;
}

.button:hover {
  background-color: #25597c;
}

.button a {
  font-size: 1.3rem;
  text-decoration: none;
  color: white;
  font-weight: 500;
}

footer {
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.5);
  text-align: center;
  background-color: #fff;
  padding: 10px 30px;
  font-weight: 500;
  text-transform: uppercase;
  position: fixed;
  width: 100%;
  bottom: 0;
  left: 0;
  color: #000;
  letter-spacing: -0.22px;
  z-index: 999;
}

@media (max-width: 1200px) {
  nav {
    column-gap: 225px;
  }

  .visa-info {
    width: 600px;
    min-width: 600px;
  }

  .info-photo {
    width: 150px;
    height: 180px;
    margin: 1px 20px 10px 16px;
  }

  #info1 {
    margin-left: 5px;
  }

  #info1 p:first-of-type {
    width: 140px;
  }

  .resp-info {
    margin: 40px 10px 20px 0px;
  }

  .resp-info p {
    padding-left: 5px;
    width: 130px;
  }

  .blue-clr div {
    width: 20%;
  }
}

@media (max-width: 1000px) {
  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: end;
    width: 80px;
    padding-bottom: 4px;
  }

  nav {
    column-gap: 420px;
  }

  .nav-list {
    background-color: #1d2738;
    flex-direction: column;
    align-items: start;
    width: 100%;
    gap: 2px;
    position: fixed;
    top: 48px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out, padding-top 0.3s ease-in,
      padding-bottom 0.3s ease-in;
    z-index: 998;
    padding-left: 5px;
  }

  .nav-list.active {
    max-height: 100%;
    padding-top: 7px;
    padding-bottom: 6px;
  }

  .nav-list li {
    width: 100%;
    padding: 15px 0px 9px 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  .nav-list li a {
    color: #fff;
    font-weight: 500;
    text-transform: none;
  }

  .nav-list li a:hover {
    color: #fff;
  }

  /* content inside main */
  .visa-info {
    margin: 300px auto 5rem;
    width: 690px;
  }
  .data-container {
    flex-direction: column;
    align-items: center;
  }
  .resp-info {
    flex-direction: column;
    align-items: center;
    margin-top: 0px;
    padding-bottom: 10px;
  }
  .resp-info p {
    text-align: center;
    height: auto;
    width: 100%;
    font-size: 1rem;
  }
  #info1 .resp-info {
    padding-bottom: 25px;
  }
  #info1 p {
    text-align: center;
    height: auto;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .hamburger {
    width: 80px;
    padding-bottom: 4px;
    padding-right: 20px;
  }
  nav {
    justify-content: space-between;
    column-gap: 0;
  }
  .nav-logo img {
    margin-left: 15px;
  }
  .visa-info {
    margin: 350px 30px 5rem;
    min-width: 0;
    width: auto;
  }
}
@media (max-width: 570px) {
  .blue-clr div {
    width: 62px;
  }
}
@media (max-width: 496px) {
  .visa-info {
    margin-top: 250px;
  }
}
@media (max-width: 424px) {
  .visa-info {
    margin-top: 70px;
  }
}

/* pre loader */
/* full‑screen blue block */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  opacity: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background: white;
  margin: 0;
}
.container {
  position: relative;
  width: 200px;
  height: 200px;
}

.ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: #0f68a6;
  border-left-color: #0f68a6;
  border-bottom-color: #0f68a6;
  animation: spin 0.4s linear infinite;
}

.ring.small {
  width: 50px;
  height: 50px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-duration: 1s;
}

.ring.medium {
  width: 75px;
  height: 75px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-top-color: #0f68a6;
  border-left-color: #0f68a6;
  border-bottom-color: #0f68a6;
  animation: spin 0.8s linear infinite reverse;
}

.ring.large {
  width: 100px;
  height: 100px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-top-color: #0f68a6;
  border-left-color: #0f68a6;
  border-bottom-color: #0f68a6;

  animation-duration: 1.5s;
}

@keyframes spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  50% {
    transform: translate(-50%, -50%) rotate(180deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
