/* -------------------- Header & Footer -------------------- */

body { 
  padding-top: 0px;
}

/* -------------------- Navbar -------------------- */

.navbar {
  background: transparent;
  transition: background 0.4s ease-in-out;
}

.navbar .container-contrain {
  background-color: transparent; 
}

.navbar .navbar-brand, 
.navbar .nav-link, 
.navbar .nav-icon path{
  color: white !important;
  transition: color 0.4s ease-in-out;
}

.bar1, 
.bar2, 
.bar3 { 
  background-color: white !important; 
}

.navbar-background {
  display: block;
  height: 250px; /* Adjust as needed */
}

/* -------------------- Navbar Scrolled -------------------- */

.navbar.scrolled {
  background: white;
  /*background: rgba(255, 255, 255, 0.95); /* Slight transparency */
  /*box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);  Soft shadow */
}

.navbar.scrolled .navbar-brand, 
.navbar.scrolled .nav-link, 
.navbar.scrolled .nav-icon path{
  color: black !important;
}

.navbar.scrolled .bar1, 
.navbar.scrolled .bar2, 
.navbar.scrolled .bar3 { 
  background-color: black !important; 
}

@media (max-width: 992px) {
  .navbar.scrolled .container-contrain {
    background: white;
  }
}

/* -------------------- Swiper -------------------- */

.swiper {
  width: 100%;
  height: 50vh;
  z-index: 1
}

.swiper-slide {
  background: #ffffff; /* hides everything behind */
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Style the Swiper navigation buttons */
.swiper-button-prev, 
.swiper-button-next {
    color: white !important; /* Makes the arrows white */
    filter: drop-shadow(0 0 8px rgba(0, 0, 0, 1)); /* Soft glow effect */
}

/* Hover effect to enhance visibility */
.swiper-button-prev:hover, 
.swiper-button-next:hover {
  filter: drop-shadow(0 0 8px rgba(0, 0, 0, 1)); /* Soft glow effect */
    transform: scale(1.1); /* Slightly enlarges the arrows on hover */
}

.swiper-pagination-bullet {
  background: white !important; /* Makes bullets white */
  filter: drop-shadow(0 0 6px rgba(0, 0, 0, 1)); /* Soft glow effect */
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: #337ab7 !important;
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 1)); /* Stronger glow */
}