/* PLEASE NOTE: THESE TAILWIND IMPORTS SHOULD NEVER BE DELETED */
@import 'tailwindcss/base';
@import 'tailwindcss/components';
@import 'tailwindcss/utilities';
/* DO NOT DELETE THESE TAILWIND IMPORTS, OTHERWISE THE STYLING WILL NOT RENDER AT ALL */
/* Google Fonts moved to non-blocking <link> tags in index.html to reduce render blocking */

/* Import nprogress styles for global loading bar */
@import './nprogress.css';
body {
  margin: 0;
  padding: 0;
  font-family: 'Manrope', sans-serif;
  font-weight: 300;
  letter-spacing: 0.025em;
  background-color: #041626;
  color: white;
}
html, body, #root {
  height: 100%;
  width: 100%;
}
.tracking-wider {
  letter-spacing: 0.075em;
}
.tracking-widest {
  letter-spacing: 0.125em;
}
.section-padding {
  padding: 4rem 2rem;
}
@media (min-width: 768px) {
  .section-padding {
    padding: 5rem 4rem;
  }
}
@media (min-width: 1280px) {
  .section-padding {
    padding: 6rem 6rem;
  }
}
.gradient-text {
  background: linear-gradient(90deg, #0D8BFF 0%, #5CF5FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

/* ========================================
   STANDARDIZED TYPOGRAPHY UTILITY CLASSES
   ======================================== */

/* Section Typography */
.typography-hero-title {
  font-size: 30px;
  font-family: 'Manrope', sans-serif;
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 1.2;
  color: white;
}

@media (min-width: 768px) {
  .typography-hero-title {
    font-size: 40px;
  }
}

.typography-section-title {
  font-size: 30px;
  font-family: 'Manrope', sans-serif;
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 1.2;
  color: white;
}

@media (min-width: 768px) {
  .typography-section-title {
    font-size: 40px;
  }
}

.typography-subsection-title {
  font-size: 1.875rem; /* 30px */
  font-family: 'Manrope', sans-serif;
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 1.2;
  color: white;
}

@media (min-width: 768px) {
  .typography-subsection-title {
    font-size: 2.25rem; /* 36px */
  }
}

/* Body Typography */
.typography-body-large {
  font-size: 14px;
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

@media (min-width: 768px) {
  .typography-body-large {
    font-size: 17px;
  }
}

.typography-body-default {
  font-size: 14px;
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

@media (min-width: 768px) {
  .typography-body-default {
    font-size: 16px;
  }
}

.typography-body-muted {
  font-size: 13px;
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

@media (min-width: 768px) {
  .typography-body-muted {
    font-size: 14px;
  }
}

/* Card/Component Typography */
.typography-card-title {
  font-size: 18px;
  font-family: 'Manrope', sans-serif;
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 1.3;
  color: white;
}

@media (min-width: 768px) {
  .typography-card-title {
    font-size: 20px;
  }
}

.typography-card-description {
  font-size: 14px;
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

@media (min-width: 768px) {
  .typography-card-description {
    font-size: 16px;
  }
}
.btn-primary {
  background: #1e8bff;
  color: white;
  padding: 16px;
  border-radius: 0.25rem;
  font-family: 'Inter', sans-serif;
  font-size: 15.75px;
  font-weight: 300;
  letter-spacing: 0.5625px;
  text-transform: uppercase;
  line-height: 23.625px;
  justify-content: center;
  min-width: 260px;
  transition: all 0.3s ease;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(30, 139, 255, 0.3);
  background: #3396ff;
}

.btn-secondary {
  background: transparent;
  color: white;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 0.25rem;
  font-family: 'Inter', sans-serif;
  font-size: 15.75px;
  font-weight: 300;
  letter-spacing: 0.5625px;
  text-transform: uppercase;
  line-height: 23.625px;
  justify-content: center;
  min-width: 260px;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

/* Removed global button styling to avoid affecting navigation and other text elements */
.hero-video-overlay {
  background: rgba(4, 22, 38, 0.5);
}

/* Futuristic 3D grid background for hero */
.hero-grid {
  position: absolute;
  inset: 0;
  overflow: hidden;
  isolation: isolate;
}
.hero-grid__plane {
  position: absolute;
  left: -50%;
  right: -50%;
  bottom: -20%;
  height: 140%;
  background:
    repeating-linear-gradient(transparent 0 28px, rgba(92, 245, 255, 0.12) 29px),
    repeating-linear-gradient(90deg, transparent 0 28px, rgba(92, 245, 255, 0.12) 29px);
  transform: perspective(900px) rotateX(60deg) translate3d(0,0,0);
  animation: heroGridDrift 28s linear infinite;
  opacity: 0.25;
  will-change: transform;
  backface-visibility: hidden;
  contain: paint;
}
@keyframes heroGridDrift {
  to { transform: perspective(900px) rotateX(60deg) translate3d(0,-80px,0); }
}

/* Soft neon orbs for depth */
.hero-orb {
  position: absolute;
  width: 32rem;
  height: 32rem;
  left: -10rem;
  top: -8rem;
  background: radial-gradient(circle at 30% 30%, rgba(92,245,255,0.22), rgba(82,37,255,0.12), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
  will-change: transform, opacity;
}
.hero-orb--right {
  left: auto;
  right: -12rem;
  top: auto;
  bottom: -10rem;
  background: radial-gradient(circle at 70% 70%, rgba(82,37,255,0.22), rgba(92,245,255,0.12), transparent 70%);
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .hero-grid__plane { animation: none; }
}

/* Client logos styles */
.client-logo {
  filter: brightness(0) invert(1);
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.client-logo:hover {
  opacity: 1;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-fadeIn {
  animation: fadeIn 0.3s ease-out forwards;
}

/* Infinite scrolling logo marquee */
.logo-marquee {
  position: relative;
  overflow: hidden;
}
.logo-marquee::before,
.logo-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  pointer-events: none;
  z-index: 2;
}
.logo-marquee::before {
  left: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.9), rgba(0,0,0,0));
}
.logo-marquee::after {
  right: 0;
  background: linear-gradient(to left, rgba(0,0,0,0.9), rgba(0,0,0,0));
}
@media (min-width: 768px) {
  .logo-marquee::before {
    background: linear-gradient(to right, rgba(4,22,38,0.9), rgba(4,22,38,0));
  }
  .logo-marquee::after {
    background: linear-gradient(to left, rgba(4,22,38,0.9), rgba(4,22,38,0));
  }
}
.logo-marquee__track {
  display: flex;
  overflow: hidden;
  user-select: none;
}
.logo-marquee__group {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 4rem;
  padding-inline: 2rem;
  animation: logoMarquee 70s linear infinite;
  will-change: transform;
}
@keyframes logoMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}

@media (min-width: 1024px) {
  .logo-marquee__group { animation-duration: 90s; }
}

@media (prefers-reduced-motion: reduce) {
  .logo-marquee__group { animation: none; }
}

/* Custom Swiper Pagination Styles */
.testimonial-pagination {
  position: absolute;
  bottom: -40px; /* Position below the slider */
  left: 50%;
  transform: translateX(-50%);
  width: auto !important;
  display: flex;
  gap: 8px;
}

.testimonial-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: rgba(255, 255, 255, 0.3);
  opacity: 1;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.testimonial-pagination .swiper-pagination-bullet-active {
  background-color: #5CF5FF; /* primary-line2 color */
  transform: scale(1.2);
}

/* ==== Global Bunny.net iframe object-cover simulation ==== */
.hide-scrollbar {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}
.hide-scrollbar::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}
.hide-scrollbar::-webkit-scrollbar-thumb {
  background: transparent;
}
.hide-scrollbar::-webkit-scrollbar-track {
  background: transparent;
}

.video-cover-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.video-cover-iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177.78%; /* 100 / (9/16) */
  height: 100%;
  transform: translate(-50%, -50%);
  border: none;
}
@media (min-aspect-ratio: 16/9) {
  .video-cover-iframe {
    width: 100%;
    height: 177.78%;
  }
}



