@charset "utf-8";
/* CSS Document */
html { overflow-y: scroll; }
body {
    font-family: 'Anton', sans-serif;
}
body.modal-open {
    padding-right: 0 !important;
}
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: none;
  z-index: 9999;
  border-radius: 50%;
  padding: 12px 15px;
}
.feature-box {
  transition: all 0.3s ease-in-out;
  border: 1px solid transparent;
}
.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.1);
}
.feature-icon {
  font-size: 2rem;
  border-radius: 50%;
  padding: 1rem;
  margin-bottom: 1rem;
  transition: all 0.3s ease-in-out;
}
.thank-card{
    backdrop-filter: blur(10px) saturate(120%);
    background: rgba(255,255,255,.75);
}
.rotate-anim{
    animation: spin 6s linear infinite;
}
@keyframes spin{to{transform: rotate(360deg)}}
.service-box-circle {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 10px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 15px;
  margin: auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-box-circle:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(0,0,0,0.2);
}
.owl-carousel .item {
  padding: 10px;
}
.top-bar { font-size: 0.9rem; }
.nav-item {margin: 0px 5px;}
.main-menu a { margin: 0px; color: #000; text-decoration: none; font-weight: 500; }
.main-menu a:hover { color: #007bff; }
footer { background: #24A8C4; color: #fff; }
footer a { color: #fff; }
footer .social-icons a { font-size: 1.5rem; margin-right: 10px; }
footer ul li { margin-bottom: 8px;}
.hover-icon:hover {
color: #ffc107;
transform: scale(1.2);
transition: 0.3s ease;
}
@keyframes float-updown {
0%   { transform: translateY(0px); }
50%  { transform: translateY(-10px); }
100% { transform: translateY(0px); }
}
.img-floating {
animation: float-updown 3s ease-in-out infinite;
}
.btn-animated {
transition: all 0.3s ease;
}
.btn-animated:hover {
transform: scale(1.05);
box-shadow: 0 0 20px rgba(0,0,0,0.2);
}
.nav-item.dropdown:hover .dropdown-menu {
display: block;
margin-top: 0; /* Loại bỏ khoảng cách khi hover */
}avbar-nav > .nav-item {
margin-left: 20px; /* Giãn menu cha */
}
.navbar-nav .nav-link {
font-size: 17px; /* Tăng cỡ chữ */
font-weight: 500; /* Đậm nhẹ cho rõ */
padding: 12px 10px; /* Giãn khoảng cách click */
color: #333;
transition: all 0.3s ease;
}
.navbar-nav .nav-link:hover {
color: #007bff; /* Màu hover */
}
.dropdown-menu {
font-size: 16px;
transition: all 0.3s ease;
}
.dropdown-item {
padding: 10px 20px;
}
@media (max-width: 991.98px) {
.navbar-nav > .nav-item {
margin-left: 0;
}
.navbar-nav .nav-link {
font-size: 16px;
}
}
.service-card img {
border: 3px solid #007bff;
padding: 5px;
background-color: #fff;
}
.service-box {
  transition: all 0.3s ease;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.service-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}
.service-box:hover i {
  transform: scale(1.1);
  transition: transform 0.3s ease;
}
.title-highlight {
  font-size: 2rem;
  font-weight: 800;
  text-transform: uppercase;
  background: linear-gradient(to right, #007bff, #6f42c1, #e83e8c);
  -webkit-background-clip: text;
  color: transparent;
  text-align: center;
  margin-bottom: 1.5rem;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
  display: inline-block;
  padding-bottom: 8px;
}
.logo-carousel .item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
}

.logo-carousel img {
  max-height: 80px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

.logo-carousel img:hover {
  filter: grayscale(0%);
  transform: scale(1.05);
}