:root {
  --text-w-color: #f5f5f5;
  --text-d-color: #000000;
  --primary-color: #8f00ff;
  --primary: #8f00ff;
  --text: #f5f5f5;
  --cyber: #00e5ff;
  color-scheme: only light;
  scrollbar-width: thin;
  scrollbar-color: #4f46e5 #000;
  scroll-behavior: smooth;
}
@keyframes scrollBounce {
  0%,
  100% {
    transform: translateY(1px);
  }
  50% {
    transform: translateY(-6px);
  } /* adjust height of bounce */
}

/* Tailwind-compatible class */
.scroll-bounce {
  display: inline-block;
  animation: scrollBounce 2s ease-in-out infinite;
}
nav ul a {
  color: inherit;
  transition: color 0.3s ease-in-out, transform 0.3s ease-in-out;
}

nav ul a:hover {
  color: #8f00ff;
  transform: scale(1.05);
}
.glass-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: 0.3s ease;
  border-radius: 0.75rem;
  padding: 1.5rem;
  min-height: 20rem;
  display: flex;
  flex-direction: column;
  gap: 1em;
}

/* Hover Glow Effect */
.glass-card:hover {
  border-color: var(--cyber);
  /* box-shadow: 0 0 15px #00E5FF; */
  transform: translateY(-4px);
}

/* Icons */
.icon-box i {
  color: var(--primary);
  font-size: 34px;
  margin-bottom: 12px solid var(--primary);
}

/* Purple list markers */
.custom-list li {
  list-style-type: disc;
  justify-content: center;

  margin-left: 3em;
  text-align: left;
}

.custom-list li::marker {
  color: var(--primary);
}

/* Titles */
.card-title {
  color: white;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

@keyframes brand-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.animate-brand-marquee {
  animation: brand-marquee 25s linear infinite;
}
.animate-brand-marquee:hover {
  cursor: pointer;
  animation-play-state: paused;
}
.on{
  color: var(--primary-color);
  font-size: 40px;
}
.on:hover{
  color: #00e5ff;
}
#menu-toggle {
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

#menu-toggle .bar {
  width: 24px;
  height: 2px;
  background: white;
  transition: all 0.3s ease;
}

/* Open state */
#menu-toggle.open .bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

#menu-toggle.open .bar:nth-child(2) {
  opacity: 0;
}

#menu-toggle.open .bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
@media (forced-colors: active) {
  * {
    forced-color-adjust: none;
  }
}
@media (prefers-color-scheme: dark) {
  body {
    background: white;
    color: black;
  }
}
@media (prefers-reduced-motion: reduce) {
  .whatsapp-icon {
    animation: none;
  }
}


::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-thumb {
  background: #4f46e5;
  border-radius: 999px;
}
/* whatsapp icon animation */
.whatsapp-icon {
  color: #8F00FF;
  display: inline-block;
  transform-origin: center;
  animation: whatsappDoubleWave 7s ease-in-out infinite;
}

@keyframes whatsappDoubleWave {
  /* idle */
  0%,
  70% {
    transform: rotate(0deg);
  }

  /* wave 1 */
  75% {
    transform: rotate(-20deg);
  }
  80% {
    transform: rotate(0deg);
  }

  /* wave 2 */
  85% {
    transform: rotate(-20deg);
  }
  90% {
    transform: rotate(0deg);
  }

  /* rest */
  100% {
    transform: rotate(0deg);
  }
}
/* Preloader Wrapper */
#preloader {
  position: fixed;
  inset: 0;
  background: #0b0b0f;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 1s ease, visibility 1s ease;
}

/* Hide */
#preloader.hide {
  opacity: 0;
  visibility: hidden;
}

/* Content */
.loader-content {
  text-align: center;
}

/* Logo + Name */
.brand-line {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
  animation: fadeScale 1.6s ease forwards;
}

.loader-logo {
  width: 60px;
}

/* Company Name */
.loader-name {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.5px;
}

/* Subtitle */
.loader-text {
  margin-top: 12px;
  color: #aaa;
  font-size: 0.95rem;
  letter-spacing: 1px;
  animation: fadeUp 1.8s ease forwards;
}

/* Animations */
@keyframes fadeScale {
  from {
    opacity: 0;
    transform: scale(0.92);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.brand-line::after {
  content: "";
  display: block;
  height: 2px;
  width: 60px;
  background: #8f00ff;
  margin: 10px auto 0;
}
