﻿/* Custom Utilities - Loaded directly */
html {
  overflow-y: scroll;
}

/* Glass Card Effect - Light */
/* Glass Card Effect - Light (Updated from hhh.html) */
.glass-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.no-scrollbar::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.no-scrollbar {
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}

.mask-gradient {
  mask-image: linear-gradient(to left, transparent, black 16px);
  -webkit-mask-image: linear-gradient(to left, transparent, black 16px);
}

.direction-ltr {
  direction: ltr;
}

/* Page Load Transition */
#swup {
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  opacity: 1;
  transform: translateY(0);
}

/* State: Leaving/Loading */
html.is-changing #swup {
  opacity: 0;
  transform: translateY(10px);
}

/* Infinite Marquee Animation */
@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

.animate-marquee {
  animation: marquee 30s linear infinite;
  display: flex;
  /* Ensure it's flex for accurate width calculation */
}

/* Partners Section Override */
section.partners {
  background-color: #F7F8FA !important;
}

/* Internal Hero Override - Force Light Theme */
.hero--internal {
  background-color: #F7F8FA !important;
  color: #1e293b !important;
  /* slate-800 */
  position: relative;
  /* Balance top/bottom spacing (Accounting for fixed header) */
  padding-top: 100px !important;
  padding-bottom: 24px !important;
}

/* Stylish Separator Line */
.hero--internal::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 5%, #e2e8f0 50%, transparent 95%);
}

.hero--internal .hero-title {
  color: #0f172a !important;
  /* slate-900 */
}

.hero--internal .hero-description {
  color: #64748b !important;
  /* slate-500 */
}

.hero--internal #breadcrumb-container {
  color: #64748b !important;
}

.hero--internal #breadcrumb-container .active {
  color: #0f172a !important;
}