.hospital-section {
    padding: 60px 0;
}

.section-header {
    margin-bottom: 30px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 300;
    color: #1a5276;
    margin-bottom: 15px;
}

.section-title strong {
    font-weight: 700;
}

.intro-text {
    font-size: 1.1rem; 
    color: #555;
    line-height: 1.7;
}

.divider {
    height: 2px;
    background: linear-gradient(to right, transparent, #3498db, transparent);
    margin: 40px auto;
    max-width: 100px;
}

.doctor-slider-container {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
   
    height: 400px;
}

.doctor-slider-inner {
    display: flex;
    transition: transform 0.5s ease;
    height: 100%;
}

.doctor-slide {
   width: 100%;
    display: none;
    background-color: white;
    height: 100%;
  
}

.doctor-slide.active {
    display: flex;
    align-items: center;
}

.doctor-image {
    border-radius: 10px;
    overflow: hidden;
    margin: 0 auto;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    
}

.doctor-image img {
    width: 100%;
    height: 400px;
     border: 1px solid black;
     border-radius: 16px;
}

.slider-indicators {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 10px;
}

.slider-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.slider-indicator.active {
    background-color: #3498db;
}

.content-side {
    padding-right: 40px;
}

.slider-side {
    padding-left: 40px;
}

@media (max-width: 991px) {
    .content-side,
    .slider-side {
        padding: 0 15px;
    }

    .content-side {
        margin-bottom: 40px;
    }
}











    .hospital-video-section {
            padding: 60px 0;
            background-color: #f8f9fa;
        }
        
        .content-side {
            padding-right: 40px;
        }
        
        .video-side {
            padding-left: 40px;
        }
        
        .section-heading {
            font-size: 2.2rem;
            font-weight: 600;
            color: #1a5276;
            margin-bottom: 20px;
        }
        
        .section-subtitle {
            font-size: 1.2rem;
            color: #3498db;
            margin-bottom: 30px;
            font-weight: 500;
        }
        
        .content-text {
            font-size: 1.1rem;
            color: #555;
            line-height: 1.7;
            margin-bottom: 25px;
        }
        
        .feature-list {
            list-style: none;
            padding: 0;
            margin: 30px 0;
        }
        
        .feature-list li {
            padding: 10px 0;
            border-bottom: 1px solid #eee;
            display: flex;
            align-items: center;
        }
        
        .feature-list li:before {
            content: "✓";
            color: #2ecc71;
            font-weight: bold;
            margin-right: 10px;
            font-size: 1.2rem;
        }
        
        .video-container {
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .video-thumbnail {
            position: relative;
            cursor: pointer;
            border-radius: 10px;
            overflow: hidden;
        }
        
        .video-thumbnail img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.3s ease;
        }
        
        .video-thumbnail:hover img {
            transform: scale(1.03);
        }
        
        .play-button {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background-color: red;
            color: white;
            padding: 12px 25px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .play-button:hover {
            background-color: rgba(41, 128, 185, 1);
            transform: translate(-50%, -50%) scale(1.05);
        }
        
        .play-button:before {
            content: "▶";
            margin-right: 8px;
            font-size: 0.9rem;
        }
        
        .ratio {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        @media (max-width: 991px) {
            .content-side, .video-side {
                padding: 0 15px;
            }
            
            .content-side {
                margin-bottom: 40px;
            }
            
            .section-heading {
                font-size: 1.8rem;
            }
        }