.raw-banner-slider {
    position: relative;
    overflow: hidden;
}

.navbar {
    padding: 8px 0px 10px;
}

.raw-banner-slider .single-banner-slide {
    display: none;
    width: 100%;
    height: 90vh;
    max-height: 1000px;
    min-height: 310px;
}



.raw-banner-slider .single-banner-slide.active {
    display: flex;
}

/* Fade effect like Owl */
.raw-banner-slider .single-banner-slide {
    animation: bannerFade 0.8s ease-in-out;
}

/* Carousel Styles with Active/Inactive Navigation */

.services-section {
    max-width: 1400px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 8px;
}

.section-header {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.header-content {
    flex: 1;
    min-width: 300px;
}

.header-label {
    color: #0099cc;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.header-title {
    font-size: 36px;
    font-weight: bold;
    color: #003d7a;
    margin-bottom: 20px;
    line-height: 1.2;
}

.header-description {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
}

/* Link styling */


/* Responsive */
@media (max-width: 768px) {
    .patient-vid i {
        font-size: 40px;
        width: 60px;
        height: 60px;
        line-height: 60px;
    }
}

@media (max-width: 480px) {
    .patient-vid i {
        font-size: 30px;
        width: 50px;
        height: 50px;
        line-height: 50px;
    }

    .item:hover {
        transform: translateY(-3px);
    }
}

/* Fancybox customization */
.fancybox__container {
    background: rgba(0, 0, 0, 0.95);
}

.fancybox__content {
    max-width: 900px;
}

/* For grid layout */
.items-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    padding: 20px;
}

@media (max-width: 768px) {
    .items-container {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
        padding: 15px;
    }
}



@keyframes bannerFade {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Arrows */
.banner-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9;
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-prev {
    left: 20px;
}

.banner-next {
    right: 20px;
}

.banner-arrow:hover {
    background: rgba(0, 0, 0, 0.75);
}

/* Dots */
.banner-dots {
    position: absolute;
    left: 50%;
    bottom: 25px;
    transform: translateX(-50%);
    z-index: 9;
    display: flex;
    gap: 15px;
}

.banner-dots button {
    width: 12px;
    height: 12px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    padding: 0;
}

.banner-dots button.active {
    background: #a9cf44;
}

.carousel-wrap {
    position: relative;
}

/* Mobile */
@media only screen and (max-width: 767px) {
    .banner-arrow {
        width: 35px;
        height: 35px;
    }

    .banner-prev {
        left: 10px;
    }

    .banner-next {
        right: 10px;
    }

    .banner-dots {
        bottom: 15px;
    }
}