/* Netflix Style Carousel Zoom */
.sow-carousel-item {
    transition: transform 0.4s ease-in-out, z-index 0.4s !important;
    position: relative;
    z-index: 1;
}

.sow-carousel-item:hover {
    transform: scale(1.12) !important;
    z-index: 10 !important;
    box-shadow: 0px 10px 25px rgba(0,0,0,0.5) !important;
}

/* Allow zoomed items to overflow the edges safely */
.sow-carousel-wrapper, .sow-carousel-items {
    overflow: visible !important;
}
/* Hide text titles below carousel images */
.sow-carousel-item h3, 
.sow-carousel-item h3 a {
    display: none !important;
}

/* Smooth header navigation links */
.main-navigation ul li a {
    font-size: 16px !important;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

/* Add a smooth fade effect when hovering over header links */
.main-navigation ul li a:hover {
    opacity: 0.8;
}
.marquee-container {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  background: #0044ff; /* Matches your blue background color */
  padding: 10px 0;
}