/* Typography */

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
}

/* Video Background Container */
.video-bg-wrapper {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

/* Fullscreen Video Styling */
.video-bg-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Dark Overlay */
.video-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

/* Hero Content Layer */
.hero-content {
    position: relative;
    z-index: 3;
}

/* Fade-in Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 1s ease-out forwards;
}

/* Delay Classes */
.delay-200 {
    animation-delay: 0.2s;
}

.delay-500 {
    animation-delay: 0.5s;
}

.delay-700 {
    animation-delay: 0.7s;
}
.workspaceSwiper {
    margin: 0 !important;
    padding: 0 !important;
}

.workspaceSwiper .swiper-slide {
    width: 100% !important;
}

.swiper-button-next,
.swiper-button-prev {
  background-color: #CCC0A3;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  color: #0f1b28;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 16px;
}

@media (min-width: 768px) {
  .swiper-button-next,
  .swiper-button-prev {
    width: 36px;
    height: 36px;
  }
}