* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:where([class^="ri-"])::before {
  content: "\f3c2";
}

.carousel-dots {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #cbd5e1;
  margin: 0 4px;
  cursor: pointer;
}

.carousel-dot.active {
  background-color: #0066cc;
}

.mail_area a:hover {
  color: #0066cc;
}

footer .mail_area a:hover {
  color: #fff;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.animate-fadeInUp {
  animation: fadeInUp 0.6s ease-out forwards;
}
.animate-scaleIn {
  animation: scaleIn 0.5s ease-out forwards;
}
.service-card {
  transition: all 0.3s ease;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.icon-wrapper {
  transition: all 0.3s ease;
}
.service-card:hover .icon-wrapper {
  transform: scale(1.1);
  background-color: rgba(0, 102, 204, 0.2);
}
.case-card {
  transition: all 0.3s ease;
}
.case-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.case-card img {
  transition: all 0.5s ease;
}
.case-card:hover img {
  transform: scale(1.05);
}
.social-icon {
  transition: all 0.3s ease;
}
.social-icon:hover {
  transform: translateY(-3px);
  color: #0066cc;
}
.nav-link {
  position: relative;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #0066cc;
  transition: width 0.3s ease;
}
.nav-link:hover::after {
  width: 100%;
}

.change_language button {
  font-size: 18px;
}
.change_language button:hover {
  color: #0066cc !important;
}
nav .nav-bar a {
  font-size: 18px;
}

/* H5 */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 100;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #333;
  margin: 5px 0;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  nav {
    display: none;
  }

  header nav.show .nav-bar {
    display: block;
    position: absolute;
    top: 100%;
    display: flex;
    flex-direction: column;
    background: rgb(23, 23, 24);
    width: 100%;
    left: 0;
    margin: 0 !important;
    padding: 32px 16px;
    z-index: 3;
  }

  header nav.show .nav-bar a {
    color: #fff;
    text-align: center;
    margin: 5px 0 !important;
  }

  .nav-wrap {
    flex: 1 1 70%;
  }
}
