/* CSS Bổ sung  */
:root {
  --pet-primary: #3fa3db; /* Màu quan trọng nhất */
  --pet-secondary: #ff4379;
  --pet-warning: #f6b519;
  --pet-success: #bad020;
  --pet-danger: #ff4356;
  --pet-purple: #8a38f5;
  --pet-teal: #15cac3;
  --pet-orange: #f67a37;
}
/* Màu chữ */
.pet-text-primary {
  color: #3fa3db;
}
.pet-text-secondary {
  color: #ff4379;
}
.pet-text-warning {
  color: #f6b519;
}
.pet-text-success {
  color: #bad020;
}
.pet-text-danger {
  color: #ff4356;
}
.pet-text-purple {
  color: #8a38f5;
}
.pet-text-teal {
  color: #15cac3;
}
.pet-text-orange {
  color: #f67a37;
}

/* Màu nền */
.pet-bg-primary {
  background-color: #3fa3db;
}
.pet-bg-secondary {
  background-color: #ff4379;
}
.pet-bg-warning {
  background-color: #f6b519;
}
.pet-bg-success {
  background-color: #bad020;
}
.pet-bg-danger {
  background-color: #ff4356;
}
.pet-bg-purple {
  background-color: #8a38f5;
}
.pet-bg-teal {
  background-color: #15cac3;
}
.pet-bg-orange {
  background-color: #f67a37;
}
/* Kích thước mặc định cho desktop */
h1,
.h1 {
  font-size: 4.5rem;
  font-weight: 800;
  color: #000;
}

h2,
.h2 {
  font-size: 4rem;
  font-weight: 800;
  color: #000;
  line-height: 50px;
}

h3,
.h3 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #000;
}

h4,
.h4 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #000;
}

h5,
.h5 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #000;
}

h6,
.h6 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #000;
}

/* Tablet (≤ 1024px) */
@media (max-width: 1024px) {
  h1,
  .h1 {
    font-size: 3.8rem;
    line-height: 60px;
  }
  h2,
  .h2 {
    font-size: 3rem;
    line-height: 40px;
  }
  h3,
  .h3 {
    font-size: 2.5rem;
  }
  h4,
  .h4 {
    font-size: 2rem;
  }
  h5,
  .h5 {
    font-size: 1.7rem;
  }
  h6,
  .h6 {
    font-size: 1.4rem;
  }
}

/* Mobile (≤ 768px) */
@media (max-width: 768px) {
  h1,
  .h1 {
    font-size: 3rem;
    line-height: 50px;
  }
  h2,
  .h2 {
    font-size: 2.5rem;
    line-height: 30px;
  }
  h3,
  .h3 {
    font-size: 2rem;
  }
  h4,
  .h4 {
    font-size: 1.8rem;
  }
  h5,
  .h5 {
    font-size: 1.5rem;
  }
  h6,
  .h6 {
    font-size: 1.3rem;
  }
}

/* Mobile nhỏ (≤ 480px) */
@media (max-width: 480px) {
  h1,
  .h1 {
    font-size: 2.5rem;
  }
  h2,
  .h2 {
    font-size: 2rem;
  }
  h3,
  .h3 {
    font-size: 1.8rem;
  }
  h4,
  .h4 {
    font-size: 1.6rem;
  }
  h5,
  .h5 {
    font-size: 1.4rem;
  }
  h6,
  .h6 {
    font-size: 1.2rem;
  }
}

p,
span {
  color: #000000;
}
/* Button  */
.p-btn {
  display: inline-block;
  padding: 0.8rem 2.5rem;
  font-size: 1.6rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
  .p-btn {
    display: inline-block;
    padding: 0.3rem 1rem;
    font-size: 1.4rem;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
  }
}

/* Mobile (Dưới 768px) */
@media (max-width: 768px) {
  .p-btn {
    display: inline-block;
    padding: 0.3rem 1rem;
    font-size: 1.4rem;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
  }
}
.p-btn-primary {
  background: linear-gradient(
    270deg,
    rgba(170, 118, 221, 1) 0%,
    rgba(77, 96, 245, 1) 100%
  );
  background-size: 200% 100%;
  background-position: right center;
  transition: background-position 0.5s ease;
  color: #fff;
  padding: 10px 40px;
  border: none;
  cursor: pointer;
  line-height: 2;
}

.p-btn-primary:hover {
  background-position: left center;
  color: #fff;
}
.p-btn-secondary {
  background-color: var(--pet-secondary);
  color: #fff;
}
.p-btn-warning {
  background-color: var(--pet-warning);
  color: #fff;
}
.p-btn-success {
  background-color: var(--pet-success);
  color: #fff;
}
.p-btn-danger {
  background-color: var(--pet-danger);
  color: #fff;
}
.p-btn-purple {
  background-color: var(--pet-purple);
  color: #fff;
}
.p-btn-teal {
  background-color: var(--pet-teal);
  color: #fff;
}

/* .p-btn:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
  color: #ffffff;
} */

.p-btn-secondary:hover {
  background-color: #dc2458;
}
.p-btn-warning:hover {
  background-color: #c28f0e;
}
.p-btn-success:hover {
  background-color: #7d8d16;
}
.p-btn-danger:hover {
  background-color: #b9273d;
}
.p-btn-purple:hover {
  background-color: #7a50b9;
}
.p-btn-teal:hover {
  background-color: #479c82;
}
.p-btn-group {
  display: inline-block;
  align-items: center;
  /* overflow: hidden; */
  position: relative;
}
.btn-gr-banner {
  background: rgba(210, 210, 210, 0.25);
  border-radius: 50px;
}
/* .p-btn-group a {
  flex: 1;
} */

/* width */
::-webkit-scrollbar {
  width: 7px;
  height: 5px;
  position: absolute;
}

/* Track */
::-webkit-scrollbar-track {
  background: transparent;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: rgba(158, 158, 158, 0);
  border-radius: 2px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: rgba(158, 158, 158, 0.1);
}

.header__logo {
  max-width: 200px;
}

@media (max-width: 767px) {
  .header__logo {
    max-width: 150px;
  }

  .key-logo-gr {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #034833;
  }

  .key-logo-gr img {
    max-width: 50px;
  }

  .key-logo-gr h2 {
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 700;
  }

  .key-logo-gr .key-sup-title {
    font-size: 0.8rem;
  }
}

.cursor-pointer {
  cursor: pointer;
}

.cursor-text {
  cursor: text;
}

.f-10 {
  font-size: 10px !important;
}

.f-12 {
  font-size: 12px !important;
}

.f-14 {
  font-size: 14px !important;
}

.f-16 {
  font-size: 16px !important;
}

.f-18 {
  font-size: 18px !important;
}

.f-20 {
  font-size: 20px !important;
}

.f-24 {
  font-size: 24px !important;
}

.f-28 {
  font-size: 28px !important;
}
.f-30 {
  font-size: 30px !important;
}
.gap {
  display: block;
  position: relative;
}
.gap-10 {
  padding-top: 10px !important;
}

.gap-20 {
  padding-top: 20px !important;
}

.gap-30 {
  padding-top: 30px !important;
}
.gap-40 {
  padding-top: 40px !important;
}
.gap-50 {
  padding-top: 50px !important;
}
.gap-70 {
  padding-top: 70px !important;
}
.gap-100 {
  padding-top: 100px !important;
}

.section-wrap {
  padding: 50px 0;
  position: relative;
  /* overflow: hidden; */
}

.section-wrap-70 {
  padding: 70px 0;
}

.section-wrap-100 {
  padding: 100px 0;
}

.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-menu a {
  display: block;
  padding: 0px 15px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -o-border-radius: 30px;
  -ms-border-radius: 30px;
  border-radius: 30px;
  border: 1px solid rgb(255, 255, 255);
  font-size: 1.5rem;
  color: #fff;
  font-style: normal;
  font-weight: 400;
}

.footer-menu a:hover {
  color: #fff;
  background: #034833;
}
.key_social-media > ul > li {
  list-style: none;
  display: inline-block;
  margin: 0 8px 0 0;
  font-size: 14px;
}
.key_social-media > ul > li:last-child {
  margin: 0;
}
.key_social-media .key_social-item img {
  width: 30px;
}
.img-border {
  border-radius: 18px;
}
.img-cover {
  position: relative;
  height: auto;
  overflow: hidden;
  padding-top: 100%;
  background-position: 50% 50%;
  background-size: cover;
  transition: background 0.3s ease;
}
.img-hover-effect {
  filter: grayscale(100%);
  transition: filter 0.3s ease-in-out;
}

.img-hover-effect:hover {
  filter: none;
}
.img-hover-sacale {
  transition: transform 0.3s ease-in-out;
}

.img-hover-sacale:hover {
  transform: scale(1.05); /* Phóng to nhẹ khi hover */
}
.col-inner {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  flex: 1 0 auto;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  width: 100%;
  overflow: hidden;
}
.img-cover.cover-1x2 {
  padding-top: 50%;
}

.img-cover.cover-4x3 {
  padding-top: 75%;
}

.img-cover.cover-16x9 {
  padding-top: 56.25%;
}

.img-cover img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-cover.cover-350 {
  padding-top: 350px;
}

.img-cover.cover-400 {
  padding-top: 400px;
}

.banner-main {
  position: relative;
  overflow: hidden;
}

.banner-main .banner-fill {
  position: relative;
  overflow: hidden;
  padding-top: 865px;
  z-index: 0;
}

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
  .banner-main .banner-fill {
    padding-top: 800px;
  }
}

/* Mobile (Dưới 768px) */
@media (max-width: 768px) {
  .banner-main .banner-fill {
    padding-top: 650px;
  }
}
.banner-main .bg-fill {
  height: 100%;
  left: 0;
  margin: 0;
  padding: 0;
  position: absolute;
  right: 0;
  top: 20px;
  background-position: top center;
  background-repeat: no-repeat;
  background-size: 100% auto;
}

.banner-fill img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.clamp-1 {
  /* line-height: 1.3333333 !important; */
  margin-bottom: 0.3rem;
  display: block;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.clamp-2 {
  /* line-height: 1.33333333 !important; */
  margin-bottom: 0.3rem;
  display: block;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.clamp-3 {
  /* line-height: 1.33333333 !important; */
  margin-bottom: 0.3rem;
  display: block;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.lh-2 {
  line-height: 2 !important;
}
.rounded-10 {
  border-radius: 10px !important;
}

.rounded-20 {
  border-radius: 20px !important;
}

.rounded-30 {
  border-radius: 30px !important;
}

@media (max-width: 767px) {
  .news-vertical-media,
  .news-vertical-content {
    flex: 0 0 100%;
  }
}

.bg-filter {
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(7.5px);
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.bg-filter-modal {
  background-color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(7.5px);
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.bg-section {
  position: relative;
  overflow: hidden;
  background-position: center;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}

.overlay-section {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(20, 92, 14, 0.821);
}

.box-shade {
  position: relative;
  overflow: hidden;
}

.box-shade .img-cover {
  border-radius: 30px;
}

.box-shade .box-shade-content {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  padding: 1.5em;
  background: #fff;
  border-radius: 20px;
}

.btn-play {
  width: 100%;
  height: 100%;
  z-index: 99;
}

.btn-play .icon {
  position: absolute;
  width: 100px;
  height: auto;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) !important;
  background: rgba(14, 128, 23, 0.5);
  padding: 20px;
  border-radius: 50%;
  transition: all 0.3s;
}

.box-shade .btn-play .icon {
  top: 30%;
}

.box-shade:hover .overlay-add {
  opacity: 0.9;
}
.btn-play:hover .overlay-remove {
  opacity: 0;
}
.box-item-bg {
  background: #fff;
  box-shadow: 0px 0px 60px rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  padding: 20px;
}

.media:hover .btn-play .icon {
  background: rgba(108, 163, 18, 0.5);
}

.media:hover img {
  transform: scale(1.2);
}

.media.scale-none:hover img {
  transform: none;
}

.overlay-remove {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(228, 255, 177, 0.3) 5%,
    rgb(111 197 42 / 57%) 100%
  );
  opacity: 0.9;
  transition: all 0.3s;
}

.overlay-remove:hover {
  opacity: 0;
}

.overlay-add {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.3) 5%,
    rgba(92, 49, 14, 0.821) 100%
  );
  opacity: 0;
  transition: all 0.3s;
}

.overlay-add:hover {
  opacity: 0.9;
}

.btn-style a {
  background: var(--rr-theme-primary);
  font-family: var(--rr-ff-heading);
  color: var(--rr-common-white);
  font-weight: var(--rr-fw-sbold);
  line-height: var(--rr-lh-h5);
  border: 1px solid var(--rr-common-white);
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  transition: 0.3s;
  padding: 15px 30px;
  gap: 10px;
  font-size: 14px;
  font-style: normal;
}

.btn-style a:hover {
  background: var(--rr-heading-primary);
  color: var(--rr-common-white);
  border-color: var(--rr-heading-primary);
}

.gallery-item {
  position: relative;
  overflow: hidden;
}

.gallery-inner a {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(52, 92, 14, 0.5);
  opacity: 0;
  border-radius: 10px;
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}

.gallery-inner:hover a {
  opacity: 1;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}

.countdown p {
  color: #fff;
}

.countdown .countdown-title {
  color: #fff;
  font-size: 50px;
  margin-bottom: 1.5rem;
}

@media (max-width: 767px) {
  .countdown .countdown-title {
    color: #fff;
    font-size: 30px;
  }
}

.btn-vr img {
  max-width: 70px;
}

.add-opacity-hover {
  opacity: 1;
  transition: all 0.5s;
}

.add-opacity-hover:hover {
  opacity: 0.6;
}

.shake img {
  transition: all 0.3s;
}

.shake:hover img {
  animation: shake 0.5s;
}

.sidebar__widget-countdown .countdown-title {
  font-size: 24px;
  color: #fff;
  margin-bottom: 0;
}

.sidebar__widget-countdown p {
  font-size: 14px;
  color: #fff;
}

.rating {
  display: inline-block;
  color: #ddd;
}
.rating input {
  display: none;
}
.rating label {
  display: inline;
  cursor: pointer;
  position: relative;
}
.rating label i {
  font-size: 1.5rem;
  margin-right: 5px;
}
.rating:hover label {
  color: #ffc107;
}
.rating:hover,
.rating__control:nth-of-type(1):checked ~ .rating__item:nth-of-type(1),
.rating__control:nth-of-type(2):checked ~ .rating__item:nth-of-type(-n + 2),
.rating__control:nth-of-type(3):checked ~ .rating__item:nth-of-type(-n + 3),
.rating__control:nth-of-type(4):checked ~ .rating__item:nth-of-type(-n + 4),
.rating__control:nth-of-type(5):checked ~ .rating__item:nth-of-type(-n + 5) {
  color: #ffc107;
}

.rating__item:hover ~ .rating__item {
  color: #ddd;
}
.blog-details__wrapper-comment .nav-underline {
  border-bottom: 1px solid #ffffff;
}
.blog-details__wrapper-comment ul li .nav-link {
  color: #034833;
  margin-right: 20px;
}
.blog-details__wrapper-comment ul li .nav-link.active {
  color: #034833;
}
.comment-item {
  padding: 20px 10px 20px 0;
}
.avatar-comment {
  margin: 0 12px 0 0;
  float: left;
  width: 36px;
  height: 36px;
  background: #e5e5e5;
  line-height: 36px;
  text-align: center;
  color: #949494 !important;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 18px !important;
  font-family: arial;
  border-radius: 50%;
  position: relative;
}
.content-comment {
  padding: 0 0 0 48px;
  margin-top: 0;
}
.blog-details__wrapper p.full-comment {
  color: #4f4f4f;
}
.like_item:hover,
.like_control:checked ~ .like_item {
  color: #83cd20;
}
.hover-text:hover {
  color: #83cd20;
}

/* tool footer */
.tool {
  position: fixed;
  z-index: 999;
  right: 0;
  bottom: 170px;
  color: #1a1a1a;
  width: 48px;
}
.tool-list-contain {
  list-style-type: none;
  padding: 0;
  margin: 0;
  height: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease 0s;
}

.tool-list-contain.show {
  height: auto;
  opacity: 1;
  visibility: visible;
}
.tool-list-contain .tool-list-item {
  min-width: 3rem;
  display: table;
  margin-right: auto;
  cursor: pointer;
  font-size: 1rem;
  background-color: #0074bb;
  padding-right: 30px;
  transition: all 0.5s ease 0s;
  margin-bottom: 1px;
  border-radius: 10px 0 0 10px;
}
.tool-list-contain .tool-list-item.facebook {
  background: #3b5998;
}
.tool-list-contain .tool-list-item.zalo {
  background: #0a68fe;
}
.tool-list-contain .tool-list-item.youtube {
  background: #cd201f;
}
.tool-list-contain .tool-list-item.telegram {
  background: #34b0ee;
}
.tool-list-contain .tool-list-item.whatsapp {
  background: #25d366;
}
.tool-list-contain .tool-list-item.tiktok {
  background: #000000;
}
.tool-list-contain .tool-list-item:hover {
  transform: translateX(0);
  transform: translateX(calc(-100% + 3rem + 24px));
}
.tool-list-contain .tool-list-item .item-contain {
  height: 48px;
  display: flex;
  align-items: center;
}
.tool-list-contain .tool-list-item .item-contain .item-image {
  width: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px;
}
.tool-list-contain .tool-list-item .item-contain .item-image img {
  max-width: 100%;
  max-height: 100%;
  display: block;
  margin: 0 auto;
}
.tool-list-contain .tool-list-item .item-contain .item-title {
  font-size: 16px;
  line-height: 23px;
  color: #fff;
  white-space: nowrap;
}
.tool-list-contain .tool-list-item:hover .item-contain .item-title {
  color: #fff;
}
.tool-list-contain .tool-list-item a {
  display: flex;
  align-items: center;
}

/* PET CLINIC  */
.main-menu ul li {
  position: relative;
  list-style: none;
  display: inline-block;
  margin-inline-end: 30px;
}
.main-menu ul li > a {
  text-transform: none;
  font-size: 16px;
  font-weight: 700;
}
.main-menu ul li.active > a {
  color: var(--pet-danger) !important;
}
.section-banner-content {
  padding: 30px;
  border-radius: 18px;
}
.p-header {
  background-color: rgb(255, 255, 255, 0) !important;
}
.p-header.rs-sticky {
  box-shadow: none;
}
.header2__bg {
  background-color: rgb(255, 255, 255, 0);
}
.rs-sticky .header2__bg {
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(7.5px);
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border-radius: 0;
}
.p-header ul li a {
  color: #000000;
}

.p-header ul li:hover a {
  color: #0b4f7a;
}
.rs-sticky ul li a {
  color: #0b4f7a;
}

.rs-sticky ul li:hover a {
  color: var(--pet-secondary);
}
.mr-top-0100 {
  margin-top: -100px;
}
.p-icon-box.p-icon-left {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 30px 0px;
}
.p-icon-box.p-icon-left .p-box-icon {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--pet-teal);
  border-radius: 50%;
  transition: 0.3s;
  padding: 20px;
  flex: 0 0 100px;
}
.p-icon-box.hover-icon:hover img {
  animation: shake 0.5s;
}
.banner-about {
  position: relative;
  display: flex;
}
.banner-about .circle {
  display: inline-block;
  position: absolute;
  width: 200px;
  height: 200px;
  background: #fe697b;
  border-radius: 50%;
}
.banner-about .circle-1 {
  right: 100px;
  top: 30px;
}
.banner-about .circle-2 {
  width: 220px;
  height: 220px;
  left: 50px;
  top: 100px;
}
.banner-about .circle-3 {
  width: 250px;
  height: 250px;
  left: -40px;
  bottom: 120px;
}
.banner-about .circle-4 {
  width: 360px;
  height: 360px;
  right: 50px;
  bottom: 90px;
}

.box-style {
  display: inline-block;
  align-items: center;
  gap: 20px;
  padding: 20px;
  padding-bottom: 50px;
  border-radius: 20px;
  position: relative;
}
.box-style .box-style-icon {
    position: relative;
    display: inline-block;
    width: 100%;
    height: auto;
    min-height: 50px;
}
.box-style .box-style-icon img {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 130px;
  height: auto;
}

.p-icon-box-default {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-radius: 20px;
  position: relative;
}
.p-icon-box-default .p-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  flex: 0 0 10%;
}
.hover-icon:hover img {
  animation: shake 0.5s;
}
.banner-anima {
  position: relative;
}
.banner-anima .icon-king img {
  position: absolute;
  width: 300px;
  height: auto;
}
.banner-anima .icon-king img:nth-child(1) {
  bottom: 0;
  right: 0;
}
.banner-anima .group-icon img {
  position: absolute;
  width: 60px;
  height: auto;
}
.banner-anima .group-icon img:nth-child(1) {
  top: 5%;
  left: 5%;
}
.banner-anima .group-icon img:nth-child(2) {
  top: 6%;
  right: 5%;
}
.banner-anima .group-icon img:nth-child(3) {
  top: 50%;
  left: 8%;
}
.banner-anima .group-icon img:nth-child(4) {
  top: 70%;
  right: 8%;
}
/* .banner-anima .group-icon img:nth-child(5) {
  top: 40%;
  left: 0%;
}
.banner-anima .group-icon img:nth-child(6) {
  top: 39%;
  left: 17%;
}
.banner-anima .group-icon img:nth-child(7) {
  top: 45%;
  left: 30%;
}
.banner-anima .group-icon img:nth-child(8) {
  top: 60%;
  left: 20%;
} */

.banner-anima .security-icon img {
  position: absolute;
  width: 100px;
  height: auto;
}
.banner-anima .security-icon img:nth-child(1) {
  top: 5%;
  left: 5%;
}
.banner-anima .security-icon img:nth-child(2) {
  top: 10%;
  right: 5%;
}
.banner-anima .security-icon img:nth-child(3) {
  bottom: 0%;
  left: 18%;
}
.banner-anima .security-icon img:nth-child(4) {
  bottom: 5%;
  right: 8%;
}
/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
  .banner-anima .icon-king img {
    position: absolute;
    width: 220px;
    height: auto;
  }
  .banner-anima .group-icon img {
    position: absolute;
    width: 50px;
    height: auto;
  }
}

/* Mobile (Dưới 768px) */
@media (max-width: 768px) {
  .banner-anima .icon-king img {
    position: absolute;
    width: 180px;
    height: auto;
  }
  .banner-anima .group-icon img {
    position: absolute;
    width: 40px;
    height: auto;
  }
}
.p-gallery .gallery-img img {
  border-radius: 18px;
  margin-bottom: 20px;
}
.testimonial__content-2-text p {
  font-size: 18px;
}
.section-title2__button a {
  background: var(--pet-primary);
}
.bg-footer {
  background-color: #0476b6;
}
.footer__link ul li a {
  font-size: 15px;
}
.footer__copyright p,
.footer__widget-title h4,
.footer__link ul li a,
.footer__link ul li a i,
.footer__copyright-menu ul li a {
  color: #000;
}
.footer__link ul li a:hover,
.footer__link ul li a i,
.footer__copyright-menu ul li a:hover {
  color: var(--pet-primary);
}
.footer__logo img {
  max-width: 250px;
}
.contact-btn {
  background: var(--pet-orange);
}
.contact-us__form-wrapper {
  background: #f7fcff;
}
.box-features .box {
  background: #f2f2f2;
  padding: 10px 70px 10px 20px;
  border-radius: 8px;
  margin-bottom: 16px;
  max-width: 450px;
  transition: all 0.3s ease;
}

.box-features .box h3 {
  margin: 0 0 6px;
  font-weight: bold;
  font-size: 2.5rem;
}
.box-features .box-normal {
  background: var(--pet-primary);
  color: #fff;
}
.box-features .box-normal p {
  color: #fff;
}
/* Màu tiêu đề ban đầu */
.box-features .box-normal h3 {
  color: #ffffff;
}
.box-features .box-secondary h3 {
  color: var(--pet-secondary);
}
.box-features .box-warning h3 {
  color: var(--pet-warning);
}
.box-features .box-primary h3 {
  color: var(--pet-primary);
}

/* Hover đổi nền + chữ trắng */
.box-features .box-normal:hover {
  background: #f2f2f2;
  color: #000;
}
.box-features .box-secondary:hover {
  background: var(--pet-secondary);
  color: #fff;
}
.box-features .box-warning:hover {
  background: var(--pet-warning);
  color: #fff;
}
.box-features .box-primary:hover {
  background: var(--pet-primary);
  color: #fff;
}

/* Chữ trắng khi hover */
.box-features .box:hover h3,
.box-features .box:hover p {
  color: #fff;
}
.box-features .box-normal:hover h3 {
  color: var(--pet-primary);
}
.box-features .box-normal:hover p {
  color: #000;
}
.feedback-king {
  display: flex;
  justify-content: space-between;
  position: relative;
  align-items: end;
  flex-wrap: wrap;
  column-gap: 10px;
  row-gap: 20px;
  z-index: 1;
}
.btn-feedback {
  display: inline-block;
  padding: 12px 24px;
  font-size: 18px;
  font-weight: 600;
  color: #15cac3;
  background: #f0ffff;
  border: 1px solid #15cac3;
  border-radius: 10px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Hover */
.btn-feedback:hover {
  background: #15cac3;
  color: #fff;
}
#particle-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(255, 255, 255, 0);
  vertical-align: middle;
  z-index: -1;
}
.steps {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  margin: 40px;
}
.step {
  text-align: center;
  max-width: 220px;
  position: relative;
}
.step-box {
  width: 160px;
  height: 160px;
  background: #f6dcf6;
  border-radius: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 16px;
  transform: rotate(-3deg);
  transition: transform 0.3s ease;
}
.step-box img {
  width: 48px;
  height: 48px;
}
.step:hover .step-box {
  transform: rotate(0deg);
}
.step-title {
  font-weight: bold;
  margin-bottom: 5px;
  color: #000;
  padding-top: 10px;
}
.step-text {
  line-height: 2;
  color: #000;
  padding: 5px 35px 20px;
  text-align: justify;
  text-align-last: center;
}
.step-1 {
  margin-top: 35px;
}
.step-4 {
  margin-top: 20px;
}

.step-1 .step-box {
  transform: rotate(22deg);
}
.step-2 .step-box {
  transform: rotate(11deg);
}
.step-3 .step-box {
  transform: rotate(-10deg);
}
.step-1::after {
  position: absolute;
  content: "";
  width: 90px;
  height: 90px;
  background-image: url("../img/arrow-vt-1.svg");
  background-size: 100% contain;
  background-position: right;
  background-repeat: no-repeat;
  top: 120px;
  right: -90px;
  z-index: 1;
}
.step-2::after {
  position: absolute;
  content: "";
  width: 200px;
  height: 140px;
  background-image: url("../img/arrow-vt-2.svg");
  background-size: contain;
  background-position: right;
  background-repeat: no-repeat;
  top: 60px;
  right: -110px;
  z-index: 1;
}
.step-3::after {
  position: absolute;
  content: "";
  width: 90px;
  height: 90px;
  background-image: url("../img/arrow-vt-1.svg");
  background-size: contain;
  background-position: right;
  background-repeat: no-repeat;
  top: 70px;
  right: -90px;
  z-index: 1;
}
.footer-learn-more {
  padding-top: 250px;
  position: relative;
}
.footer-learn-more_bg {
  background: linear-gradient(
    90deg,
    rgba(170, 118, 221, 1) 0%,
    rgba(77, 96, 245, 1) 100%
  );
  padding: 40px 30px;
  border-radius: 50px;
  margin-top: 20px;
}
/* Button style */
.learn-more_btn_light {
  display: inline-block;
  padding: 12px 32px;
  font-size: 20px;
  font-weight: bold;
  border: none;
  border-radius: 50px;
  background: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
}
.learn-more_btn_light span {
  background-image: linear-gradient(
    90deg,
    rgba(170, 118, 221, 1) 0%,
    rgba(77, 96, 245, 1) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
/* Hover effect */
.learn-more_btn_light:hover {
  /* box-shadow: 0 4px 12px rgba(77, 96, 245, 0.3); */
  transform: translateY(-2px);
}
.footer-learn-more_bg img {
  position: absolute;
  bottom: 0;
  left: 0;
  max-width: 800px;
}
.footer-learn-more_bg p {
  font-size: 18px;
}

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
  .step-2::after {
    display: none;
  }
  .footer-learn-more {
    padding-top: 50px;
    position: relative;
  }
  .footer-learn-more_bg img {
    position: absolute;
    bottom: 0;
    left: 0;
    max-width: 400px;
  }
}

/* Mobile (Dưới 768px) */
@media (max-width: 768px) {
  .step-1::after {
    display: none;
  }
  .step-3::after {
    display: none;
  }
  .footer-learn-more_bg p {
    font-size: 16px;
  }
  .footer-learn-more {
    padding-top: 0;
    position: relative;
  }
  .footer-learn-more_bg {
    padding-bottom: 250px;
  }
  #particle-canvas {
    position: absolute;
    top: -200px;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0);
    vertical-align: middle;
    z-index: -1;
  }
}

.box-gallery {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.box-gallery-img img {
  width: 100%;
  display: block;
  border-radius: 16px;
}

/* Content overlay */
.box-gallery-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(7.5px);
  transform: translateY(100%);
  transition: transform 0.4s ease;
  padding: 20px;
  text-align: justify;
  border-radius: 0 0 16px 16px;
}

/* Hover: trượt lên */
.box-gallery:hover .box-gallery-content {
  transform: translateY(0);
}

.banner-linear-gradient {
  background: linear-gradient(
    270deg,
    rgba(170, 118, 221, 0.682) 0%,
    rgba(77, 96, 245, 1) 100%
  );
  padding: 40px 60px;
  border-radius: 30px;
  margin: 20px 0;
}
.section-bg {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.box-behoof {
  padding: 30px 50px;
  background: #fffdf1;
  border-radius: 20px;
  transition: all 0.3s;
  box-shadow: rgba(149, 157, 165, 0.1) 0px 8px 24px;
}
.box-behoof .box-img {
  position: relative;
  padding: 10px 10px 30px;
}
.box-behoof .box-img img {
  max-width: 70px;
}
.box-behoof-2 {
  background: #f4fdfe;
}
.box-behoof-3 {
  background: #f8f7fc;
}
.box-behoof:hover {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  /* transform: translateY(-2px); */
}
.box-text-normal {
  border: 1px solid #ededed;
  border-radius: 30px;
  padding: 30px 50px;
  transition: all 0.3s;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  margin-bottom: 40px;
}
.border-warning {
  border-color: var(--pet-warning) !important;
}
.border-danger {
  border-color: var(--pet-danger) !important;
}
.border-purple {
  border-color: var(--pet-purple) !important;
}
.border-teal {
  border-color: var(--pet-teal) !important;
}
.border-orange {
  border-color: var(--pet-orange) !important;
}
.why-choose {
  /* position: relative; */
  padding: 20px;
  text-align: center;
}
.why-choose .icon {
  max-width: 60px;
}
.why-choose h2 {
  color: #6155f5;
  font-weight: 900;
  font-size: 90px;
  text-align: end;
  line-height: 1.3;
}
.why-choose p {
  text-align: start;
}
.choose-1 {
  margin-top: 260px;
}
.choose-2 {
  margin-top: 110px;
}
.choose-3 {
  margin-top: -200px;
}
.choose-1.line::before {
  position: absolute;
  content: "";
  width: 1200px;
  height: 500px;
  background-image: url("../img/Vector-line.svg");
  background-size: cover;
  background-position: right;
  background-repeat: no-repeat;
  top: -430px;
  left: -75px;
  z-index: -1;
}

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
  .why-choose {
    padding: 0px;
    text-align: center;
  }
  .why-choose .icon {
    max-width: 60px;
  }
  .why-choose h2 {
    color: #6155f5;
    font-weight: 900;
    font-size: 70px;
    text-align: end;
    line-height: 1.3;
  }
  .why-choose p {
    text-align: start;
  }
  .choose-1 {
    margin-top: 100px;
  }
  .choose-2 {
    margin-top: 50px;
  }
  .choose-3 {
    margin-top: 0px;
  }
  .choose-1.line::before {
    position: absolute;
    content: "";
    width: 1200px;
    height: 500px;
    background-image: url("../img/Vector-line.svg");
    background-size: cover;
    background-position: right;
    background-repeat: no-repeat;
    top: -330px;
    left: -200px;
    z-index: -1;
  }
  .box-text-normal,
  .box-behoof {
    padding: 30px 20px;
  }
}

/* Mobile (Dưới 768px) */
@media (max-width: 768px) {
  .why-choose {
    padding: 10px;
    text-align: center;
  }
  .why-choose .icon {
    max-width: 60px;
  }
  .why-choose h2 {
    color: #6155f5;
    font-weight: 900;
    font-size: 70px;
    text-align: end;
    line-height: 1.3;
  }
  .why-choose p {
    text-align: start;
  }
  .choose-1 {
    margin-top: 50px;
  }
  .choose-2 {
    margin-top: 50px;
  }
  .choose-3 {
    margin-top: 50px;
  }
  .choose-1.line::before {
    display: none;
  }
  .banner-linear-gradient {
    padding: 25px;
  }
}
.compare-table {
  width: 100%;
  margin: 0 auto;
  border-collapse: collapse;
  background: linear-gradient(180deg, #f6f2fc, #eae2f6);
  border-radius: 12px;
  overflow: hidden;
  font-family: Arial, sans-serif;
}

.compare-table th,
.compare-table td {
  padding: 16px;
  text-align: left;
  border-bottom: 1px solid #fff;
  vertical-align: middle;
  color: #000;
}

.compare-table th {
  background: transparent;
  text-align: center;
  font-weight: bold;
}

.compare-table td.icon{
  text-align: center;
  font-size: 24px;
}
.compare-table td i {
  text-align: center;
  font-size: 24px;
  color: #949494;
}
.compare-table td.icon-check i,
.text-icon-check i {
  color: #00BA00;
  font-size: 24px;
}

.compare-table tr:last-child td {
  border-bottom: none;
}
.box-security__item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}