* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
html {
  height: 100%;
  font-family: 'Segoe UI', sans-serif;
}

.slider {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
}

.slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.text-box {
  position: relative;
  color: white;
  background-color: transparent;
  z-index: 2;
  max-width: 90%;
}

.text-box p:first-of-type {
  animation: slideUpText 1s ease forwards;
  animation-delay: 0.2s;
  opacity: 0;
  font-size: 1.2rem;
  font-weight: 600;
  color: #cccccc;
  text-align: center;
  text-transform: uppercase;
  margin-top: 20px;
}

.text-box h3 {
  font-weight: bold;
  animation: slideUpText 1s ease forwards;
  animation-delay: 0.6s;
  opacity: 0;
  font-size: 4.5vw;
  color: white;
  text-align: center;
  margin: 20px 0;
}

.text-box h4 {
  font-weight: bold;
  animation: slideUpText 1s ease forwards;
  animation-delay: 0.6s;
  opacity: 0;
  font-size: 3.5vw;
  color: white;
  text-align: center;
  margin: 20px 0;
}

.text-box h5 {
  font-weight: bold;
  animation: slideUpText 1s ease forwards;
  animation-delay: 0.6s;
  opacity: 0;
  font-size: 2.5vw;
  color: white;
  text-align: center;
  margin: 20px 0;
}

.text-box p:last-of-type {
  animation: slideUpText 1s ease forwards;
  animation-delay: 1s;
  opacity: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: #cccccc;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 30px;
}

.text-box .btn {
  display: inline-block;
  margin-top: 25px;
  padding: 12px 28px;
  background: transparent;
  border: 2px solid white;
  color: white;
  font-size: 1rem;
  cursor: pointer;
  animation: slideUpText 1s ease forwards;
  animation-delay: 1.4s;
  opacity: 0;
  transition: all 0.3s ease;
  border-radius: 50px;
}

.text-box .btn:hover {
  background: white;
  color: black;
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.7);
}

@keyframes slideUpText {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1024px) {
  .text-box h3 {
    font-size: 7vw !important;
  }

  .text-box h4 {
    font-size: 7vw;
  }

  .text-box h5 {
    font-size: 4vw;
  }

  .text-box p:first-of-type,
  .text-box p:last-of-type {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .text-box h3 {
    font-size: 8vw;
  }

  .text-box h4 {
    font-size: 6vw !important;
  }

  .text-box h5 {
    font-size: 5vw !important;
  }

  .text-box p:first-of-type,
  .text-box p:last-of-type {
    font-size: 0.95rem;
  }

  .text-box .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .text-box h3 {
    font-size: 9vw;
  }

  .text-box h4 {
    font-size: 7vw !important;
  }

  .text-box h5 {
    font-size: 6vw;
  }

  .text-box p:first-of-type,
  .text-box p:last-of-type {
    font-size: 0.85rem;
  }

  .text-box .btn {
    padding: 8px 18px;
    font-size: 0.85rem;
  }
}

.highlight {
  font-size: 4.5vw;
  background: #fa7e7e;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  letter-spacing: 1px;
}

/* ------------------------------------------ Info Section  ------------------------------------------ */

.about-section {
  padding: 40px 20px;
  background-color: #fff;
  overflow: hidden;
}

.about-section .container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

/* Centered title above section */
.centered-title {
  flex-basis: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
}

.centered-title h1 {
  font-size: 32px;
  font-weight: bold;
  color: #000;
  position: relative;
  padding: 10px 0;
}

.centered-title h1::before,
.centered-title h1::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 4px;
  background-color: #fa7e7e;
}

.centered-title h1::before {
  top: 0;
  left: 0;
}

.centered-title h1::after {
  bottom: 0;
  right: 0;
}

.about-image-wrap {
  position: relative;
  flex: 1 1 400px;
  max-width: 470px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.about-image-wrap:hover {
  transform: scale(1.02);
}

.decorative-box {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  border: 4px solid #c78f27;
  box-sizing: border-box;
  z-index: 1;
  transition: border-color 0.5s;
}

.about-image-wrap:hover .decorative-box {
  border-color: #110fa0;
}

.about-img {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
  border-radius: 4px;
}

.electric-icon {
  position: absolute;
  font-size: 2.5rem;
  color: #00aaff;
  z-index: 3;
  opacity: 0.8;
  filter: drop-shadow(0 0 4px rgba(0, 170, 255, 0.6));
  animation: bolt-glow-blue 2s infinite ease-in-out;
}

.icon1 {
  top: 10px;
  left: -35px;
}

.icon2 {
  top: 50px;
  left: -35px;
}

.icon3 {
  top: 90px;
  left: -35px;
}

@keyframes bolt-glow-blue {
  0% {
    color: #00aaff;
    filter: drop-shadow(0 0 4px rgba(0, 170, 255, 0.6));
    transform: scale(1) rotate(0deg);
    opacity: 0.8;
  }

  50% {
    color: #7fdfff;
    filter: drop-shadow(0 0 20px rgba(127, 223, 255, 0.9));
    transform: scale(1.1) rotate(10deg);
    opacity: 1;
  }

  100% {
    color: #00aaff;
    filter: drop-shadow(0 0 4px rgba(0, 170, 255, 0.6));
    transform: scale(1) rotate(0deg);
    opacity: 0.8;
  }
}

.animated-dots {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 120%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
}

.animated-dots .dot {
  --i: 0;
  position: absolute;
  width: 8px;
  height: 8px;
  background: #c78f27;
  border-radius: 50%;
  top: calc(50% - 4px);
  left: calc(50% - 4px);
  animation: rotate-dots 4s linear infinite;
}

.animated-dots .dot:nth-child(n) {
  transform: rotate(calc((var(--i) * 22.5deg))) translate(260px) rotate(calc(- (var(--i) * 22.5deg)));
}

.animated-dots .dot:nth-child(1) {
  --i: 0;
}

.animated-dots .dot:nth-child(2) {
  --i: 1;
}

.animated-dots .dot:nth-child(3) {
  --i: 2;
}

.animated-dots .dot:nth-child(4) {
  --i: 3;
}

.animated-dots .dot:nth-child(5) {
  --i: 4;
}

.animated-dots .dot:nth-child(6) {
  --i: 5;
}

.animated-dots .dot:nth-child(7) {
  --i: 6;
}

.animated-dots .dot:nth-child(8) {
  --i: 7;
}

.animated-dots .dot:nth-child(9) {
  --i: 8;
}

.animated-dots .dot:nth-child(10) {
  --i: 9;
}

.animated-dots .dot:nth-child(11) {
  --i: 10;
}

.animated-dots .dot:nth-child(12) {
  --i: 11;
}

.animated-dots .dot:nth-child(13) {
  --i: 12;
}

.animated-dots .dot:nth-child(14) {
  --i: 13;
}

.animated-dots .dot:nth-child(15) {
  --i: 14;
}

.animated-dots .dot:nth-child(16) {
  --i: 15;
}

@keyframes rotate-dots {
  to {
    transform: rotate(calc(360deg + var(--i) * 22.5deg)) translate(260px) rotate(calc(-360deg - var(--i) * 22.5deg));
  }
}

.about-content {
  flex: 1 1 350px;
}

.about-title {
  font-size: 2rem;
  margin-bottom: 16px;
  color: #222;
  line-height: 1.2;
}

.about-text {
  font-size: 1rem;
  color: #555;
  margin-bottom: 12px;
  text-align: justify;
  line-height: 1.6;
}

.about-features {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}

.about-features li {
  margin-bottom: 12px;
  font-size: 1rem;
  color: #333;
}

.about-features i {
  color: #fa7e7e;
  margin-right: 8px;
}

.btn.about-btn {
  display: inline-block;
  padding: 14px 32px;
  border: 2px solid #c78f27;
  border-radius: 6px;
  text-decoration: none;
  color: #222;
  font-weight: 600;
  font-family: 'Arial', sans-serif;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  background: linear-gradient(to bottom, #ffffff, #f8f8f8);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn.about-btn:hover {
  background: linear-gradient(to bottom, #c78f27, #a7721e);
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* --- */
.about-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 25px;
  align-items: center;
}

.btn-download {
  display: flex;
  align-items: center;
  padding: 12px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-family: 'Arial', sans-serif;
  background-color: #2c3e50;
  color: #ffffff;
  border: 2px solid transparent;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  overflow: hidden;
  position: relative;
  gap: 10px;
}

.btn-download .btn-icon {
  margin-left: 6px;
  display: inline-block;
  transition: transform 0.3s ease;
  font-size: 1.05rem;
}

.btn-download:hover,
.btn-download:focus {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(44, 62, 80, 0.3);
  background-color: #34495e;
  outline: none;
}

.btn-download:hover .btn-icon,
.btn-download:focus .btn-icon {
  transform: translateY(3px);
}

.btn-download::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg,
      transparent,
      rgba(255, 255, 255, 0.12),
      transparent);
  transition: left 0.6s ease;
  pointer-events: none;
}

.btn-download:hover::before,
.btn-download:focus::before {
  left: 100%;
}

.btn-download:focus-visible {
  box-shadow:
    0 6px 12px rgba(44, 62, 80, 0.18),
    0 0 0 4px rgba(52, 73, 94, 0.14);
}

@media (max-width: 480px) {
  .about-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .btn-download,
  .btn.about-btn {
    width: 100%;
    justify-content: center;
  }
}



.about-more {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.6s ease, opacity 0.4s ease;
}

.about-more.open {
  max-height: 1000px;
  opacity: 1;
}

.animate-left,
.animate-right,
.animate-bottom {
  opacity: 0;
  transition: all 0.8s ease-out;
}

.animate-left {
  transform: translateX(-50px);
}

.animate-right {
  transform: translateX(50px);
}

.animate-bottom {
  transform: translateY(50px);
}

.animate-visible {
  opacity: 1;
  transform: translate(0, 0);
}

@media (max-width: 768px) {
  .about-section .container {
    flex-direction: column;
    text-align: center;
  }

  .centered-title {
    margin-bottom: 30px;
  }

  .animated-dots {
    display: none;
  }

  .decorative-box {
    height: 70%;
  }

  .about-image-wrap {
    margin-top: 30px;
  }
}

@media (max-width: 1200px) {
  .about-section {
    padding: 35px 15px;
  }

  .about-section .container {
    gap: 30px;
  }

  .about-image-wrap,
  .about-content {
    flex: 1 1 48%;
  }
}

/* ------------------------------------------ why Choose us Section  ------------------------------------------ */
body {
  font-family: 'Poppins', sans-serif;
  background-color: #f9f9f9;
  margin: 0;
  padding: 0;
}

.choose-section {
  padding: 60px 0;
  background-color: #7f9196;
}

.title-bars {
  position: relative;
  display: inline-block;
  margin-bottom: 2rem;
}

.title-bars h1 {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.title-bars::before,
.title-bars::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 4px;
  background-color: #fa7e7e;
  left: 0;
  right: 0;
  margin: auto;
}

.title-bars::before {
  top: -12px;
  margin-left: 0px;
}

.title-bars::after {
  bottom: -12px;
  margin-right: 0px;
}

.section-hr {
  display: none;
}

.lead-copy {
  max-width: 800px;
  margin: 0 auto 2.5rem;
  font-size: 18px;
  font-weight: 500;
  color: #ffffff;
}

.choose-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease-out, box-shadow 0.2s ease-out, border-color 0.2s ease-out !important;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  flex: 1;
  border: 2px solid transparent;
}

.choose-card:hover {
  transform: translateY(-8px) !important;
  border-color: #7f9196;
  box-shadow:
    0 6px 12px rgba(0, 0, 0, 0.15),
    0 14px 28px rgba(0, 0, 0, 0.12),
    0 0 12px #5e6c6f;
}

.icon-wrapper {
  width: 60px;
  height: 60px;
  background: #fa7e7e;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  margin: 0 auto 15px;
  transition: transform 0.12s ease-out;
}

.icon-wrapper:hover {
  animation: bobble 0.28s ease-in-out infinite alternate;
}

@keyframes bobble {
  from {
    transform: translateY(0) rotate(0deg);
  }

  to {
    transform: translateY(-6px) rotate(8deg);
  }
}

.icon-wrapper img {
  max-height: 50px;
  width: auto;
}

.choose-card:hover .icon-wrapper {
  animation: none !important;
}

h5 {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: .75rem;
  text-transform: uppercase;
  color: #333;
  transition: color 0.12s ease-out;
}

/*.choose-card:hover h5 {
  color: #007bff;
}*/

p {
  font-size: 16px;
  color: #666;
  transition: color 0.12s ease-out;
}

.read-more {
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  color: #333;
  display: inline-flex;
  align-items: center;
  text-transform: uppercase;
  transition: color 0.12s ease-out;
}

.read-more .line {
  display: block;
  width: 80px;
  height: 1px;
  background: #ccc;
  margin: 0 8px;
  transition: background 0.12s ease-out;
}

.read-more:hover {
  color: #007bff;
}

.read-more:hover .line {
  background: #007bff;
}

.choose-section .row {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  margin: 0 -0.5rem;
}

.choose-section .row>[class*="col-"] {
  display: flex;
  padding: 0 0.5rem;
}

.choose-card>.read-more {
  margin-top: auto;
}


/* ------------------------------------------ Our Client Section  ------------------------------------------ */

.clients-section {
  background-color: #fff;
  padding: 40px 0;
}

#clientsCarouselKRS {
  --primary: #ffffff !important;
  --white: #ffffff;
  --card-w: clamp(70px, 12vw, 150px);
  --card-h: clamp(48px, 7vw, 90px);
  --gap: clamp(8px, 1.6vw, 20px);
  --border-size: 2px;
  display: block;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  box-sizing: border-box;
  font-family: inherit;
  opacity: 0;
  transform: translateY(50px);
  will-change: transform, opacity;
}

@keyframes slideUpFrom50 {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }

  70% {
    opacity: 1;
    transform: translateY(-6px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

#clientsCarouselKRS.animate-in {
  animation: slideUpFrom50 620ms cubic-bezier(.22, .9, .3, 1) both;
}

.cc-header {
  text-align: center;
  margin: 6px 0 8px;
}

.cc-header h2 {
  margin: 0;
  padding: 0;
  font-size: clamp(18px, 2.4vw, 28px);
  font-weight: 600;
  letter-spacing: 0.2px;
  background: linear-gradient(180deg, var(--primary), var(--primary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.cc-carousel {
  position: relative;
  overflow: hidden;
  padding: 0;
  margin-top: 10px;
  width: 100%;
}

.cc-viewport {
  width: 100%;
  overflow: hidden;
}

.cc-track {
  display: flex;
  align-items: stretch;
  gap: var(--gap);
  will-change: transform;
  animation: cc-scroll 30s linear infinite;
  padding: 6px 0;
}

.cc-card {
  flex: 0 0 auto;
  width: var(--card-w);
  height: var(--card-h);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  margin: 0;
  background: #ffffff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow:
    0 4px 6px rgba(0, 0, 0, 0.1),
    0 8px 16px rgba(0, 0, 0, 0.2);
  transition: transform .18s ease, box-shadow .18s ease;
}

.cc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.12);
}

.cc-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: transparent;
}

@keyframes cc-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@media (max-width:1200px) {
  .cc-track {
    animation-duration: 36s;
  }

  #clientsCarouselKRS {
    --card-w: clamp(70px, 11vw, 130px);
    --card-h: clamp(48px, 6.2vw, 78px);
    --gap: clamp(8px, 1.4vw, 16px);
  }
}

@media (max-width:900px) {
  .cc-track {
    animation-duration: 40s;
  }

  #clientsCarouselKRS {
    --card-w: clamp(66px, 13vw, 110px);
    --card-h: clamp(46px, 7vw, 64px);
    --gap: clamp(8px, 1.6vw, 12px);
  }
}

@media (max-width:600px) {
  .cc-track {
    animation-duration: 48s;
  }

  #clientsCarouselKRS {
    --card-w: clamp(64px, 18vw, 100px);
    --card-h: clamp(44px, 11vw, 60px);
    --gap: 10px;
  }
}

@media (max-width:420px) {
  .cc-track {
    animation-duration: 56s;
  }

  #clientsCarouselKRS {
    --card-w: clamp(60px, 22vw, 92px);
    --card-h: clamp(40px, 12.5vw, 56px);
    --gap: 8px;
  }
}

.cc-track[data-paused="true"] {
  animation-play-state: paused;
}


/* ------------------------------------------ Vision | Mission | Core Values  ------------------------------------------ */
:root {
  --bg: #7f9196;
  --card-bg: #ffffff;
  --accent: #000000;
  --muted: #505f64;
  --gold: #fa7e7e;
  --radius: 14px;
  --glass: rgba(255, 255, 255, 0.65);
  --shadow: 0 10px 30px rgba(8, 22, 48, 0.08);
  --max-width: 1100px;
  --font-main: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.vmc {
  min-height: 60vh;
  margin: 0;
  font-family: var(--font-main);
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
}

.vmx-wrapper {
  width: 100%;
  max-width: var(--max-width);
  display: grid;
  grid-template-columns: min(320px, 35%) 1fr;
  gap: 28px;
  align-items: start;
  overflow: hidden;
  background: var(--bg);
  padding: clamp(20px, 4vw, 50px);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.0);
  box-sizing: border-box;
  height: auto;
}

.vmx-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
}

.vmx-card {
  background: var(--card-bg);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 1px solid rgba(9, 30, 66, 0.08);
  transition: transform .28s cubic-bezier(.2, .9, .2, 1), box-shadow .28s;
  box-shadow: 0 6px 18px rgba(10, 26, 66, 0.06);
  text-align: center;
  width: 100%;
  min-height: 70px;
  box-sizing: border-box;
}

.vmx-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(10, 26, 66, 0.08);
}

.vmx-card.active {
  border: 2px solid #666;
  box-shadow: 0 14px 40px rgba(11, 61, 145, 0.12);
  transform: translateY(-6px) scale(1.02);
}

.vmx-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  text-align: center;
}

.vmx-title {
  font-size: 18px;
  font-weight: 600;
  color: black;
  margin: 0;
}

.vmx-sub {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
  opacity: 0.95;
  line-height: 1.4;
}

.vmx-detail {
  background: transparent;
  padding: 10px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: center;
  align-items: center;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  box-sizing: border-box;
}

.vmx-detail .headline {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.vmx-detail h2 {
  color: white;
  margin: 0;
  font-size: clamp(24px, 4vw, 28px);
}

.vmx-strap {
  font-size: 15px;
  color: black;
  font-weight: 700;
  margin: 0;
}

.vmx-body {
  font-size: 16px;
  line-height: 1.65;
  color: rgb(255, 255, 255);
  max-width: 60ch;
}

.vmx-ornament {
  height: 4px;
  width: 80px;
  border-radius: 999px;
  background: var(--gold);
  opacity: 0.95;
}

.vmx-values-list {
  list-style: none;
  padding: 0;
  margin: 8px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 1px;
  width: 100%;
  align-items: flex-start;
}

.vmx-values-item {
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
  white-space: nowrap;
}

.vmx-values-item::before {
  content: '»';
  font-size: 28px;
  margin-bottom: 6px;
  font-weight: bold;
  color: var(--gold);
  line-height: 1;
  position: relative;
  animation: slide 1s infinite alternate;
}

@keyframes slide {
  0% {
    left: 0;
  }

  100% {
    left: 5px;
  }
}

.vmx-values-label {
  font-weight: 500;
  color: white;
}

@media (max-width: 900px) {
  body {
    padding: 20px 10px;
    align-items: flex-start;
    min-height: 100vh;
  }

  .vmx-wrapper {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: clamp(16px, 3vw, 24px);
    height: auto;
  }

  .vmx-nav {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  .vmx-card {
    flex-grow: 1;
    flex-basis: 220px;
    max-width: 280px;
    box-sizing: border-box;
  }
}

@media (max-width: 600px) {
  body {
    padding: 0;
  }

  .vmx-wrapper {
    padding: 24px 16px;
    border-radius: 0;
    box-shadow: none;
    background: var(--bg);
    backdrop-filter: none;
    border: none;
    height: auto;
    box-sizing: border-box;
  }

  .vmx-nav {
    flex-direction: column;
    gap: 12px;
  }

  .vmx-card {
    flex-basis: auto;
    width: 100%;
  }

  .vmx-title {
    font-size: 17px;
  }

  .vmx-sub {
    font-size: 13px;
  }

  .vmx-detail {
    margin: 0;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 24px 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .vmx-detail h2 {
    font-size: 24px;
  }

  .vmx-strap {
    font-size: 15px;
  }

  .vmx-body {
    font-size: 15px;
  }

  .vmx-values-item {
    white-space: normal;
  }
}

.vmx-body strong {
  color: #000000;
}

.vmc .vmx-body {
  font-size: 15px;
  font-weight: 500;
}

.vmx-values-list {
  margin-left: 20px;
}

.vmx-card:focus-visible {
  outline: 3px solid rgba(11, 61, 145, 0.2);
  outline-offset: 3px;
}

.vmx-detail.fade-out {
  animation: fadeOut .22s ease forwards;
}

.vmx-detail.fade-in {
  animation: fadeIn .32s ease forwards .1s;
}

@keyframes fadeOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 0;
    transform: translateY(8px);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}



.back-to-top {
  position: fixed;
  right: 0;
  bottom: 0;
  width: 54px;
  height: 54px;

  clip-path: circle(100% at 100% 100%);

  background: #7f9196;
  color: #fff;
  border: 0;

  display: grid;
  place-items: center;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  z-index: 1050;

  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s ease, background .2s ease;
  box-shadow: 0 10px 24px rgba(79, 70, 229, .35);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: #7f9196;
}

.back-to-top:focus-visible {
  outline: 2px solid #ffffffcc;
  outline-offset: 2px;
}

.back-to-top i {
  display: inline-block;
  transform: translate(6px, 6px);
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .back-to-top {
    transition: none;
  }

}
