* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Nunito Sans", sans-serif;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  /* backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.25);
  -webkit-backdrop-filter: blur(10px);
   */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 40px;
}

.nav-link {
  text-decoration: none;
  padding: 0;
  font-weight: 600;
  color: #010101;
}

.nav-link:hover {
  color: #0056b3;
}

.logo {
  height: 50px;
  margin-left: 50px;
}

.navbar-toggle {
  display: none;
}

.btn-register {
  color: #fff;
  padding: 5px 10px;
  border-radius: 100px;
  background-color: #007bfff6;
  background-image: radial-gradient(93% 87% at 87% 89%,
      rgba(0, 0, 0, 0.23) 0%,
      transparent 86.18%),
    radial-gradient(66% 87% at 26% 20%,
      rgba(255, 255, 255, 0.41) 0%,
      rgba(255, 255, 255, 0) 69.79%,
      rgba(255, 255, 255, 0) 100%);
  box-shadow: 2px 19px 31px rgba(0, 0, 0, 0.2);
  font-weight: bold;
  font-size: 16px;
  border: 0;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  cursor: pointer;
  margin-right: 50px;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu {
  display: none;
  position: absolute;
  background-color: #ffffff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  top: 100%;
  left: 0;
  min-width: 180px;
  z-index: 1000;
}

.dropdown-menu li a {
  display: block;
  padding: 10px 15px;
  color: #010101;
  font-weight: 500;
  text-decoration: none;
}

.dropdown-menu li a:hover {
  background-color: #f1f1f1;
}


/* From Uiverse.io by adeladel522 */

.button2 {
  position: relative;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
  padding-block: 0.5rem;
  padding-inline: 1.25rem;
  background-color: #0d6efd;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #ffff;
  gap: 10px;
  font-weight: bold;
  border: 3px solid #ffffff4d;
  outline: none;
  overflow: hidden;
  font-size: 15px;
}

.icon {
  width: 24px;
  height: 24px;
  transition: all 0.3s ease-in-out;
}


.button2:hover {
  transform: scale(1.05);
  border-color: #fff9;
}

.button2:hover .icon {
  transform: translate(4px);
}

.button2:hover::before {
  animation: shine 1.5s ease-out infinite;
}

.button2::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 100%;
  background-image: linear-gradient(120deg,
      rgba(255, 255, 255, 0) 30%,
      rgba(255, 255, 255, 0.8),
      rgba(255, 255, 255, 0) 70%);
  top: 0;
  left: -100px;
  opacity: 0.6;
}

@keyframes shine {
  0% {
    left: -100px;
  }

  60% {
    left: 100%;
  }

  to {
    left: 100%;
  }
}


.whatsapp-button {
  margin-top: 10px;
  display: flex;
  /* align-items: center;
            justify-content: center; */
  width: 250px;
  /* max-width: 24rem; */
  padding: 0.75rem 1.5rem;
  gap: 0.5rem;
  color: #ffffff;
  background-color: #0056b3;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 1.125rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
}

.whatsapp-button:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
  outline: none;
  text-decoration: none;
  color: var(--bg-form);
}

.whatsapp-button:active {
  transform: translateY(1px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.08);
}

.whatsapp-icon {
  font-size: 1.5rem;
}

/* Mobile Responsive */
@media screen and (max-width: 840px) {
  .dropdown {
    position: relative;
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
  }

  .dropdown.active .dropdown-menu {
    display: block;
  }

  .navbar-toggle {
    display: block;
    position: fixed;
    right: 10px;
    top: 20px;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    padding: 10px 0;
    gap: 15px;
  }

  .navbar-toggle {
    margin-right: 15px;
  }

  .nav-links.active {
    display: flex;
  }

  .logo {
    height: 50px;
    margin-left: 0px;
  }

  .btn-register {
    margin-right: 0px;
  }
}

/*///////////////////////// footer//////////////////////////////////// */

ul {
  margin: 0px;
  padding: 0px;
}

.footer-section {
  background: #151414;
  position: relative;
}

.footer-cta {
  border-bottom: 1px solid #373636;
}

.single-cta i {
  color: #0056b3;
  font-size: 30px;
  float: left;
  margin-top: 8px;
}

.cta-text {
  padding-left: 15px;
  display: inline-block;
}

.cta-text h4 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 2px;
}

.cta-text span {
  color: #757575;
  font-size: 15px;
}

.footer-content {
  position: relative;
  z-index: 2;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-logo img {
  max-width: 230px;
}

.footer-text p {
  margin-bottom: 14px;
  font-size: 14px;
  color: #7e7e7e;
  line-height: 28px;
}

.footer-social-icon span {
  color: #fff;
  display: block;
  font-size: 20px;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  margin-bottom: 20px;
}

.footer-social-icon a {
  color: #fff;
  font-size: 16px;
  margin-right: 15px;
}

.footer-social-icon i {
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 38px;
  border-radius: 50%;
}

.fa-instagram {
  background: #d82694;
}

.fa-youtube {
  background: #cc2c2c;
}

.fa-linkedin {
  background: #007bb5;
}

.fa-telegram {
  background: #2ca5e0;
}

.footer-widget-heading h3 {
  margin-top: 20px;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 40px;
  position: relative;
}

.footer-widget-heading h3::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -15px;
  height: 2px;
  width: 50px;
  background: #0056b3;
}

.footer-links {
  display: flex;
  gap: 40px;
}

.quick-links,
.legal-links {
  white-space: nowrap;
}

.footer-widget ul {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-widget ul li {
  display: inline-block;
  width: 50%;
  margin-bottom: 12px;
}

.footer-widget ul li a:hover {
  color: #0056b3;
}

.footer-widget ul li a {
  color: #878787;
  text-transform: capitalize;
}

.subscribe-form {
  position: relative;
  overflow: hidden;
}

.subscribe-form input {
  width: 100%;
  padding: 14px 28px;
  background: #2e2e2e;
  border: 1px solid #2e2e2e;
  color: #fff;
}

.subscribe-form button {
  position: absolute;
  right: 0;
  background: #0056b3;
  padding: 13px 20px;
  border: 1px solid #0056b3;
  top: 0;
}

.subscribe-form button i {
  color: #fff;
  font-size: 22px;
  transform: rotate(-6deg);
}

.copyright-area {
  background: #202020;
  padding: 25px 0;
}

.copyright-text p {
  font-size: 14px;
  color: #878787;
  text-align: center;
  margin: auto 0;
}

.copyright-text p a {
  color: #0056b3;
}

.footer-menu li {
  display: inline-block;
  margin-left: 20px;
}

.footer-menu li:hover a {
  color: #0056b3;
}

.footer-menu li a {
  font-size: 14px;
  color: #878787;
}

/* ////////////media query///////////////// */

@media screen and (max-width: 840px) {
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    padding: 10px 0;
  }

  .nav-links.active {
    display: flex;
  }

  .fa-bars {
    font-size: x-large;
    color: #010101;
  }

  .copyright-text {
    padding: 0 10px;
  }
}