html, body, p, h1, h2, h3, h4, h5, h6, span, div, a, li, button, input, textarea, select {
  font-family: 'Inder', sans-serif !important;
}

html.has-scroll-smooth {
  overflow: hidden;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

html.has-scroll-dragging {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.has-scroll-smooth body {
  overflow: hidden;
}

.has-scroll-smooth [data-scroll-container] {
  min-height: 100vh;
}

[data-scroll-direction="horizontal"] [data-scroll-container] {
  height: 100vh;
  display: inline-block;
  white-space: nowrap;
}

[data-scroll-direction="horizontal"] [data-scroll-section] {
  display: inline-block;
  vertical-align: top;
  white-space: nowrap;
  height: 100%;
}

.c-scrollbar {
  position: absolute;
  right: 0;
  top: 0;
  width: 11px;
  height: 100%;
  transform-origin: center right;
  transition: transform 0.3s, opacity 0.3s;
  opacity: 0;
}

.c-scrollbar:hover {
  transform: scaleX(1.45);
}

.c-scrollbar:hover,
.has-scroll-scrolling .c-scrollbar,
.has-scroll-dragging .c-scrollbar {
  opacity: 1;
}

.c-scrollbar_thumb {
  position: absolute;
  top: 0;
  right: 0;
  /* Luxury UI Solid Color */
  background: #FF4C01;
  opacity: 0.6;
  width: 7px;
  border-radius: 10px;
  margin: 2px;
  cursor: -webkit-grab;
  cursor: grab;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: opacity 0.3s ease, width 0.3s ease, background 0.3s ease;
}

.has-scroll-dragging .c-scrollbar_thumb {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

/* Preloader Styles */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #25225E;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  transition: opacity 0.5s ease-out;
}

#preloader.loaded {
  opacity: 0;
  pointer-events: none;
}

/* Logo Slider */
.logo-slider {
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: 80px;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.logo-slide-track {
  display: flex;
  gap: 80px;
  animation: scroll 30s linear infinite;
  min-width: 200%;
}

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

.logo-slide-track img {
  height: 120px;
  width: auto;
  filter: grayscale(1) opacity(0.5);
  transition: all 0.3s ease;
}

.logo-slide-track img:hover {
  filter: grayscale(0) opacity(1);
}

/* Cinematic UI Tokens */
.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.3);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
}

.glass-nav {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.mesh-gradient-bg {
  background-color: #f8fafb;
  background-image: 
    radial-gradient(at 0% 0%, rgba(37, 34, 94, 0.05) 0px, transparent 50%),
    radial-gradient(at 100% 0%, rgba(255, 76, 1, 0.05) 0px, transparent 50%),
    radial-gradient(at 100% 100%, rgba(37, 34, 94, 0.05) 0px, transparent 50%),
    radial-gradient(at 0% 100%, rgba(255, 76, 1, 0.05) 0px, transparent 50%);
}

/* Entrance Animations */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-on-scroll.active {
  opacity: 1;
  transform: translateY(0);
}

/* Luxury Form Inputs */
.luxury-input {
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(37, 34, 94, 0.1);
  transition: all 0.3s ease;
}

.luxury-input:focus {
  background: rgba(255, 255, 255, 1.0);
  border-color: #FF4C01;
  box-shadow: 0 0 0 4px rgba(255, 76, 1, 0.1);
}

/* Custom Cursor Animation (click!!) */
#custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 80px;
  height: 80px;
  background-color: #FF4C01;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 10000;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0);
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 0 20px rgba(255, 76, 1, 0.4);
}

#custom-cursor.active {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

#custom-cursor span {
  color: white;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
}

@media (max-width: 1024px) {
  #custom-cursor {
    display: none !important;
  }
}


