.bg-primary {
  background-color: #173a95 !important;
}

.text-white {
  color: #ffffff !important;
}

.text-accent {
  color: #fbbf24 !important;
}

.bg-accent {
  background-color: #fbbf24 !important;
}

.text-primary {
  color: #0a214d !important;
}

/* ===== Reveal animations ===== */
.reveal {
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.2, 1, 0.3, 1),
    transform 0.7s cubic-bezier(0.2, 1, 0.3, 1),
    visibility 0.7s;
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.active,
.reveal.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.reveal.animate__animated {
  transform: none;
  animation-delay: var(--reveal-delay, 0ms);
}

/* Falling down variation */
.reveal-down {
  opacity: 0;
  transform: translateY(-60px);
  transition: all 1.2s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal-down.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Service card hover ===== */
.service-card {
  transition: transform .3s ease, box-shadow .3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -15px rgba(15, 23, 42, .18);
}

.service-card:hover .service-icon {
  transform: scale(1.1);
}

.service-card .service-icon {
  transition: transform .3s ease;
}

.service-card:hover .service-cta {
  color: #fbbf24;
}

/* ===== Achievement card ===== */
.achievement-card {
  transition: background .5s ease;
}

.achievement-card:hover {
  background: rgba(255, 255, 255, 0.10);
}

.achievement-card:hover .ach-icon {
  transform: scale(1.1);
}

.ach-icon {
  transition: transform .3s ease;
}

.progress-track {
  height: 8px;
  background: rgba(255, 255, 255, .10);
  border-radius: 9999px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  width: 0;
  border-radius: 9999px;
  transition: width 1.4s cubic-bezier(.22, .61, .36, 1);
  transition-delay: .2s;
}

/* ===== Pulse / floating accents ===== */
@keyframes softPulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

.animate-soft-pulse {
  animation: softPulse 3s ease-in-out infinite;
}

@keyframes pulseSlow {

  0%,
  100% {
    opacity: .4;
  }

  50% {
    opacity: .9;
  }
}

.animate-pulse-slow {
  animation: pulseSlow 4s ease-in-out infinite;
}

@keyframes floaty {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.floaty {
  animation: floaty 3.2s ease-in-out infinite;
}

/* ===== Orbit container ===== */
.orbit {
  transform-origin: center;
}

@keyframes spinCW {
  to {
    transform: rotate(360deg);
  }
}

@keyframes spinCCW {
  to {
    transform: rotate(-360deg);
  }
}

.orbit-1 {
  animation: spinCW 60s linear infinite;
  border: 1.5px solid rgba(59, 130, 246, 0.30);
  box-shadow: 0 0 0 1px rgba(59, 130, 246, 0.06);
}

.orbit-2 {
  animation: spinCCW 80s linear infinite;
  border: 1.5px solid rgba(251, 191, 36, 0.35);
  box-shadow: 0 0 0 1px rgba(251, 191, 36, 0.06);
}

.orbit-3 {
  animation: spinCW 100s linear infinite;
  border: 1.5px solid rgba(45, 212, 191, 0.35);
  box-shadow: 0 0 0 1px rgba(45, 212, 191, 0.06);
}

/* Static halo glow rings (non-spinning, just ambient glow) */
.orbit-glow-halo {
  border-radius: 50%;
}

.orbit-halo-1 {
  box-shadow: 0 0 70px rgba(59, 130, 246, 0.12), inset 0 0 50px rgba(59, 130, 246, 0.05);
}

@media (max-width: 1023px) {
  #orbit-container {
    transform: scale(0.85);
    transform-origin: center;
    margin-top: 1rem;
    margin-bottom: 1rem;
  }

  .tech-infra-section .container {
    padding-left: 8px !important;
    padding-right: 8px !important;
  }
}

@media (max-width: 480px) {
  #orbit-container {
    transform: scale(0.75);
  }
}

.orbit-halo-2 {
  box-shadow: 0 0 50px rgba(251, 191, 36, 0.10), inset 0 0 35px rgba(251, 191, 36, 0.04);
}

.orbit-halo-3 {
  box-shadow: 0 0 35px rgba(45, 212, 191, 0.10), inset 0 0 25px rgba(45, 212, 191, 0.04);
}

/* Traveling data dots — spinning wrapper, ::before dot sits at 12-o'clock */
.orbit-dot-wrap {
  border-radius: 50%;
}

.orbit-dot-wrap-1 {
  animation: spinCCW 14s linear infinite;
}

.orbit-dot-wrap-1::before {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  background: radial-gradient(circle, #93c5fd 40%, #3b82f6);
  border-radius: 50%;
  top: -5px;
  left: calc(50% - 5px);
  box-shadow: 0 0 8px #60a5fa, 0 0 18px #3b82f680;
}

.orbit-dot-wrap-2 {
  animation: spinCW 20s linear infinite;
}

.orbit-dot-wrap-2::before {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  background: radial-gradient(circle, #fde68a 40%, #f59e0b);
  border-radius: 50%;
  top: -4px;
  left: calc(50% - 4px);
  box-shadow: 0 0 8px #fbbf24, 0 0 16px #f59e0b70;
}

.orbit-dot-wrap-3 {
  animation: spinCCW 11s linear infinite;
}

.orbit-dot-wrap-3::before {
  content: '';
  position: absolute;
  width: 7px;
  height: 7px;
  background: radial-gradient(circle, #99f6e4 40%, #14b8a6);
  border-radius: 50%;
  top: -3.5px;
  left: calc(50% - 3.5px);
  box-shadow: 0 0 8px #2dd4bf, 0 0 14px #14b8a670;
}

/* Center hub */
.orbit-hub-wrap {
  width: 144px;
  height: 144px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hub-ring {
  position: absolute;
  border-radius: 50%;
  width: 144px;
  height: 144px;
  border: 1.5px solid rgba(59, 130, 246, 0.40);
  animation: hubRingExpand 3s ease-out infinite;
  pointer-events: none;
}

.hub-ring-1 {
  animation-delay: 0s;
}

.hub-ring-2 {
  animation-delay: 1s;
}

.hub-ring-3 {
  animation-delay: 2s;
}

@keyframes hubRingExpand {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }

  100% {
    transform: scale(2.4);
    opacity: 0;
  }
}

.orbit-hub-logo {
  box-shadow:
    0 20px 40px -10px rgba(23, 58, 149, 0.25),
    0 0 0 5px rgba(219, 234, 254, 0.85),
    0 0 0 10px rgba(219, 234, 254, 0.40),
    0 0 0 18px rgba(219, 234, 254, 0.15);
  transition: transform .35s cubic-bezier(.34, 1.56, .64, 1), box-shadow .3s ease;
}

.orbit-hub-logo:hover {
  transform: scale(1.06);
  box-shadow:
    0 24px 48px -8px rgba(23, 58, 149, 0.35),
    0 0 0 5px rgba(219, 234, 254, 0.95),
    0 0 0 12px rgba(219, 234, 254, 0.50),
    0 0 0 20px rgba(219, 234, 254, 0.18);
}

/* Orbit nodes */
.orbit-node {
  position: absolute;
  transform: translate(-50%, -50%);
  text-align: center;
}

.node-bubble {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 16px 32px -8px rgba(15, 23, 42, .40),
    0 0 0 3px rgba(255, 255, 255, 0.85),
    0 0 0 6px rgba(255, 255, 255, 0.25);
  margin: 0 auto;
  transition: transform .3s cubic-bezier(.34, 1.56, .64, 1), box-shadow .3s ease;
}

.node-bubble:hover {
  transform: scale(1.18) translateY(-5px);
  box-shadow: 0 24px 40px -8px rgba(15, 23, 42, .50), 0 0 0 3px rgba(255, 255, 255, 0.9);
}

.node-label {
  font-size: 11px;
  font-weight: 700;
  color: #1e3a8a;
  margin-top: 8px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(59, 130, 246, 0.18);
  padding: 4px 10px;
  border-radius: 12px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  white-space: normal;
  width: max-content;
  max-width: 110px;
  line-height: 1.3;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.10);
}

@media (min-width: 1024px) {
  .node-label {
    white-space: nowrap;
    max-width: none;
    padding: 2px 9px;
    line-height: 1;
  }
}

/* ===== Infrastructure metric cards ===== */
.infra-card {
  transition: border-color .3s, box-shadow .3s;
}

.infra-card:hover {
  border-color: rgba(12, 74, 110, .30);
  box-shadow: 0 12px 30px -10px rgba(15, 23, 42, .18);
}

/* ===== Timeline — Enhanced ===== */

/* Section background */
.tl-section {
  background: linear-gradient(160deg, #f8faff 0%, #eff6ff 40%, #fefce8 70%, #f0fdf4 100%);
}

/* ── Desktop animated center line ── */
.tl-center-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  transform: translateX(-50%);
  background: linear-gradient(to bottom, #173a95 0%, #3b82f6 30%, #fbbf24 60%, #10b981 85%, #173a95 100%);
  border-radius: 4px;
  overflow: hidden;
}

.tl-center-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.80), transparent);
  animation: tlLineSweep 3.5s linear infinite;
  pointer-events: none;
}

@keyframes tlLineSweep {
  0% {
    top: -40%;
  }

  100% {
    top: 140%;
  }
}

/* ── Mobile left line ── */
.tl-mobile-line {
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, #173a95, #3b82f6, #fbbf24, #10b981, #173a95);
  border-radius: 4px;
}

/* ── Timeline item ── */
.timeline-item {
  opacity: 0;
  transition: opacity .7s ease, transform .7s cubic-bezier(0.22, 1, 0.36, 1);
}

.timeline-item.left {
  transform: translateX(-50px);
}

.timeline-item.right {
  transform: translateX(50px);
}

.timeline-item.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ── Dot column (center) ── */
.tl-dot-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 2;
}

/* Horizontal connector line: left-side items → line goes left from dot to card */
.timeline-item.left .tl-dot-col::before {
  display: none;
}

.timeline-item.left .tl-dot-col::after {
  content: '';
  position: absolute;
  top: 100px;
  right: 100%;
  width: 48px;
  height: 2px;
  background: var(--tl-connector, rgba(23, 58, 149, 0.20));
  border-radius: 2px;
}

/* Right-side items → line goes right */
.timeline-item.right .tl-dot-col::after {
  display: none;
}

.timeline-item.right .tl-dot-col::before {
  content: '';
  position: absolute;
  top: 100px;
  left: 100%;
  width: 48px;
  height: 2px;
  background: var(--tl-connector, rgba(23, 58, 149, 0.20));
  border-radius: 2px;
}

/* ── Center dot / image card ── */
.timeline-dot {
  transform: scale(0);
  transition: transform .65s cubic-bezier(.34, 1.56, .64, 1);
  transition-delay: .25s;
  flex-shrink: 0;
  box-shadow: 0 16px 40px -10px rgba(15, 23, 42, .28), 0 0 0 3px rgba(255, 255, 255, 0.72);
}

.timeline-item.visible .timeline-dot {
  transform: scale(1);
}

/* ── Year label below dot ── */
.tl-year-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 3px 12px;
  border-radius: 20px;
  border: 1px solid;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .5s ease .5s, transform .5s ease .5s;
}

.timeline-item.visible .tl-year-label {
  opacity: 1;
  transform: translateY(0);
}

/* ── Timeline card ── */
.timeline-card {
  border: 1px solid rgba(15, 23, 42, 0.07);
  box-shadow: 0 4px 24px -6px rgba(15, 23, 42, .10);
  transition:
    transform .45s cubic-bezier(.34, 1.56, .64, 1),
    box-shadow .35s ease,
    border-color .3s ease;
  overflow: hidden;
  position: relative;
  background: #fff;
}

.timeline-card:hover {
  transform: translateY(-7px) scale(1.016);
  box-shadow: 0 28px 56px -14px rgba(15, 23, 42, .22);
  border-color: transparent;
}

/* Left accent bar */
.tl-card-accent {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--tl-gradient, linear-gradient(to bottom, #3b82f6, #06b6d4));
  border-radius: 4px 0 0 4px;
}

/* Icon in card */
.tl-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 20px -6px rgba(15, 23, 42, .22);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.timeline-card:hover .tl-card-icon {
  transform: scale(1.14) rotate(-7deg);
}

/* Year pill */
.tl-year-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
}

/* Status badges */
.tl-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  border: 1px solid;
}

.tl-badge-done {
  background: rgba(16, 185, 129, 0.12);
  color: #059669;
  border-color: rgba(16, 185, 129, 0.30);
}

.tl-badge-active {
  background: rgba(251, 191, 36, 0.15);
  color: #d97706;
  border-color: rgba(251, 191, 36, 0.35);
  animation: tl-badge-pulse 2s ease-in-out infinite;
}

@keyframes tl-badge-pulse {

  0%,
  100% {
    box-shadow: none;
  }

  50% {
    box-shadow: 0 0 0 4px rgba(251, 191, 36, 0.18);
  }
}

/* Milestone check icon */
.tl-check-icon {
  flex-shrink: 0;
  stroke-width: 2.5;
}

/* Stat chip */
.tl-stat-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 12px;
  border: 1px solid;
  font-size: 13px;
}

/* CTA link */
.tl-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 10px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.tl-cta-link:hover {
  transform: translateX(4px);
  text-decoration: none;
}

/* Card shimmer sweep */
.timeline-card .tl-shimmer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
  border-radius: inherit;
}

.timeline-card .tl-shimmer::before {
  content: '';
  position: absolute;
  top: -60%;
  left: -50%;
  width: 45%;
  height: 220%;
  background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, 0.32) 50%, transparent 70%);
  transform: skewX(-12deg);
  transition: left 0.55s ease, top 0.55s ease;
}

.timeline-card:hover .tl-shimmer::before {
  left: 115%;
  top: -60%;
}

/* Mobile card — left icon dot + indented card */
@media (max-width: 767px) {
  .timeline-item {
    transform: translateY(20px) !important;
  }

  .timeline-item.visible {
    transform: translateY(0) !important;
  }

  .tl-mobile-card-wrap {
    padding-left: 52px;
    position: relative;
  }

  .tl-mobile-dot {
    position: absolute;
    left: 0;
    top: 16px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: block;
    padding: 2px;
    box-shadow: 0 4px 12px rgba(15, 23, 42, .20), 0 0 0 4px rgba(255, 255, 255, 0.9);
    z-index: 2;
  }
}

/* ===== Testimonials ===== */
.testimonial-card {
  transition: transform .5s ease, box-shadow .5s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 50px -18px rgba(15, 23, 42, .25);
}

.testimonial-card:hover .test-corner {
  opacity: .2;
}

.test-corner {
  transition: opacity .3s ease;
}

/* ===== Marquee ===== */
@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.marquee {
  animation: marquee 30s linear infinite;
}

/* ===== CTA blobs ===== */
@keyframes blobA {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(100px, -50px);
  }
}

@keyframes blobB {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(-100px, 50px);
  }
}

.cta-blob-a {
  animation: blobA 20s ease-in-out infinite;
}

.cta-blob-b {
  animation: blobB 25s ease-in-out infinite;
}

/* ===== PARALLAX INFO SECTION ===== */

/* Animated grid lines */
.pax-grid {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  animation: paxGridMove 20s linear infinite;
}

@keyframes paxGridMove {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: 48px 48px;
  }
}

/* Floating particles */
.pax-particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  pointer-events: none;
  animation: paxFloat var(--pdur, 8s) ease-in-out infinite;
  animation-delay: var(--pdly, 0s);
}

@keyframes paxFloat {

  0%,
  100% {
    transform: translateY(0) scale(1);
    opacity: 0.5;
  }

  40% {
    transform: translateY(-30px) scale(1.3);
    opacity: 0.9;
  }

  70% {
    transform: translateY(-15px) scale(0.8);
    opacity: 0.4;
  }
}

/* Shimmer text */
.pax-shimmer-text {
  background: linear-gradient(90deg, #fbbf24 0%, #fef3c7 45%, #fbbf24 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: paxTextShimmer 3.5s linear infinite;
}

@keyframes paxTextShimmer {
  0% {
    background-position: 0% center;
  }

  100% {
    background-position: 200% center;
  }
}

/* Feature items */
.pax-feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(8px);
  transition: background .3s ease, transform .3s ease, border-color .3s ease;
}

.pax-feature-item:hover {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.18);
  transform: translateX(6px);
}

.pax-feature-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

/* Stats chips */
.pax-stat-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 14px 10px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  transition: background .3s ease;
}

.pax-stat-chip:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* Image slider */
.pax-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.75s ease, transform 0.75s ease;
  transform: scale(1.04);
}

.pax-slide.active {
  opacity: 1;
  transform: scale(1);
}

.pax-slide-caption {
  position: absolute;
  bottom: 44px;
  left: 18px;
  right: 18px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
  z-index: 10;
}

.pax-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: background .3s ease, transform .3s ease;
}

.pax-dot.active {
  background: #fbbf24;
  transform: scale(1.5);
}

.pax-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.20);
  backdrop-filter: blur(6px);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .25s ease, transform .25s ease;
  z-index: 20;
}

.pax-arrow:hover {
  background: rgba(251, 191, 36, 0.35);
  transform: translateY(-50%) scale(1.12);
}

.pax-arrow-prev {
  left: 14px;
}

.pax-arrow-next {
  right: 14px;
}

/* Floating badge */
.pax-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  padding: 14px 18px;
  border-radius: 18px;
  box-shadow: 0 20px 40px -8px rgba(0, 0, 0, 0.30);
  animation: paxBadgeFloat 4s ease-in-out infinite;
}

@keyframes paxBadgeFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

/* ===== News list image ===== */
.news-thumb {
  transition: transform .5s ease;
}

.news-card:hover .news-thumb {
  transform: scale(1.1);
}

.news-card:hover .news-title {
  color: #0c4a6e;
}

/* ===== Login tabs ===== */
.login-tab {
  color: #475569;
  transition: background .2s, color .2s;
}

.login-tab.active {
  background: #fff;
  color: #0c4a6e;
  box-shadow: 0 1px 2px rgba(15, 23, 42, .1);
}

/* Hero parallax */
#hero-bg {
  will-change: transform;
}

/* Line-clamp helper if utility unavailable */
.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ===== Select2 Custom Styling ===== */
.select2-with-icon i[data-lucide],
.select2-with-icon svg[data-lucide] {
  position: absolute !important;
  left: 1rem !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  z-index: 10 !important;
  pointer-events: none;
  display: block !important;
}

.select2-container--default .select2-selection--single {
  height: 2.75rem !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 0.75rem !important;
  display: flex;
  align-items: center;
  background-color: white !important;
  position: relative !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 2.75rem !important;
  padding-left: 3rem !important;
  color: #475569 !important;
  font-size: 0.875rem !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 2.75rem !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  padding-right: 2.5rem !important;
}

.select2-container--default .select2-selection--single .select2-selection__clear {
  position: absolute !important;
  right: 2rem !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  margin: 0 !important;
  font-size: 1.1rem !important;
  line-height: 1 !important;
  color: #94a3b8 !important;
  float: none !important;
}

.select2-dropdown {
  border: 1px solid #e2e8f0 !important;
  border-radius: 1rem !important;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1) !important;
  overflow: hidden;
  z-index: 9999;
}

.select2-search--dropdown .select2-search__field {
  border-radius: 0.5rem !important;
  border: 1px solid #e2e8f0 !important;
  padding: 0.5rem !important;
}

.select2-results__option {
  padding: 0.75rem 1rem !important;
  font-size: 0.875rem !important;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #2563eb !important;
}

/* ===== Hero Slider ===== */
:root {
  --hero-gradient-start: rgba(17, 94, 198, 0.6);
  --hero-gradient-mid: rgba(23, 58, 149, 0.3);
  --hero-gradient-end: rgba(23, 58, 149, 0.05);
}

.hero-slider-item {

  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  z-index: 0;
}

.hero-slider-item.active {
  opacity: 1;
  z-index: 1;
}

.hero-slider-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  transition: transform 8s linear;
}

.hero-slider-item.active img {
  transform: scale(1);
}

@keyframes kenBurns {
  0% {
    transform: scale(1) translate(0, 0);
  }

  25% {
    transform: scale(1.04) translate(-1%, 0.5%);
  }

  50% {
    transform: scale(1.07) translate(1%, -0.5%);
  }

  75% {
    transform: scale(1.04) translate(-0.5%, 1%);
  }

  100% {
    transform: scale(1.1) translate(0.5%, -0.5%);
  }
}

/* Ken Burns: chỉ chạy trên slide đang active, dùng CSS thuần thay vì JS */
.hero-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
  backface-visibility: hidden;
  animation: kenBurns 12s linear infinite alternate;
  animation-play-state: paused;
  /* mặc định tạm dừng */
}

.hero-swiper .swiper-slide-active img {
  animation-play-state: running;
  /* chỉ chạy khi slide đang hiện */
}


.hero-pagination.swiper-pagination {
  position: static !important;
  width: auto !important;
  display: flex !important;
  gap: 0.75rem !important;
  align-items: center !important;
  z-index: auto !important;
}

.hero-pagination .swiper-pagination-bullet {
  opacity: 1 !important;
  background: rgba(255, 255, 255, 0.5) !important;
  width: 0.75rem !important;
  height: 0.75rem !important;
  border-radius: 9999px !important;
  transition: all 0.4s ease !important;
  border: 2px solid rgba(255, 255, 255, 0.3) !important;
  margin: 0 !important;
  display: inline-block !important;
}

.hero-pagination .swiper-pagination-bullet-active {
  background: #fbbf24 !important;
  width: 1rem !important;
  height: 1rem !important;
  border-color: #fbbf24 !important;
  box-shadow: 0 0 12px rgba(251, 191, 36, 0.7) !important;
}

/* ============================================================
   ENHANCED ANIMATIONS & EFFECTS — v2
   ============================================================ */

/* ── Scroll progress bar ── */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  z-index: 9999;
  background: linear-gradient(90deg, #173a95, #fbbf24, #f97316);
  transition: width 0.1s linear;
  border-radius: 0 2px 2px 0;
}

/* ── Gradient text shimmer (accent headings) ── */
@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.text-gradient-animate {
  background: linear-gradient(270deg, #fbbf24, #f97316, #fbbf24, #facc15);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 5s ease infinite;
}

/* ── Shimmer sweep (card hover) ── */
@keyframes cardShimmerAnim {
  0% {
    left: -80%;
  }

  100% {
    left: 130%;
  }
}

.card-shimmer {
  position: absolute;
  top: 0;
  left: -80%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.09), transparent);
  transform: skewX(-15deg);
  pointer-events: none;
  z-index: 1;
}

.service-card:hover .card-shimmer,
.achievement-card:hover .card-shimmer,
.infra-card:hover .card-shimmer {
  animation: cardShimmerAnim 0.65s ease forwards;
}

/* ── Icon ring glow ── */
.icon-ring {
  position: relative;
}

.icon-ring::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 20px;
  background: inherit;
  opacity: 0;
  filter: blur(10px);
  z-index: -1;
  transition: opacity 0.4s ease, filter 0.4s ease;
}

.service-card:hover .icon-ring::after {
  opacity: 0.45;
  filter: blur(14px);
}

/* ── Service card — gradient border on hover ── */
.service-card {
  transition: transform .35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow .35s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, transparent, transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  transition: background 0.4s ease;
  pointer-events: none;
  z-index: 2;
}

.service-card:hover::before {
  background: linear-gradient(135deg, var(--icon-gradient-start, #3b82f6), var(--icon-gradient-end, #06b6d4));
}

.service-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 24px 50px -18px rgba(15, 23, 42, .22), 0 0 0 1px rgba(23, 58, 149, 0.06);
}

.service-card:hover .service-icon {
  transform: scale(1.12) rotate(-4deg);
}

.service-card .service-icon {
  transition: transform .35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-card:hover .service-cta {
  color: #f59e0b;
  gap: 10px;
}

.service-cta {
  transition: color 0.3s ease, gap 0.3s ease;
}

/* ── Achievement card enhancements ── */
.achievement-card {
  transition: background .5s ease, transform .35s ease, box-shadow .35s ease;
  position: relative;
  overflow: hidden;
}

.achievement-card:hover {
  background: rgba(255, 255, 255, 0.09);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.35);
}

.achievement-card:hover .ach-icon {
  transform: scale(1.12) rotate(-4deg);
}

.ach-icon {
  transition: transform .35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── Infra card enhancements ── */
.infra-card {
  transition: border-color .3s, box-shadow .3s, transform .35s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.infra-card:hover {
  border-color: rgba(23, 58, 149, .28);
  box-shadow: 0 18px 40px -12px rgba(23, 58, 149, .22);
  transform: translateY(-5px);
}

.infra-icon-box {
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.infra-card:hover .infra-icon-box {
  transform: scale(1.12) rotate(-5deg);
}

/* ── Timeline dot pulse ring ── */
@keyframes dotRing {
  0% {
    box-shadow: 0 12px 28px -8px rgba(15, 23, 42, .30), 0 0 0 5px rgba(255, 255, 255, 0.92), 0 0 0 8px rgba(255, 255, 255, 0.42), 0 0 0 0 var(--dot-ring-color, rgba(23, 58, 149, 0.40));
  }

  50% {
    box-shadow: 0 12px 28px -8px rgba(15, 23, 42, .30), 0 0 0 5px rgba(255, 255, 255, 0.92), 0 0 0 8px rgba(255, 255, 255, 0.42), 0 0 0 16px transparent;
  }

  100% {
    box-shadow: 0 12px 28px -8px rgba(15, 23, 42, .30), 0 0 0 5px rgba(255, 255, 255, 0.92), 0 0 0 8px rgba(255, 255, 255, 0.42), 0 0 0 0 var(--dot-ring-color, rgba(23, 58, 149, 0.40));
  }
}

.timeline-dot-active {
  animation: dotRing 2.6s ease-in-out infinite;
}

/* ── Hero floating particles ── */
.hero-particle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: floatParticle var(--dur, 8s) ease-in-out infinite;
  animation-delay: var(--dly, 0s);
  will-change: transform, opacity;
}

@keyframes floatParticle {

  0%,
  100% {
    transform: translateY(0) translateX(0) scale(1);
    opacity: var(--op-lo, 0.25);
  }

  40% {
    transform: translateY(-28px) translateX(14px) scale(1.1);
    opacity: var(--op-hi, 0.55);
  }

  70% {
    transform: translateY(-14px) translateX(-18px) scale(0.9);
    opacity: var(--op-lo, 0.25);
  }
}

/* ── Orbit node pulse ring (kept for backward compat) ── */
@keyframes orbitRing {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.85;
  }
}

/* ── Section badge hover ── */
.section-badge {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}

.section-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

/* ── News featured image overlay ── */
.news-featured-overlay {
  transition: background 0.5s ease;
  background: linear-gradient(to top, #0f172a, rgba(15, 23, 42, 0.45), transparent);
}

.news-featured:hover .news-featured-overlay {
  background: linear-gradient(to top, #0f172a, rgba(15, 23, 42, 0.6), rgba(15, 23, 42, 0.15));
}

/* ── 3D tilt effect ── */
.tilt-card {
  transform-style: preserve-3d;
  transform: perspective(1200px) rotateX(0deg) rotateY(0deg);
  transition: transform 0.15s ease;
}

/* ── Stat card shimmer ── */
.stat-shimmer {
  position: absolute;
  top: 0;
  left: -70%;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
  transform: skewX(-15deg);
  pointer-events: none;
  z-index: 20;
}

.group:hover .stat-shimmer {
  animation: cardShimmerAnim 0.7s ease forwards;
}

/* ── Stat card count glow ── */
.stat-count-glow {
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.4), 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* ── Service icon badge ── */
.service-icon-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fbbf24;
  border: 2px solid white;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0);
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-card:hover .service-icon-badge {
  opacity: 1;
  transform: scale(1);
}

/* ── CTA button enhanced ── */
.btn-cta-primary {
  position: relative;
  overflow: hidden;
}

.btn-cta-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(-100%) skewX(-15deg);
  transition: transform 0.4s ease;
}

.btn-cta-primary:hover::after {
  transform: translateX(150%) skewX(-15deg);
}

/* ── Achievement number count glow ── */
.count-highlight {
  filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.3));
}

/* ══════════════════════════════════════════════
   Services AI 4.0 — Badges, Tabs, Users Row
   ══════════════════════════════════════════════ */

/* ── Service badge (top-right of card) ── */
.service-badge {
  position: absolute;
  top: 13px;
  right: 13px;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 3px 9px;
  border-radius: 20px;
  line-height: 1.6;
  text-transform: uppercase;
  z-index: 2;
  white-space: nowrap;
}

.service-badge-popular {
  background: #fef3c7;
  color: #92400e;
  border: 1px solid #fde68a;
}

.service-badge-new {
  background: #dcfce7;
  color: #15803d;
  border: 1px solid #bbf7d0;
}

.service-badge-ai {
  background: linear-gradient(135deg, #6366f1, #a855f7);
  color: #fff;
  box-shadow: 0 2px 10px rgba(99, 102, 241, .35);
}

.service-badge-blockchain {
  background: linear-gradient(135deg, #0891b2, #06b6d4);
  color: #fff;
  box-shadow: 0 2px 10px rgba(6, 182, 212, .35);
}

.service-badge-smart {
  background: #fdf2f8;
  color: #9d174d;
  border: 1px solid #fbcfe8;
}

.service-badge-realtime {
  background: linear-gradient(135deg, #059669, #10b981);
  color: #fff;
  box-shadow: 0 2px 10px rgba(5, 150, 105, .35);
}

.service-badge-integrated {
  background: #eff6ff;
  color: #1e40af;
  border: 1px solid #bfdbfe;
}

/* ── Service users row ── */
.service-users-row {
  display: flex;
  align-items: center;
  gap: 6px;
  padding-top: 11px;
  margin-top: 11px;
  border-top: 1px solid #f1f5f9;
  font-size: 0.8rem;
  /* Chuyển từ 11.5px sang 0.8rem để hỗ trợ scale di động */
  font-weight: 600;
  color: #64748b;
  /* Nâng từ #94a3b8 lên #64748b để rõ nét hơn */
}

/* ── Tab filter buttons ── */
.service-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 18px;
  border-radius: 999px;
  font-size: 0.875rem;
  /* Chuyển từ 13px sang 0.875rem (14px) để hỗ trợ scale di động */
  font-weight: 600;
  cursor: pointer;
  transition: all .25s cubic-bezier(.4, 0, .2, 1);
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  color: #334155;
  /* Nâng từ #475569 lên #334155 để rõ nét hơn */
  box-shadow: 0 1px 3px rgba(0, 0, 0, .04);
}

.service-tab-btn:hover {
  background: #f1f5f9;
  color: #1e293b;
  border-color: #cbd5e1;
}

.service-tab-btn.active {
  background: #173a95;
  color: #fff;
  border-color: #173a95;
  box-shadow: 0 4px 14px rgba(23, 58, 149, .28);
}

/* ── Services section dot-grid background ── */
#services .services-dot-bg {
  background-image: radial-gradient(circle, #173a9512 1px, transparent 1px);
  background-size: 28px 28px;
}

/* ── Service card grid fade-in on tab switch ── */
@keyframes cardsFadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.services-grid-enter {
  animation: cardsFadeIn .35s ease forwards;
}

/* ── Stats strip pill ── */
.service-stat-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 0 3px rgba(52, 211, 153, .25);
  animation: pulse 2s ease-in-out infinite;
}

/* ══════════════════════════════════════════════
   Achievement Cards — Vision Redesign
   ══════════════════════════════════════════════ */
/* ===== Achievement Cards ===== */
.ach-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.11);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: transform .4s cubic-bezier(.34, 1.56, .64, 1),
    box-shadow .35s ease,
    border-color .3s ease;
}

.ach-card:hover {
  transform: translateY(-11px) scale(1.025);
  box-shadow: 0 36px 64px -12px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(255, 255, 255, 0.18),
    0 0 40px -10px var(--ach-color-a, #6366f1),
    inset 0 1px 0 rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.20);
}

/* Scan line sweep */
.ach-scan-line {
  position: absolute;
  top: -40%;
  left: 0;
  right: 0;
  height: 35%;
  background: linear-gradient(to bottom,
      transparent 0%,
      rgba(255, 255, 255, 0.05) 40%,
      rgba(255, 255, 255, 0.07) 50%,
      rgba(255, 255, 255, 0.05) 60%,
      transparent 100%);
  animation: achScan 5s ease-in-out infinite;
  animation-delay: var(--scan-delay, 0s);
  pointer-events: none;
  z-index: 2;
}

@keyframes achScan {
  0% {
    top: -40%;
    opacity: 0;
  }

  5% {
    opacity: 1;
  }

  65% {
    top: 130%;
    opacity: 1;
  }

  66% {
    opacity: 0;
    top: 130%;
  }

  100% {
    top: 130%;
    opacity: 0;
  }
}

/* Status dot blink */
.ach-status-dot {
  animation: achDotBlink 2s ease-in-out infinite;
}

@keyframes achDotBlink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.25;
  }
}

/* Pulse ring behind SVG */
@keyframes achPulse {
  0% {
    box-shadow: 0 0 0 0 var(--ring-color, rgba(99, 102, 241, 0.5));
    opacity: 0.8;
  }

  70% {
    box-shadow: 0 0 0 18px transparent;
    opacity: 0;
  }

  100% {
    box-shadow: 0 0 0 0 transparent;
    opacity: 0;
  }
}

.ach-pulse-ring {
  animation: achPulse 3s ease-out infinite;
  animation-delay: 1.2s;
}

/* SVG ring stroke — r=42, C=263.9 */
.ach-ring-fill {
  stroke-linecap: round;
  stroke-dasharray: 263.9;
  stroke-dashoffset: 263.9;
  transition: stroke-dashoffset 1.7s cubic-bezier(0.17, 0.67, 0.35, 1.05);
}

.ach-ring-glow {
  transition: stroke-dashoffset 1.7s cubic-bezier(0.17, 0.67, 0.35, 1.05),
    opacity .3s ease;
}

@keyframes ringGlow {

  0%,
  100% {
    opacity: 0.55;
  }

  50% {
    opacity: 0.95;
  }
}

.ach-card:hover .ach-ring-glow {
  animation: ringGlow 1.8s ease-in-out infinite;
}

/* Trend badge */
.ach-trend-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 20px;
  background: rgba(16, 185, 129, 0.18);
  color: #4ade80;
  border: 1px solid rgba(74, 222, 128, 0.30);
  letter-spacing: 0.02em;
  line-height: 1.5;
  white-space: nowrap;
}

/* ==========================================================================
   MEGA MENU: SUPPORT (H? TR?)
   ========================================================================== */
.hotro-mega-dropdown {
  background: rgba(28, 58, 102, 0.94);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 2rem;
  box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.5),
    inset 0 1px 1px rgba(255, 255, 255, 0.1);
  overflow: hidden;
  display: flex;
  height: 440px;
  width: 760px;
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px) scale(0.98);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.group:hover .hotro-mega-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

/* Map Section */
.hotro-map-wrapper {
  width: 50%;
  position: relative;
  background: #0f172a;
}

.hotro-map-wrapper iframe {
  width: 100%;
  height: 100%;
  filter: grayscale(0.2) contrast(1.1);
  transition: filter 0.5s ease;
}

.hotro-map-wrapper:hover iframe {
  filter: grayscale(0) contrast(1);
}

.hotro-map-overlay {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  pointer-events: none;
}

/* Contact Section */
.hotro-content {
  width: 50%;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hotro-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hotro-title::before {
  content: '';
  width: 4px;
  height: 1.5rem;
  background: #fbbf24;
  border-radius: 4px;
}

.hotro-contact-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hotro-item {
  display: flex;
  gap: 1rem;
  transition: all 0.3s ease;
}

.hotro-icon-box {
  width: 2.75rem;
  height: 2.75rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fbbf24;
  transition: all 0.3s ease;
}

.hotro-item:hover .hotro-icon-box {
  background: #fbbf24;
  color: #1e3a8a;
  transform: scale(1.1) rotate(-5deg);
}

.hotro-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #94a3b8;
  margin-bottom: 0.25rem;
}

.hotro-value {
  font-size: 0.9rem;
  color: #fff;
  font-weight: 600;
  line-height: 1.5;
}

.hotro-value.highlight {
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}

/* Footer Section */
.hotro-footer {
  padding-top: 1.5rem;
  margin-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hotro-social {
  display: flex;
  gap: 0.75rem;
}

.hotro-social-btn {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: transform 0.3s ease;
}

.hotro-social-btn:hover {
  transform: translateY(-3px) scale(1.1);
}

.hotro-social-btn.fb {
  background: #1877f2;
}

.hotro-social-btn.zalo {
  background: #0084ff;
}

.hotro-hours {
  text-align: right;
}

.hotro-hours-label {
  font-size: 0.6rem;
  font-weight: 800;
  color: #94a3b8;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.hotro-hours-time {
  font-size: 0.75rem;
  font-weight: 900;
  color: #fbbf24;
}

/* ══════════════════════════════════════════════
   iOS SAFARI: FIX GPU COMPOSITING TEXT BLUR
   Nguyên nhân: backdrop-filter / filter tạo ra GPU layer riêng trên iOS,
   làm text trong/cạnh element đó bị rasterize lại ở độ phân giải thấp → mờ.
   Giải pháp: ép các element dùng filter vào isolated stacking context bằng
   translateZ(0) + will-change:transform, đồng thời bật subpixel antialiasing
   cho text bên trong chúng.
   ══════════════════════════════════════════════ */

/* --- Ngăn filter/backdrop-filter làm mờ text siblings trên iOS --- */
.node-label,
.pax-feature-item,
.pax-arrow,
.ach-card,
.hotro-mega-dropdown,
.hotro-map-overlay {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* Text bên trong các GPU-composited containers phải dùng subpixel để sắc nét */
.ach-card *,
.hotro-mega-dropdown *,
.hotro-map-overlay *,
.pax-feature-item * {
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: auto;
}

/* ══════════════════════════════════════════════
   MOBILE < 450px: Đảm bảo cỡ chữ thích hợp cho các nhãn nhỏ
   ══════════════════════════════════════════════ */
@media (max-width: 450px) {

  /* Tự động nâng class text-sm, các tab button và chân thẻ lên > 0.91rem trên di động */
  .text-sm,
  .service-tab-btn,
  .service-users-row {
    font-size: 0.91rem !important;
  }
}