@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

html {
  scroll-behavior: smooth;
overflow-x: hidden;
  width: 100%;
}

body {
  /* background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0a0e27 100%); */
}

:root {
  --primary-color: #B5E5FC;
  --secondary-color: #00C0E8;
  --third-color: #3b82f6;
  --fourth-color: #EEF9FF;
}
.wp-element-button {
	background-color: #00C0E8 !important;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 0.4;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}

@keyframes draw-line {
  0% {
    stroke-dashoffset: 1000;
  }

  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes hideFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Slide in from right for breadcrumb */
@keyframes slide-right {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 0.5;
  }

  50% {
    opacity: 1;
  }
}

@keyframes rotatePulse {

  0%,
  100% {
    opacity: 0.6;
    transform: rotate(45deg) scale(1);
  }

  50% {
    opacity: 1;
    transform: rotate(45deg) scale(1.2);
  }
}

@keyframes ci-pulse {
  0%,
  100% {
    opacity: 0.6;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}

@keyframes pulse-glow {

  0%,
  100% {
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
  }

  50% {
    box-shadow: 0 0 40px rgba(59, 130, 246, 0.6);
  }
}

@keyframes pulse-ring {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

@keyframes fadeUpHide {
  0% {
    opacity: 0.23529411764705882;
    transform: translateY(-30%);
  }

  100% {
    opacity: 0;
    transform: translateY(-150%);
  }
}

@keyframes fadeDown {
  0% {
    opacity: 0.23529411764705882;
    transform: translateY(-30%);
  }

  100% {
    opacity: 1;
    transform: translateY(0%);
  }
}

@keyframes twinkle {

  0%,
  100% {
    opacity: 0.3;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.5);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes heroFloat {

  0%,
  100% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  50% {
    transform: translateY(-30px) translateX(20px);
    opacity: 0.8;
  }

  90% {
    opacity: 1;
  }
}

@keyframes mv-icon-pulse {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 8px 24px rgba(93, 206, 235, 0.3);
  }

  50% {
    transform: scale(1.05);
    box-shadow: 0 12px 32px rgba(93, 206, 235, 0.5);
  }
}

@keyframes rotatePulse {

  0%,
  100% {
    opacity: 0.6;
    transform: rotate(45deg) scale(1);
  }

  50% {
    opacity: 1;
    transform: rotate(45deg) scale(1.2);
  }
}

  @keyframes mv-path-dash {
    to {
      stroke-dashoffset: -160;
    }
  }


  @keyframes mv-dot-glow {

    0%,
    100% {
      opacity: 0.6;
      transform: scale(1);
    }

    50% {
      opacity: 1;
      transform: scale(1.3);
    }
  }

.techin-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transform: all 0.2s ease;
}
.techin-btn::after {
  content: attr(data-text);
  display: inline-block;
  position: absolute;
  top: 50%;
  opacity: 0;
  line-height: 12.5px;
  transform: translateY(100%);
  transition: opacity .2s, transform .2s;
  transition-timing-function: cubic-bezier(.455, .03, .515, .955);
  white-space: nowrap;
  left: 0;
  right: 0;
  text-align: center;
}
.techin-btn span {
  /* animation: fadeDown 0.2s ease forwards; */
  transform: translateY(10%);
  opacity: 1;
  transition: opacity .2s, transform .2s;
  transition-timing-function: cubic-bezier(.455, .03, .515, .955);
}
.techin-btn:hover > span {
  /* animation: fadeUpHide 0.2s ease forwards; */
  transform: translateY(-150%);
  opacity: 0;
}
.techin-btn:hover::after {
  opacity: 1;
  transform: translateY(-50%);
}

.pagination {
  width: 100%;
  max-width: 1200px;
  margin: 50px auto;
  color: white;
  position: relative;
}

.pagination .page-nav .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.pagination .page-nav .page-numbers a.page-numbers,
.pagination .page-nav span {
  height: 40px;
  width: 40px;
  background: #fff;
  border-radius: 10px;
  color: #000;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #e5e7eb;
  cursor: pointer;
  transition: background .3s ease, color .3s ease;
}

.pagination .page-nav .page-numbers a.page-numbers:hover {
  background: var(--primary-color);
  color: #fff;
  transition: background .3s ease, color .3s ease;
}

.pagination .page-nav .prev:hover,
.pagination .page-nav .next:hover {
  opacity: 0.7;
}

.pagination .page-nav .page-numbers.current {
  background: var(--primary-color);
  color: #fff;
  cursor: default;
}

.pagination .page-nav .prev {
  /* position: absolute; */
  left: 0;
}
.pagination .page-nav .next {
  /* position: absolute; */
  right: 0;
}

.line-height-2 {
  line-height: 1.3 !important;
}

/* Overwrite wp-admin styles */
.wpcf7 form.sent .wpcf7-response-output {
  color: #46b450 !important;
}

.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
  color: #dc3232 !important;
}

.wpcf7-spinner {
  position: absolute;
  top: -50%;
  transform: translateX(-130%);
  left: 50%;
}

.wpcf7-form-control-wrap {
  position: static !important;
}

.wpcf7-not-valid-tip {
  position: absolute !important;;
}

blockquote {
  background: #f9f9f9; /* Màu nền hơi xám để làm nổi bật */
  border-left: 10px solid #ccc; /* Đường kẻ dọc bên trái - đặc trưng của trích dẫn */
  margin: 1.5em 10px; /* Khoảng cách bên ngoài (trên/dưới, trái/phải) */
  padding: 1em 20px; /* Khoảng cách bên trong để chữ không dính vào lề */
  font-style: italic; /* In nghiêng chữ */
  color: #555; /* Màu chữ hơi tối đi một chút */
}

blockquote p {
  margin: 0; /* Xóa margin mặc định của thẻ p bên trong */
}
.banner-img{
	width:100%;
}