@import "tailwindcss";

:root {
  --background: #ffffff;
  --foreground: #171717;
  --font-dm-sans: 'DM Sans', sans-serif;
  --font-dm-mono: 'DM Mono', monospace;
}


@theme inline {
  --color-background: var(--background);
  --color-foreground: var(--foreground);
  --font-sans: var(--font-geist-sans);
  --font-mono: var(--font-geist-mono);
}

@media (prefers-color-scheme: dark) {
  :root {
    --background: #FFFFFF;
    --foreground: #ededed;
  }
}
html {
  scroll-behavior: smooth;
}

body {
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-dm-sans);
}
body.page-services-sports-sponsorship-management, body.page-services-branding-advertising {
  background: #f3f3f3;
}
.font-mono {
  font-family: var(--font-dm-mono);
}

.container {
    max-width: 1360px;
}

.prose p {
    margin-bottom: 10px;
}
.prose ul li {
    margin-bottom: 10px;
    list-style: disc;
    margin-left: 30px;
}
.prose ol li{
  margin-bottom: 10px;
  list-style: decimal;
  margin-left: 30px;
}
.prose ol li ol li {
    list-style: lower-alpha;
}
.prose ol li ol li ul li {
    list-style: disc;
    margin-bottom: 0px;
}
.prose h2{
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 10px;
  color: #202020;
}
.prose h3{
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 10px;
}
.prose table{
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
}
.prose .table-dark th, .prose .table-dark td {
    padding: 5px;
}
.prose.prose-lg a {
    color: #202020;
    text-decoration: underline;
}
@keyframes scrollUp {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}

@keyframes scrollDown {
  0% {
    transform: translateY(-50%);
  }
  100% {
    transform: translateY(0);
  }
}

.animate-scroll-up {
  animation: scrollUp 10s linear infinite;
}
.animate-scroll-up:hover {
  animation: scrollUp 10s linear infinite paused;
  cursor: pointer;
}

.animate-scroll-down {
  animation: scrollDown 10s linear infinite;
}
.animate-scroll-down:hover {
  animation: scrollDown 10s linear infinite paused;
  cursor: pointer;
}


@keyframes electricFlow {
  0% {
    stroke-dashoffset: 0;
    opacity: 0.4;
  }
  50% {
    opacity: 1;
  }
  100% {
    stroke-dashoffset: -120;
    opacity: 0.4;
  }
}

.electric-line {
  animation: electricFlow 2s linear infinite;
  filter: drop-shadow(0 0 6px rgba(255,255,255,0.8));
}

.delay-1 {
  animation-delay: 0.6s;
}

@keyframes electricFlicker {
  0%, 100% { opacity: 0.3; }
  40% { opacity: 1; }
  60% { opacity: 0.6; }
}

.electric-line {
  animation:
    electricFlow 2s linear infinite,
    electricFlicker 0.2s infinite;
}


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

.showcase-track {
  animation: showcaseScroll 10s linear infinite;
  will-change: transform;
}


/* Optional: pause on hover */
.showcase-track:hover {
  animation-play-state: paused;
}

.perspective-\[1200px\] {
  perspective: 1200px;
}


@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.animate-spin-slow {
  animation: spinSlow 18s linear infinite;
}
@keyframes spinReverseSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(-360deg); }
}
.animate-spin-reverse-slow {
  animation: spinReverseSlow 18s linear infinite;
} 

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

.marquee {
  display: flex;
  width: max-content;
  animation: marquee 25s linear infinite;
}

.marquee:hover {
  animation-play-state: paused;
}
.scrollbar-hide::-webkit-scrollbar {
  display: none;
}
.scrollbar-hide {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
} 

.swiper-slide {
  height: auto;
  display: flex;
}
button:focus-visible {
  outline: 2px solid #000;
  outline-offset: 4px;
}

.service-icon svg {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}


/* whatsapp button*/
.whatsapp-sticky-btn {
    position: fixed;
    bottom: 10px;
    right: 20px;
    background-color: #25D366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
    font-size: 16px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    z-index: 1050;
}
@media (max-width: 640px) {
  .steps-title br {
      display: none;
  }
  .process-steps-text br {
      display: none;
  }
}


.solutions-text h3{
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 10px;
  font-weight: 500;
  color: #202020;
  font-family: var(--font-dm-mono);
}

.rmp-wp-plugin, .rmp-results-widget {
    display: none;
}

@keyframes arrowUp {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(-8px);
    opacity: 1;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.animate-arrow-up {
  animation: arrowUp 2s ease-in-out infinite;
}


.lw-close{
  color: #000;
}