:root,
/* [data-bs-theme=light] {
  --falcon-primary:  #4D7780;
  --falcon-primary-rgb: 77, 119, 128;

  --falcon-info: #D9F3F8;
  --falcon-info-rgb: 217, 243, 248;


}
[data-bs-theme=dark]{
  --falcon-primary:  #4D7780;
  --falcon-primary-rgb: 77, 119, 128;

  --falcon-info: #D9F3F8;
  --falcon-info-rgb: 217, 243, 248;
} */

body {
    overflow-x: hidden;
}

.hero-swiper-container {
    overflow: visible !important;
    padding: 0;
}

.hero-swiper-container .swiper {
    overflow: visible !important;
}

.hero-swiper-container .swiper-slide {
    width: 1430px !important;
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.hero-swiper-container .swiper-slide-active {
    opacity: 1 !important;
}

.hero-swiper-container .swiper-slide-next,
.hero-swiper-container .swiper-slide-prev {
    opacity: 0.6 !important;
}

/* Responsive widths */
@media (max-width: 1540px) {
    .hero-swiper-container .swiper-slide {
        width: 1100px !important;
    }
}

@media (max-width: 1200px) {
    .hero-swiper-container .swiper-slide {
        width: 920px !important;
    }
}

@media (max-width: 767px) {
    .hero-swiper-container .swiper-slide {
        width: 540px !important;
    }
}

@media (max-width: 575px) {
    .hero-swiper-container .swiper-slide {
        width: 100% !important;
    }
}

/* ============================================
   Course Sidebar Styles
   ============================================ */

/* Hover effect for content items */
.hover-bg-light:hover {
    background-color: #f8f9fa !important;
    transition: background-color 0.2s ease;
}

/* Active content item styling */
.active-content {
    position: relative;
}

.active-content::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background-color: #fff;
}

/* Custom scrollbar for sidebar */
.sticky-top::-webkit-scrollbar {
    width: 8px;
}

.sticky-top::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.sticky-top::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

.sticky-top::-webkit-scrollbar-thumb:hover {
    background: #555;
}