#home-slider .slider-aspect {
    width: 100%;
    position: relative;
    height: 0;
    padding-bottom: 35%; /* fallback for aspect-ratio: 10/3.5 */
    overflow: hidden;
}

@supports (aspect-ratio: 10/3.5) {
  #home-slider .slider-aspect {
    aspect-ratio: 10/3.5;
    height: auto;
    padding-bottom: 0;
  }
}
/* Custom styles */
:where([class^="ri-"])::before { content: "\f3c2"; }
body {
    font-family: 'Hind Siliguri', sans-serif;
}

/* Top Info Bar */
.top-info-bar {
    background: rgba(255, 255, 255, 0.95);
    padding: 0.5rem 0;
    position: relative;
    z-index: 20;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

/* ...rest of the existing CSS... */

.hero-bg {
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.2)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
}
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}
.course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.course-card h3 {
    font-size: 1.1rem;
    line-height: 1.4;
}
input:focus, textarea:focus {
    outline: none;
    border-color: #3b82f6;
}
.tab-active {
    color: #3b82f6;
    border-bottom: 2px solid #3b82f6;
}
.gallery-item {
    transition: all 0.3s ease;
}
.gallery-item:hover {
    transform: scale(1.02);
}
.custom-checkbox {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #3b82f6;
    border-radius: 4px;
    outline: none;
    cursor: pointer;
    position: relative;
}
.custom-checkbox:checked {
    background-color: #3b82f6;
}
.custom-checkbox:checked::after {
    content: '✓';
    position: absolute;
    color: white;
    font-size: 14px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Slider Styles */
#home-slider {
    width: 100%;
    background: #f3f4f6; /* Light gray background */
    overflow: hidden;
}


#home-slider .container {
    overflow: hidden;
}

.swiper-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.swiper-slide {
    position: relative;
    width: 100%;
    height: 100%;
    /* Remove any transform or scale if present */
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-button-next,
.swiper-button-prev {
    color: white;
    background-color: rgba(0, 0, 0, 0.3);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: rgba(0, 0, 0, 0.5);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 20px;
}

.swiper-pagination-bullet {
    background: white;
    opacity: 0.8;
}

.swiper-pagination-bullet-active {
    background: #3b82f6;
    opacity: 1;
}

/* Ensure header is above slider if it's fixed and slider is not part of header */
header.fixed {
    z-index: 50; /* Ensure this is higher than slider if slider is not in header */
}

/* Adjustments for top info bar if it's meant to be above the slider */
.top-info-bar {
    position: relative; /* Or absolute/fixed depending on desired behavior */
    z-index: 40; /* Ensure this is also managed if it overlaps or is above slider */
}

/* Tab styling */
.tab-active {
    background-color: #10B981; /* Tailwind's green-500, adjust as needed */
    color: white;
}
