html{
  font-family: "Urbanist", sans-serif;
  font-weight: 400;
}
body{
  font-family: "Urbanist", sans-serif;
  font-weight: 400;
}

/* video section related  */

/* =========================
   SWIPER VIDEO SECTION
========================= */

.video-section .videoSwiper {
  position: relative;
  /* padding-bottom: 100px; */
}

/* =========================
   VIDEO BOX (16:9)
========================= */

.video-section .video-box {
  position: relative;
  padding-top: 56.25%;
  cursor: pointer;
}

.video-section .video-box img,
.video-section .video-box iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
  border: 0;
}

/* =========================
   PLAY BUTTON
========================= */

.video-section .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  
  width: 60px;
  height: 60px;
  border-radius: 50%;

  background: rgba(0, 0, 0, 0.6);
  color: #fff;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 26px;
  transition: 0.3s ease;
}

.video-section .play-btn:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: translate(-50%, -50%) scale(1.1);
}

/* =========================
   NAVIGATION CONTAINER
========================= */

.video-section .video-nav {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 40px;
}

/* =========================
   REMOVE DEFAULT SWIPER ICONS
========================= */

.video-section .swiper-button-prev::after,
.video-section .swiper-button-next::after {
  display: none;
}

/* =========================
   CUSTOM IMAGE ARROWS
========================= */

.video-section .custom-arrow {
  position: static !important;
  width: auto;
  height: auto;
  cursor: pointer;
}

/* Arrow images */
.video-section .custom-arrow img {
  width: 30px; /* adjust as needed */
  height: auto;
  display: block;
  transition: all 0.3s ease;
}

/* Hover effect */
.video-section .custom-arrow img:hover {
  transform: scale(1.1);
  opacity: 0.8;
}

/* =========================
   MOBILE OPTIMIZATION
========================= */

@media (max-width: 768px) {



  .video-section .video-nav {
    gap: 30px;
    bottom: 10px;
  }

  .video-section .custom-arrow img {
    width: 40px; /* slightly smaller on mobile */
  }

  .video-section .play-btn {
    width: 30px;
    height: 30px;
    font-size: 20px;
  }
}