/* Smooth scrolling for the whole page */
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

/* Custom scrollbar for webkit (Vertical) */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #101922;
}
::-webkit-scrollbar-thumb {
  background: #324d67;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #137fec;
}

/* Custom Scrollbar for horizontal scrolling containers (Partners) */
.custom-scrollbar::-webkit-scrollbar {
  height: 6px;
}
.custom-scrollbar::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
  background: rgba(19, 127, 236, 0.3);
  border-radius: 4px;
}
.custom-scrollbar::-webkit-scrollbar-thumb:hover {
  background: rgba(19, 127, 236, 0.6);
}

/* Custom scroll animation */
@keyframes bounce-slow {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.5;
  }
  50% {
    transform: translateY(10px);
    opacity: 1;
  }
}
.animate-bounce-slow {
  animation: bounce-slow 2s infinite;
}

/* Glass panel effect */
.glass-panel {
  background: rgba(25, 38, 51, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Responsive video container (16:9 aspect ratio) */
.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  overflow: hidden;
  background: #000;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
