    :root {
    --primary-color: #0052a3;
    --secondary-color: #00a859;
    --accent-color: #ff6b35;
    --fortis-red: #d32f2f;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
}

/* Hero/Banner Section */
.hero-section {
    background: linear-gradient(135deg, #0052a3 0%, #00a859 100%);
    color: white;
    padding: 60px 0 40px;
    min-height: auto;
}

.hero-content h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 30px;
    line-height: 1.2;
}

.hero-stats {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0;
    background: transparent;
    border-radius: 0;
    backdrop-filter: none;
}

.stat-bullet {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    flex-shrink: 0;
}

.stat-content {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.stat-item h3 {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
}

.stat-item p {
    margin: 0;
    font-size: 1rem;
    opacity: 0.95;
}

.hero-image-box {
    background: rgba(255, 255, 255, 0.1);
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 0;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    min-height: 400px;
    overflow: hidden;
}

.hero-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 17px;
}

/* Elegant Stat Cards Hover Effect */
.elegant-stat-card {
    transition: all 0.3s ease;
}

.elegant-stat-card:hover {
    transform: translateX(10px);
    background: rgba(255,255,255,0.12) !important;
}

/* Key Points Bar */
.keypoints-bar {
    background: white;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    padding: 20px 0;
    margin-top: -30px;
    position: relative;
    z-index: 10;
    border-radius: 15px;
}

.keypoint-item {
    text-align: center;
    padding: 0 20px;
    border-right: 2px solid #e0e0e0;
}

.keypoint-item:last-child {
    border-right: none;
}

.keypoint-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.keypoint-item h5 {
    font-weight: 700;
    color: #333;
    margin: 0;
    font-size: 1.1rem;
}

/* Why Fortis Section */
.why-fortis-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 40px;
    color: #333;
}

.benefit-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    margin-bottom: 20px;
    transition: all 0.3s ease;
    height: 100%;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.benefit-card i {
    font-size: 3.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.benefit-card h4 {
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.benefit-card p {
    color: #666;
    margin: 0;
}

/* Specialties Section */
.specialties-section {
    padding: 60px 0;
    background: white;
}

.specialty-card {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 20px;
    overflow: hidden;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    margin-bottom: 30px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.specialty-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,82,163,0.15);
}

.specialty-img-wrapper {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.specialty-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.specialty-card-content {
    padding: 20px 15px;
}

.specialty-card-content h4 {
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
    font-size: 1.2rem;
}

.specialty-card-content p {
    color: #666;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.specialty-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-direction: column;
}

/* Doctors Section */
.doctors-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.doctor-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    margin-bottom: 30px;
    position: relative;
}

.doctor-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.2);
}

.doctor-card-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 30px 20px 60px;
    text-align: center;
    position: relative;
}

.doctor-card-header::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 40px;
    background: white;
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

.doctor-image-wrapper {
    position: relative;
    z-index: 2;
    margin: 0 auto;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 4px solid white;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    background: white;
}

.doctor-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.doctor-specialty-badge {
    background: white;
    color: #667eea;
    padding: 6px 15px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.75rem;
    display: inline-block;
    margin-top: 12px;
    position: relative;
    z-index: 2;
    box-shadow: 0 3px 12px rgba(0,0,0,0.1);
}

.doctor-card-body {
    padding: 10px 15px 25px;
    text-align: center;
}

.doctor-name {
    font-size: 1.3rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 8px;
}

.doctor-qualifications {
    color: #7f8c8d;
    font-size: 0.85rem;
    margin-bottom: 6px;
    line-height: 1.4;
}

.doctor-experience {
    color: #3498db;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.doctor-rating-stars {
    margin-bottom: 15px;
}

.doctor-rating-stars i {
    color: #f39c12;
    font-size: 1.1rem;
    margin: 0 2px;
}

.doctor-actions {
    display: flex;
    gap: 10px;
    flex-direction: column;
}

.btn-doctor-consult {
    background: var(--primary-color);
    color: white !important;
    border: none;
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
}

.btn-doctor-consult:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,82,163,0.4);
    background: #003d7a;
}

.btn-doctor-whatsapp {
    background: #25d366;
    color: white !important;
    border: none;
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
}

.btn-doctor-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37,211,102,0.4);
    background: #1ea952;
}

/* Appointment Modal */
.appointment-modal .modal-content {
    border-radius: 20px;
    border: none;
}

.appointment-modal .modal-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 20px 20px 0 0;
    padding: 5px 30px;
}

.appointment-modal .modal-title {
    font-weight: 800;
    font-size: 1.8rem;
}

.appointment-modal .btn-close {
    filter: brightness(0) invert(1);
}

.appointment-modal .modal-body {
    padding: 35px;
}

.appointment-modal .form-label {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.appointment-modal .form-control,
.appointment-modal .form-select {
    border-radius: 10px;
    border: 2px solid #e0e0e0;
    padding: 12px 18px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.appointment-modal .form-control:focus,
.appointment-modal .form-select:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102,126,234,0.25);
}

.appointment-modal .btn-submit-appointment {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 14px 40px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    width: 100%;
    transition: all 0.3s ease;
}

.appointment-modal .btn-submit-appointment:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102,126,234,0.4);
}

/* Google Rating Style */
.google-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 15px;
    padding: 8px 15px;
    background: #f8f9fa;
    border-radius: 50px;
    font-size: 0.85rem;
}

.google-rating .rating-star {
    color: #fbbc04;
    font-size: 1rem;
}

.google-rating .rating-number {
    font-weight: 700;
    color: #202124;
    font-size: 0.95rem;
}

.google-rating .rating-count {
    color: #5f6368;
    font-size: 0.8rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #0052a3 0%, #00a859 100%);
    padding: 40px 0;
    text-align: center;
    color: white;
}

.cta-section h3 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.btn-cta-large {
    padding: 18px 50px;
    font-size: 1.2rem;
    border-radius: 50px;
    font-weight: 700;
    margin: 10px;
    display: inline-block;
    width: auto;
    min-width: 250px;
}

/* Large CTA Buttons - Override card button styles */
.btn-book-now.btn-cta-large,
.btn-whatsapp.btn-cta-large,
.btn-light.btn-cta-large {
    padding: 18px 50px;
    font-size: 1.2rem;
    border-radius: 50px;
    min-width: 280px;
    width: auto;
    display: inline-block;
    margin: 15px;
}

.btn-book-now.btn-cta-large i,
.btn-whatsapp.btn-cta-large i,
.btn-light.btn-cta-large i {
    font-size: 1.3rem;
}

.btn-book-now.btn-cta-large {
    background: var(--primary-color);
}

.btn-book-now.btn-cta-large:hover {
    background: #003d7a;
}

.btn-whatsapp.btn-cta-large {
    background: #25d366;
}

.btn-whatsapp.btn-cta-large:hover {
    background: #1ea952;
}

.btn-light.btn-cta-large {
    background: white;
    color: var(--primary-color) !important;
}

.btn-light.btn-cta-large:hover {
    background: #f8f9fa;
}

.btn-book-now {
    background: var(--primary-color);
    color: white !important;
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
}

.btn-book-now:hover {
    background: #003d7a;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,82,163,0.3);
}

.btn-whatsapp {
    background: #25d366;
    color: white !important;
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
}

.btn-whatsapp:hover {
    background: #1ea952;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37,211,102,0.3);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.9rem;
}

/* Trust Section */
.trust-section {
    padding: 50px 0;
    background: linear-gradient(135deg, #0052a3 0%, #00a859 100%);
    color: white;
    text-align: center;
}

.trust-section h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 30px;
}

.trust-section p {
    font-size: 1.3rem;
    margin-bottom: 40px;
}

/* Trust section stat boxes */
.trust-section .stat-item {
    background: rgba(255, 255, 255, 0.15);
    padding: 20px 25px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: block;
}

.trust-section .stat-item h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: white;
}

.trust-section .stat-item p {
    font-size: 1rem;
    margin: 0;
    color: white;
    opacity: 0.95;
}

.country-flags {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.country-flags i {
    font-size: 3rem;
    opacity: 0.8;
}

/* Video Testimonials Section */
.testimonials-section {
    padding: 60px 0;
    background: white;
}

.testimonials-section iframe {
    border-radius: 20px;
}

.carousel-control-prev,
.carousel-control-next {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    top: 50%;
    opacity: 1;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: #003d7a;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 20px;
    height: 20px;
}

/* Disclaimer Section */
.disclaimer-section {
    background: #fff3cd;
    padding: 40px 0;
    border-top: 3px solid #ffc107;
    border-bottom: 3px solid #ffc107;
}

.disclaimer-section h3 {
    color: #856404;
    font-weight: 800;
    margin-bottom: 20px;
    font-size: 2rem;
}

.disclaimer-section p {
    color: #856404;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 0;
}

.disclaimer-section .bi {
    font-size: 3rem;
    color: #ffc107;
    margin-bottom: 20px;
}

/* FAQ Section */
.faq-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.accordion-item {
    border: none;
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
}

.accordion-button {
    font-weight: 700;
    font-size: 1.15rem;
    padding: 25px 30px;
    background: white;
}

.accordion-button:not(.collapsed) {
    background: var(--primary-color);
    color: white;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.accordion-body {
    padding: 25px 30px;
    font-size: 1.05rem;
    line-height: 1.8;
}

/* Footer */
footer {
    background: #1a1a1a;
    color: white;
    padding: 40px 0 20px;
}

footer h5 {
    font-weight: 700;
    margin-bottom: 25px;
    font-size: 1.3rem;
}

footer a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: white;
}

footer ul {
    list-style: none;
    padding: 0;
}

footer ul li {
    margin-bottom: 12px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        height: 40px;
    }
    
    .doctors-section {
        padding: 50px 0;
    }
    
    .why-fortis-section,
    .specialties-section,
    .testimonials-section,
    .faq-section {
        padding: 50px 0;
    }
}

@media (max-width: 768px) {
    /* Mobile Header Styling */
    .hero-section {
        padding: 30px 0 25px;
        min-height: auto;
    }
    
    .hero-section .row {
        flex-direction: column-reverse;
    }
    
    .hero-content h1 {
        font-size: 1.5rem;
        margin-bottom: 20px;
        text-align: center;
    }
    
    .hero-stats {
        gap: 10px;
        margin-top: 20px;
    }
    
    .stat-item h3 {
        font-size: 1.3rem !important;
    }
    
    .stat-item p {
        font-size: 0.9rem;
    }
    
    .stat-bullet {
        width: 6px;
        height: 6px;
    }
    
    .hero-image-box {
        margin-top: 0;
        margin-bottom: 25px;
        min-height: 250px;
    }
    
    /* Why Fortis Mobile Grid */
    .why-fortis-section {
        padding: 40px 0;
    }
    
    .benefit-card {
        padding: 20px;
        border: 3px solid var(--secondary-color);
        margin-bottom: 15px;
    }
    
    .benefit-card i {
        font-size: 2.5rem;
        margin-bottom: 12px;
    }
    
    .benefit-card h4 {
        font-size: 1rem;
        margin-bottom: 8px;
    }
    
    .benefit-card p {
        font-size: 0.85rem;
    }
    
    .keypoint-item {
        border-right: 1px solid #e0e0e0;
        margin-bottom: 0;
        padding: 10px 5px;
    }
    
    .keypoint-item:last-child {
        border-right: none;
    }
    
    .keypoint-item i {
        font-size: 1.5rem;
        margin-bottom: 5px;
    }
    
    .keypoint-item h5 {
        font-size: 0.75rem;
        line-height: 1.2;
    }
    
    .keypoints-bar {
        margin-top: -20px;
        padding: 15px 0;
    }
    
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }
    
    /* Compressed Doctor Cards */
    .doctor-card-header {
        padding: 25px 15px 50px;
    }
    
    .doctor-image-wrapper {
        width: 110px;
        height: 110px;
        border: 3px solid white;
    }
    
    .doctor-specialty-badge {
        font-size: 0.7rem;
        padding: 5px 12px;
        margin-top: 10px;
    }
    
    .doctor-card-body {
        padding: 8px 12px 18px;
    }
    
    .doctor-name {
        font-size: 1.1rem;
        margin-bottom: 6px;
    }
    
    .doctor-qualifications {
        font-size: 0.75rem;
        margin-bottom: 5px;
    }
    
    .doctor-experience {
        font-size: 0.8rem;
        margin-bottom: 12px;
    }
    
    .google-rating {
        padding: 6px 12px;
        font-size: 0.75rem;
        margin-bottom: 12px;
    }
    
    .google-rating .rating-star {
        font-size: 0.9rem;
    }
    
    .google-rating .rating-number {
        font-size: 0.85rem;
    }
    
    .google-rating .rating-count {
        font-size: 0.7rem;
    }
    
    .doctor-actions {
        flex-direction: column;
        gap: 8px;
    }
    
    .btn-doctor-consult,
    .btn-doctor-whatsapp {
        padding: 10px 12px;
        font-size: 0.85rem;
        width: 100%;
        white-space: nowrap;
    }
    
    /* Specialty Cards Mobile */
    .specialty-card {
        margin-bottom: 25px;
    }
    
    .specialty-img-wrapper {
        height: 140px;
    }
    
    .specialty-card-content {
        padding: 12px 10px;
    }
    
    .specialty-card-content h4 {
        font-size: 0.85rem;
        margin-bottom: 8px;
    }
    
    .specialty-card-content p {
        font-size: 0.75rem;
        margin-bottom: 12px;
        line-height: 1.3;
    }
    
    .specialty-actions {
        flex-direction: column;
        gap: 8px;
    }
    
    .btn-book-now,
    .btn-whatsapp {
        padding: 10px 12px;
        font-size: 0.78rem;
        width: 100%;
        white-space: nowrap;
    }
    
    .btn-sm {
        padding: 10px 12px;
        font-size: 0.78rem;
        white-space: nowrap;
    }
    
    /* Reduce section spacing */
    .cta-section {
        padding: 30px 0;
    }
    
    .cta-section h3 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    .cta-section p {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
    
    .btn-cta-large {
        padding: 16px 40px;
        font-size: 1.1rem;
        display: block;
        width: 90%;
        margin: 12px auto;
        min-width: auto;
    }
    
    /* Large CTA buttons on mobile */
    .btn-book-now.btn-cta-large,
    .btn-whatsapp.btn-cta-large,
    .btn-light.btn-cta-large {
        padding: 16px 40px;
        font-size: 1.1rem;
        width: 90%;
        display: block;
        margin: 12px auto;
    }
    
    .trust-section {
        padding: 35px 0;
    }
    
    .trust-section h2 {
        font-size: 1.5rem !important;
    }
    
    .trust-section p {
        font-size: 0.95rem;
    }
    
    .specialties-section,
    .testimonials-section,
    .faq-section {
        padding: 40px 0;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 35px;
        height: 35px;
    }
    
    .carousel-indicators {
        margin-bottom: 0;
    }
    
    .disclaimer-section {
        padding: 30px 0;
    }
    
    .disclaimer-section h3 {
        font-size: 1.3rem;
    }
    
    .disclaimer-section p {
        font-size: 0.9rem;
    }
    
    .disclaimer-section .bi {
        font-size: 2rem;
    }
    
    .appointment-modal .modal-body {
        padding: 25px 20px;
    }
    
    .appointment-modal .modal-title {
        font-size: 1.4rem;
    }
    
    footer {
        padding: 30px 0 15px;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 1.3rem;
    }
    
    .stat-item h3 {
        font-size: 1.2rem;
    }
    
    .stat-item p {
        font-size: 0.85rem;
    }
    
    .stat-bullet {
        width: 5px;
        height: 5px;
    }
    
    .keypoints-bar {
        margin-top: -15px;
    }
    
    .keypoint-item {
        padding: 10px 3px;
    }
    
    .keypoint-item i {
        font-size: 1.3rem;
    }
    
    .keypoint-item h5 {
        font-size: 0.65rem;
    }
    
    .section-title {
        font-size: 1.3rem;
    }
    
    .doctor-card {
        margin-bottom: 20px;
    }
    
    .specialty-card {
        margin-bottom: 20px;
    }
    
    .specialty-img-wrapper {
        height: 120px;
    }
    
    .specialty-card-content {
        padding: 10px 8px;
    }
    
    .specialty-card-content h4 {
        font-size: 0.75rem;
    }
    
    .specialty-card-content p {
        font-size: 0.7rem;
        margin-bottom: 10px;
    }
    
    .btn-book-now,
    .btn-whatsapp {
        padding: 9px 10px;
        font-size: 0.72rem;
        white-space: nowrap;
    }
    
    .btn-sm {
        padding: 9px 10px;
        font-size: 0.72rem;
        white-space: nowrap;
    }
    
    /* Large CTA buttons on extra small screens */
    .btn-cta-large {
        padding: 14px 30px;
        font-size: 1rem;
        width: 95%;
        display: block;
        margin: 10px auto;
    }
    
    .btn-book-now.btn-cta-large,
    .btn-whatsapp.btn-cta-large,
    .btn-light.btn-cta-large {
        padding: 14px 30px;
        font-size: 1rem;
        width: 95%;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 30px;
        height: 30px;
    }
    
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 14px;
        height: 14px;
    }
    
    /* Hide second and third video on mobile */
    #videoCarousel .carousel-item .col-lg-4:nth-child(2),
    #videoCarousel .carousel-item .col-lg-4:nth-child(3) {
        display: none;
    }
    
    .why-fortis-section,
    .specialties-section,
    .doctors-section,
    .testimonials-section,
    .faq-section {
        padding: 35px 0 !important;
    }
    
    .trust-section,
    .cta-section {
        padding: 25px 0;
    }
}

/* Video Thumbnail Styles */
.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;
    background: #000;
}

.video-thumbnail-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease;
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.play-button-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 68px;
    height: 48px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
    z-index: 2;
}

.video-wrapper:hover .play-button-overlay {
    transform: translate(-50%, -50%) scale(1.1);
}

.video-wrapper:hover .video-thumbnail-container {
    transform: scale(1.05);
}

/* Dark overlay on hover */
.video-thumbnail-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.2);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.video-wrapper:hover .video-thumbnail-container::before {
    opacity: 1;
}

/* Iframe styling when loaded */
.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 20px;
}

/* Loading spinner */
.video-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255,255,255,0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 10;
}

@keyframes spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Fade out animation for thumbnail */
.video-thumbnail-container.fade-out {
    opacity: 0;
    pointer-events: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .play-button-overlay {
        width: 54px;
        height: 38px;
    }
}

@media (max-width: 576px) {
    .play-button-overlay {
        width: 48px;
        height: 34px;
    }
}