/* Modern Cloud Dentist Styles */
:root {
    --primary-color: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary-color: #f8fafc;
    --accent-color: #06b6d4;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --white: #ffffff;
    --light-gray: #f1f5f9;
    --border-color: #e2e8f0;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --error-color: #ef4444;
    
    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Playfair Display', serif;
    
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
    
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1.125rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

/* Buttons */
.btn {
    font-weight: 500;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    cursor: pointer;
    font-size: 16px;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 18px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--white);
}

.btn-outline-primary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--primary-color);
}

.btn-light {
    background: var(--white);
    color: var(--primary-color);
}

.btn-light:hover {
    background: var(--light-gray);
    color: var(--primary-color);
}

/* Enhanced Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.preloader-content {
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid #ffffff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 30px;
    position: relative;
}

.spinner::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    border: 3px solid rgba(255, 255, 255, 0.5);
    border-top: 3px solid #ffffff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: spin 0.8s linear infinite reverse;
}

.preloader-logo {
    max-width: 180px;
    max-height: 120px;
    opacity: 0.95;
    animation: pulse 2s ease-in-out infinite;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    object-fit: contain;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    backdrop-filter: blur(10px);
}

.preloader-text {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin-top: 20px;
    animation: fadeInUp 1s ease-out 0.5s both;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Header */
.header-modern {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: var(--transition);
}

.header-modern .navbar {
    padding: 1rem 0;
}

.logo {
    max-height: 55px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

.navbar-brand:hover .logo {
    transform: scale(1.05);
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--text-dark);
    padding: 8px 16px;
    margin: 0 4px;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color);
    background: var(--secondary-color);
}

.navbar-toggler {
    border: none;
    padding: 4px 8px;
    position: relative;
    width: 30px;
    height: 30px;
}

.navbar-toggler span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-dark);
    margin: 4px 0;
    transition: var(--transition);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.emergency-contact {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-dark);
}

.emergency-contact i {
    color: var(--primary-color);
    font-size: 20px;
}

.emergency-contact div span {
    display: block;
    font-size: 12px;
    color: var(--text-light);
}

.emergency-contact div strong {
    font-weight: 600;
    color: var(--text-dark);
}

/* Hero Section */
.hero-modern {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.8), rgba(29, 78, 216, 0.6));
    z-index: -1;
}

.hero-content {
    color: var(--white);
    max-width: 600px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.1;
}

.text-gradient {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.9;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

/* Hero Stats - Professional White Theme */
.hero-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff !important;
    line-height: 1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.stat-label {
    font-size: 14px;
    opacity: 0.9;
    margin-top: 4px;
    color: rgba(255,255,255,0.9) !important;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #ffffff;
    text-align: center;
    font-size: 12px;
    opacity: 0.8;
    z-index: 3;
}

.scroll-line {
    width: 1px;
    height: 30px;
    background: var(--white);
    margin: 0 auto 10px;
    animation: scroll-bounce 2s infinite;
}

@keyframes scroll-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

/* Quick Info Cards */
.quick-info {
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.info-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 20px;
    height: 100%;
    transition: var(--transition);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    flex-shrink: 0;
}

.info-content h4 {
    font-size: 18px;
    margin-bottom: 4px;
    color: var(--text-dark);
}

.info-content p {
    margin: 0;
    color: var(--text-light);
    font-weight: 500;
}

/* Section Styles */
.section-badge {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
}

.section-description {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* About Preview */
.about-preview {
    padding: 100px 0;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: auto;
}

.experience-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--white);
    padding: 20px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    text-align: center;
    min-width: 120px;
}

.experience-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.experience-text {
    font-size: 12px;
    color: var(--text-light);
    margin-top: 4px;
}

.about-features {
    margin: 24px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.feature-item i {
    color: var(--success-color);
    font-size: 18px;
}

/* Services Preview */
.services-preview {
    padding: 100px 0;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    height: 100%;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--secondary-color);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--primary-color);
    transform: scale(1.1);
}

/* Service Icon Styles for FontAwesome */
.service-icon i {
    font-size: 40px;
    color: var(--primary-color);
    transition: var(--transition);
}

.service-card:hover .service-icon i {
    color: var(--white);
    transform: scale(1.1);
}

/* Remove image filter styles for icons */
.service-icon img {
    display: none;
}

.service-card h4 {
    font-size: 20px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.service-card p {
    margin-bottom: 24px;
    color: var(--text-light);
}

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.service-link:hover {
    color: var(--primary-dark);
    gap: 12px;
}

/* Testimonials */
.testimonials-preview {
    padding: 100px 0;
}

.testimonial-slider {
    padding: 20px 0;
}

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    margin: 20px;
    text-align: center;
}

.testimonial-content {
    margin-bottom: 30px;
}

.stars {
    color: var(--warning-color);
    margin-bottom: 20px;
    font-size: 18px;
}

.testimonial-content p {
    font-size: 18px;
    font-style: italic;
    color: var(--text-dark);
    margin: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h5 {
    margin: 0;
    font-size: 16px;
    color: var(--text-dark);
}

.testimonial-author span {
    font-size: 14px;
    color: var(--text-light);
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 16px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    margin: 0;
}

/* Footer */
.footer-modern {
    background: var(--text-dark);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-widget h5 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-logo {
    max-width: 160px;
    max-height: 80px;
    margin-bottom: 20px;
    object-fit: contain;
    filter: brightness(1.1);
    transition: var(--transition);
}

.footer-logo:hover {
    transform: scale(1.05);
    filter: brightness(1.2);
}

.footer-widget p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
}

.contact-info {
    margin-top: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.8);
}

.contact-item i {
    color: var(--primary-color);
    width: 20px;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.2);
    margin: 40px 0 20px;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footer-links-inline {
    display: flex;
    gap: 20px;
    justify-content: end;
}

.footer-links-inline a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.footer-links-inline a:hover {
    color: var(--white);
}

/* Responsive Design */
@media (max-width: 991px) {
    .header-actions {
        flex-direction: column;
        gap: 16px;
        margin-top: 20px;
    }
    
    .emergency-contact {
        order: 2;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .info-card {
        margin-bottom: 20px;
    }
    
    .about-image {
        margin-top: 40px;
    }
    
    .cta-section .row {
        text-align: center;
    }
    
    .cta-section .col-lg-4 {
        margin-top: 20px;
    }
    
    .footer-links-inline {
        justify-content: center;
        margin-top: 20px;
    }
}

@media (max-width: 767px) {
    .hero-content {
        text-align: center;
    }
    
    .hero-actions {
        align-items: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .stat-item {
        flex: 1;
        min-width: 100px;
    }
    
    .info-card {
        flex-direction: column;
        text-align: center;
    }
    
    .testimonial-author {
        flex-direction: column;
    }
    
    .service-card {
        margin-bottom: 30px;
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }

.py-5 { padding: 3rem 0; }
.bg-light { background-color: var(--light-gray); }
.bg-primary { background: linear-gradient(135deg, var(--primary-color), var(--primary-dark)); }

.rounded-4 { border-radius: var(--border-radius-lg); }

.img-fluid {
    max-width: 100%;
    height: auto;
}

.d-flex { display: flex; }
.align-items-center { align-items: center; }
.justify-content-center { justify-content: center; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 1rem; }

.wow {
    visibility: hidden;
}

.animated {
    visibility: visible;
}

/* Page Header Styles */
.page-header {
    padding: 150px 0 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    text-align: center;
}

.page-title {
    color: var(--white);
    margin-bottom: 20px;
}

.page-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

/* About Story Styles */
.about-story {
    padding: 100px 0;
}

.about-image-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
    height: 500px;
}

.image-item.large {
    grid-row: 1 / 3;
}

.image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-highlights {
    margin-top: 40px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.highlight-icon {
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 24px;
    flex-shrink: 0;
}

.highlight-content h4 {
    margin-bottom: 8px;
    font-size: 18px;
}

.highlight-content p {
    margin: 0;
    color: var(--text-light);
}

/* Mission & Vision Cards */
.mission-card,
.vision-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    height: 100%;
    text-align: center;
    transition: var(--transition);
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.mission-card .card-icon,
.vision-card .card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 32px;
    margin: 0 auto 30px;
}

.mission-card h3,
.vision-card h3 {
    margin-bottom: 20px;
    color: var(--text-dark);
}

/* Statistics Cards */
.statistics {
    padding: 100px 0;
}

.stat-card {
    background: var(--white);
    padding: 40px 20px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: var(--secondary-color);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 32px;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.stat-card:hover .stat-icon {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

/* Statistics Cards - Dark Text */
.stat-card .stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #2563eb !important;
    line-height: 1;
    display: inline-block;
}

.stat-card .stat-suffix {
    font-size: 2rem;
    font-weight: 700;
    color: #2563eb !important;
    display: inline-block;
}

.stat-card .stat-label {
    font-size: 16px;
    color: #64748b !important;
    margin-top: 10px;
    font-weight: 500;
}

/* Feature Cards */
.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    height: 100%;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--secondary-color);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: var(--primary-color);
    transform: scale(1.1);
}

.feature-icon img {
    max-width: 40px;
    filter: brightness(0) saturate(100%) invert(27%) sepia(51%) saturate(2878%) hue-rotate(346deg) brightness(104%) contrast(97%);
    transition: var(--transition);
}

.feature-card:hover .feature-icon img {
    filter: brightness(0) saturate(100%) invert(100%);
}

.feature-icon i {
    font-size: 32px;
    color: var(--primary-color);
    transition: var(--transition);
}

.feature-card:hover .feature-icon i {
    color: var(--white);
}

.feature-card h4 {
    font-size: 20px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.feature-card p {
    margin: 0;
    color: var(--text-light);
}

/* Doctor Cards */
.doctor-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: var(--transition);
    text-align: center;
}

.doctor-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.doctor-image {
    position: relative;
    overflow: hidden;
}

.doctor-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: var(--transition);
}

.doctor-card:hover .doctor-image img {
    transform: scale(1.1);
}

.doctor-info {
    padding: 30px;
}

.doctor-info h4 {
    margin-bottom: 8px;
    color: var(--text-dark);
}

.doctor-info p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.doctor-social {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.doctor-social a {
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
}

.doctor-social a:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

/* Responsive Adjustments for About Page */
@media (max-width: 991px) {
    .page-header {
        padding: 120px 0 80px;
    }
    
    .about-image-grid {
        grid-template-columns: 1fr;
        grid-template-rows: 300px 150px 150px;
        height: auto;
        margin-top: 40px;
    }
    
    .image-item.large {
        grid-row: 1;
    }
    
    .highlight-item {
        flex-direction: column;
        text-align: center;
    }
    
    .mission-card,
    .vision-card {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .page-header {
        padding: 100px 0 60px;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .about-image-grid {
        grid-template-columns: 1fr;
        grid-template-rows: 250px 120px 120px;
        gap: 15px;
    }
    
    .stat-card,
    .feature-card,
    .doctor-card {
        margin-bottom: 30px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-suffix {
        font-size: 1.5rem;
    }
}
/* Service Detail Cards */
.service-detail-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
}

.service-detail-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.service-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-detail-card:hover .service-image img {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.8), rgba(29, 78, 216, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.service-detail-card:hover .service-overlay {
    opacity: 1;
}

.service-overlay .service-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.service-overlay .service-icon img {
    max-width: 40px;
    filter: brightness(0) saturate(100%) invert(100%);
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.service-content p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
    color: var(--text-light);
}

.service-features li i {
    color: var(--success-color);
    font-size: 14px;
}

/* Process Steps */
.process-step {
    text-align: center;
    position: relative;
    padding: 40px 20px;
}

.step-number {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--secondary-color);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px auto 20px;
    color: var(--primary-color);
    font-size: 32px;
    transition: var(--transition);
}

.process-step:hover .step-icon {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

.process-step h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.process-step p {
    color: var(--text-light);
    margin: 0;
}

/* Technology Features */
.technology-features {
    margin-top: 30px;
}

.tech-feature {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
    padding: 20px;
    background: var(--secondary-color);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.tech-feature:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.tech-feature i {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.tech-feature h5 {
    margin-bottom: 4px;
    color: var(--text-dark);
    font-size: 16px;
}

.tech-feature p {
    margin: 0;
    color: var(--text-light);
    font-size: 14px;
}

/* Services Grid Responsive */
@media (max-width: 991px) {
    .service-image {
        height: 200px;
    }
    
    .service-content {
        padding: 24px;
    }
    
    .process-step {
        margin-bottom: 30px;
    }
    
    .tech-feature {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 767px) {
    .service-detail-card {
        margin-bottom: 30px;
    }
    
    .service-image {
        height: 180px;
    }
    
    .service-content {
        padding: 20px;
    }
    
    .service-content h3 {
        font-size: 20px;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
        margin: 25px auto 15px;
    }
    
    .process-step h4 {
        font-size: 18px;
    }
}
/* Chief Dentist Section */
.chief-dentist {
    padding: 100px 0;
}

.chief-doctor-image {
    position: relative;
}

.chief-doctor-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-lg);
}

.chief-doctor-info h3 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.doctor-designation {
    font-size: 18px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 20px;
}

.doctor-description {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.7;
}

.doctor-qualifications {
    margin-bottom: 30px;
}

.doctor-qualifications h5 {
    color: var(--text-dark);
    margin-bottom: 16px;
    font-size: 18px;
}

.doctor-qualifications ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.doctor-qualifications li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--text-light);
}

.doctor-qualifications li i {
    color: var(--primary-color);
    font-size: 16px;
    width: 20px;
}

.doctor-social {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

/* Doctor Profile Cards */
.doctor-profile-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
}

.doctor-profile-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.doctor-profile-card .doctor-image {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.doctor-profile-card .doctor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.doctor-profile-card:hover .doctor-image img {
    transform: scale(1.1);
}

.doctor-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.9), rgba(29, 78, 216, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.doctor-profile-card:hover .doctor-overlay {
    opacity: 1;
}

.doctor-overlay .doctor-social {
    display: flex;
    gap: 12px;
}

.doctor-overlay .doctor-social a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.doctor-overlay .doctor-social a:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: scale(1.1);
}

.doctor-profile-card .doctor-info {
    padding: 30px;
    text-align: center;
}

.doctor-profile-card .doctor-info h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.doctor-specialty {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 14px;
}

.doctor-bio {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 20px;
}

/* Value Cards */
.value-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    height: 100%;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: var(--secondary-color);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--primary-color);
    font-size: 32px;
    transition: var(--transition);
}

.value-card:hover .value-icon {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

.value-card h4 {
    font-size: 20px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.value-card p {
    color: var(--text-light);
    margin: 0;
}

/* Responsive Styles for Doctors Page */
@media (max-width: 991px) {
    .chief-doctor-info {
        margin-top: 40px;
    }
    
    .chief-doctor-info h3 {
        font-size: 2rem;
    }
    
    .doctor-profile-card .doctor-image {
        height: 250px;
    }
    
    .value-card {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .chief-doctor-info h3 {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .doctor-designation {
        text-align: center;
    }
    
    .doctor-social {
        justify-content: center;
    }
    
    .doctor-profile-card .doctor-image {
        height: 200px;
    }
    
    .doctor-profile-card .doctor-info {
        padding: 20px;
    }
    
    .doctor-profile-card .doctor-info h4 {
        font-size: 18px;
    }
    
    .value-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
}
/* Gallery Filters */
.gallery-filters {
    border-bottom: 1px solid var(--border-color);
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.filter-btn {
    background: var(--white);
    border: 2px solid var(--border-color);
    color: var(--text-dark);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 500;
    transition: var(--transition);
    cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

/* Gallery Cards */
.gallery-card {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.gallery-image {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-card:hover .gallery-image img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.9), rgba(29, 78, 216, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-content {
    text-align: center;
    color: var(--white);
}

.gallery-content h4 {
    color: var(--white);
    margin-bottom: 8px;
    font-size: 20px;
}

.gallery-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.gallery-link {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    backdrop-filter: blur(10px);
    transition: var(--transition);
    margin: 0 auto;
}

.gallery-link:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: scale(1.1);
}

/* Transformation Items */
.transformation-item {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: var(--transition);
}

.transformation-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.transformation-images {
    position: relative;
    height: 300px;
}

.transformation-info {
    padding: 30px;
    text-align: center;
}

.transformation-info h4 {
    color: var(--text-dark);
    margin-bottom: 8px;
    font-size: 20px;
}

.transformation-info p {
    color: var(--text-light);
    margin: 0;
}

/* Virtual Tour */
.virtual-tour {
    padding: 100px 0;
}

.tour-image {
    position: relative;
}

.tour-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-lg);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 24px;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.play-button:hover {
    background: var(--white);
    transform: translate(-50%, -50%) scale(1.1);
}

.tour-features {
    margin: 24px 0;
}

.tour-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.tour-feature i {
    color: var(--success-color);
    font-size: 18px;
}

.tour-feature span {
    color: var(--text-light);
    font-weight: 500;
}

/* Responsive Gallery Styles */
@media (max-width: 991px) {
    .filter-buttons {
        gap: 12px;
    }
    
    .filter-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .gallery-image {
        height: 250px;
    }
    
    .transformation-images {
        height: 250px;
    }
    
    .tour-content {
        margin-bottom: 40px;
    }
}

@media (max-width: 767px) {
    .filter-buttons {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
    
    .filter-btn {
        width: 200px;
    }
    
    .gallery-image {
        height: 200px;
    }
    
    .gallery-content h4 {
        font-size: 18px;
    }
    
    .transformation-images {
        height: 200px;
    }
    
    .transformation-info {
        padding: 20px;
    }
    
    .play-button {
        width: 60px;
        height: 60px;
        font-size: 20px;
    }
    
    .tour-feature {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
}

/* Blog Styles */
.blog-section {
    background: #f8f9fa;
}

.blog-post {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 40px;
    transition: all 0.3s ease;
}

.blog-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.blog-image {
    position: relative;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-post:hover .blog-image img {
    transform: scale(1.05);
}

.blog-date {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #007bff;
    color: white;
    padding: 10px;
    border-radius: 10px;
    text-align: center;
    min-width: 60px;
}

.blog-date .day {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.blog-date .month {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.blog-content {
    padding: 30px;
}

.blog-meta {
    margin-bottom: 15px;
}

.blog-meta span {
    color: #6c757d;
    font-size: 0.9rem;
    margin-right: 20px;
}

.blog-meta i {
    margin-right: 5px;
    color: #007bff;
}

.blog-content h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-content h2 a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-content h2 a:hover {
    color: #007bff;
}

.read-more {
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: #0056b3;
}

.read-more i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.read-more:hover i {
    transform: translateX(5px);
}

/* Blog Sidebar */
.blog-sidebar {
    padding-left: 30px;
}

.sidebar-widget {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.sidebar-widget h4 {
    margin-bottom: 20px;
    color: #333;
    font-weight: 600;
}

.search-form {
    position: relative;
}

.search-form input {
    width: 100%;
    padding: 15px 50px 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 25px;
    outline: none;
    transition: border-color 0.3s ease;
}

.search-form input:focus {
    border-color: #007bff;
}

.search-form button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: #007bff;
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
}

.category-list {
    list-style: none;
    padding: 0;
}

.category-list li {
    border-bottom: 1px solid #e9ecef;
    padding: 10px 0;
}

.category-list li:last-child {
    border-bottom: none;
}

.category-list a {
    color: #333;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.category-list a:hover {
    color: #007bff;
}

.category-list span {
    background: #f8f9fa;
    color: #6c757d;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.8rem;
}

.recent-posts .recent-post {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e9ecef;
}

.recent-posts .recent-post:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.recent-posts img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 10px;
    margin-right: 15px;
}

.recent-posts h6 {
    margin-bottom: 5px;
    font-size: 0.9rem;
    line-height: 1.4;
}

.recent-posts h6 a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.recent-posts h6 a:hover {
    color: #007bff;
}

.recent-posts span {
    color: #6c757d;
    font-size: 0.8rem;
}

/* Contact Styles */
.contact-info-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #007bff, #28a745);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-icon i {
    font-size: 2rem;
    color: white;
}

.contact-info-card h4 {
    margin-bottom: 15px;
    color: #333;
    font-weight: 600;
}

.contact-info-card p {
    color: #6c757d;
    line-height: 1.6;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    display: block;
}

.contact-form .form-control {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 15px 20px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,0.25);
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.emergency-banner {
    background: linear-gradient(45deg, #dc3545, #fd7e14) !important;
}

.emergency-content h4 {
    margin-bottom: 10px;
    font-weight: 600;
}

.emergency-content i {
    margin-right: 10px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Appointment Styles */
.appointment-form-wrapper {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.appointment-form .form-group {
    margin-bottom: 25px;
}

.appointment-form label {
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    display: block;
}

.appointment-form .form-control {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 15px 20px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.appointment-form .form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,0.25);
}

.time-slots .btn {
    border-radius: 10px;
    padding: 12px 8px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.time-slots .btn-check:checked + .btn {
    background: #007bff;
    border-color: #007bff;
    color: white;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #007bff, #28a745);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-card h4 {
    margin-bottom: 15px;
    color: #333;
    font-weight: 600;
}

.feature-card p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .blog-sidebar {
        padding-left: 0;
        margin-top: 40px;
    }
    
    .appointment-form-wrapper {
        padding: 30px 20px;
    }
    
    .time-slots .col-6 {
        margin-bottom: 10px;
    }
    
    .contact-info-section .col-md-6 {
        margin-bottom: 30px;
    }
}
/* Branches Styles */
.branches-section {
    background: #f8f9fa;
}

.branch-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.branch-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.branch-header {
    padding: 30px 30px 20px;
    background: linear-gradient(45deg, #007bff, #28a745);
    color: white;
    position: relative;
}

.branch-header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.branch-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255,255,255,0.2);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    backdrop-filter: blur(10px);
}

.branch-info {
    padding: 30px;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.info-item i {
    width: 20px;
    color: #007bff;
    margin-right: 15px;
}

.branch-map {
    border-radius: 0 0 15px 15px;
    overflow: hidden;
}

.branch-map iframe {
    width: 100%;
    height: 250px;
    border: none;
}


/* Counter Animation */
.counter {
    display: inline-block;
}

/* Doctor Image Fix */
.team-image img, .doctor-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center top;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.team-member-item:hover .team-image img,
.doctor-card:hover .doctor-image img {
    transform: scale(1.05);
}

/* Doctor Hover Details */
.doctor-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0,123,255,0.9), rgba(40,167,69,0.9));
    color: white;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 15px;
}

.team-member-item:hover .doctor-overlay,
.doctor-card:hover .doctor-overlay {
    opacity: 1;
}

.doctor-overlay h4 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.doctor-overlay p {
    text-align: center;
    margin-bottom: 15px;
}

.doctor-overlay .btn {
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.doctor-overlay .btn:hover {
    background: white;
    color: #007bff;
}

/* Tawk.to Chat Customization */
#tawkchat-minified-container {
    bottom: 20px !important;
    right: 20px !important;
}

.tawk-min-container {
    box-shadow: 0 10px 30px rgba(0,0,0,0.2) !important;
    border-radius: 50px !important;
}

/* Page Header - Professional Medical Theme */
.page-header {
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
    color: #ffffff;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/hero-bg.svg') no-repeat center center;
    background-size: cover;
    opacity: 0.1;
}

.page-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff !important;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.page-description {
    color: #e0e7ff !important;
    font-size: 18px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.section-badge {
    background: rgba(255,255,255,0.2) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255,255,255,0.3);
}

.breadcrumb {
    background: transparent;
    margin: 0;
}

.breadcrumb-item a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: #ffffff;
}
/* Doctor Profile Cards */
.doctor-profile-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.doctor-profile-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.doctor-profile-card .doctor-image {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.doctor-profile-card .doctor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.3s ease;
}

/* Specific positioning for new doctor images */
.doctor-image img[src*="kajol chauhan"] {
    object-position: center 20% !important;
    transform: scale(1.1);
}

.doctor-image img[src*="shresthi"] {
    object-position: center 15% !important;
    transform: scale(1.15);
}

.doctor-image img[src*="prem ghodeshwar"] {
    object-position: center 25% !important;
    transform: scale(1.1);
}

.doctor-profile-card:hover .doctor-image img {
    transform: scale(1.02);
}

.doctor-profile-card .doctor-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0,123,255,0.9), rgba(40,167,69,0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.doctor-profile-card:hover .doctor-overlay {
    opacity: 1;
}

.doctor-profile-card .doctor-social {
    display: flex;
    gap: 15px;
}

.doctor-profile-card .doctor-social a {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.2);
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.doctor-profile-card .doctor-social a:hover {
    background: white;
    color: #007bff;
    transform: scale(1.1);
}

.doctor-profile-card .doctor-info {
    padding: 30px 25px;
    text-align: center;
}

.doctor-profile-card .doctor-info h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c3e50;
}

.doctor-specialty {
    color: #007bff;
    font-weight: 500;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.doctor-bio {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Chief Doctor Section */
.chief-doctor-image {
    position: relative;
}

.chief-doctor-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center top;
    border-radius: 20px;
}

.chief-doctor-info h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
}

.doctor-designation {
    color: #007bff;
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 20px;
}

.doctor-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #6c757d;
    margin-bottom: 30px;
}

.doctor-qualifications h5 {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 15px;
}

.doctor-qualifications ul {
    list-style: none;
    padding: 0;
}

.doctor-qualifications li {
    padding: 8px 0;
    color: #6c757d;
}

.doctor-qualifications li i {
    color: #007bff;
    margin-right: 10px;
    width: 20px;
}

.social-link {
    display: inline-flex;
    width: 45px;
    height: 45px;
    background: linear-gradient(45deg, #007bff, #28a745);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,123,255,0.3);
    color: white;
}

/* Value Cards */
.value-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #007bff, #28a745);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-icon i {
    font-size: 2rem;
    color: white;
}

.value-card h4 {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 15px;
}

.value-card p {
    color: #6c757d;
    line-height: 1.6;
}

/* Location Cards with Maps */
.location-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.location-card h4 {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.location-card p {
    color: #6c757d;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.location-card p i {
    color: #007bff;
    margin-right: 8px;
}

.location-card iframe {
    width: 100%;
    height: 200px;
    border: none;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
/* Clean Professional Background Theme */
body {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    color: #1e293b;
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Section Backgrounds - Elegant Medical Theme */
section:not(.hero-modern):not(.page-header):not(.footer-modern):not(.cta-section) {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%) !important;
}

/* Alternating Section Backgrounds */
.services-preview, .panel-doctors, .why-choose, .contact-form-section, .why-choose-appointment,
.mission-vision, .testimonials-preview {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%) !important;
}

/* Ensure all cards maintain white backgrounds */
.service-card, .doctor-card, .testimonial-card, .blog-post, 
.contact-info-card, .feature-card, .stat-card, .mission-card, 
.vision-card, .value-card, .gallery-item, .branch-card,
.info-card, .location-card, .appointment-form-wrapper {
    background: #ffffff !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* CTA Section - Dark Background with White Text */
.cta-section {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%) !important;
    color: white !important;
}

.cta-section h2, .cta-section p {
    color: white !important;
}

/* Page Headers - Dark Background */
.page-header {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%) !important;
    color: white !important;
}

.page-header .page-title, .page-header h1 {
    color: white !important;
}

.page-header .section-badge {
    background: rgba(255,255,255,0.2) !important;
    color: white !important;
}

/* Doctor Page Headers */
.chief-dentist .section-title, .panel-doctors .section-title {
    color: #1e3a8a !important;
}

/* Ensure all text is visible */
h1, h2, h3, h4, h5, h6 {
    color: #1e3a8a !important;
}

.section-title {
    color: #1e3a8a !important;
}

.section-description {
    color: #4b5563 !important;
}




/* Professional Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: #1e293b;
    margin-bottom: 1rem;
}

.section-title {
    color: #1e293b !important;
    font-weight: 700;
}

.section-description {
    color: #64748b !important;
    font-size: 18px;
    line-height: 1.6;
}

/* Doctor Specialty and Designation Colors */
.doctor-specialty, .doctor-designation {
    color: #2563eb !important;
    font-weight: 600;
}

/* Experience Badge */
.experience-badge {
    background: #ffffff !important;
    color: #1e293b !important;
    border: 2px solid #2563eb !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.experience-number {
    color: #2563eb !important;
    font-weight: 800;
}

.experience-text {
    color: #64748b !important;
}

/* CTA Section */
.cta-section h2 {
    color: #111827 !important;
}

.cta-section p {
    color: #374151 !important;
}



/* Professional Gradient Text */
.text-gradient {
    background: linear-gradient(135deg, #2563eb, #1d4ed8) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}



/* CTA Section */
.cta-section h2 {
    color: #e8f4f8 !important;
}

.cta-section p {
    color: #d1e7dd !important;
}


/* Hero Video - Mobile-Optimized Implementation */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
}

.hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

.hero-video video::-webkit-media-controls {
    display: none !important;
}

.hero-video video::-webkit-media-controls-panel {
    display: none !important;
}

.hero-video video::-webkit-media-controls-play-button {
    display: none !important;
}

/* Mobile Video Controls - Complete Removal */
@media (max-width: 768px) {
    .hero-video video {
        display: block !important;
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        pointer-events: none !important;
    }
    
    .hero-video video::-webkit-media-controls-start-playback-button {
        display: none !important;
        -webkit-appearance: none !important;
    }
    
    .hero-video video::-webkit-media-controls {
        display: none !important;
        -webkit-appearance: none !important;
    }
    
    .hero-video video::-webkit-media-controls-overlay-play-button {
        display: none !important;
        -webkit-appearance: none !important;
    }
    
    /* Ensure video container is visible */
    .hero-bg-video {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

/* Change White Text Colors */
.hero-content {
    color: #f8f9fa !important;
    position: relative;
    z-index: 2;
}

.hero-title {
    color: #f8f9fa !important;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-description {
    color: #e9ecef !important;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.hero-badge {
    background: rgba(248, 249, 250, 0.2);
    color: #f8f9fa !important;
}



/* Hero Text - Professional White Theme */
.hero-title {
    color: #ffffff !important;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    font-weight: 700;
}

.hero-description {
    color: rgba(255,255,255,0.95) !important;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.hero-badge {
    background: rgba(255,255,255,0.2);
    color: #ffffff !important;
    border: 1px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(10px);
}

.scroll-indicator {
    color: #ffffff !important;
    opacity: 0.8;
}

.scroll-line {
    background: #ffffff !important;
}

.btn-outline-light {
    border-color: #ffffff !important;
    color: #ffffff !important;
    font-weight: 600 !important;
}

.btn-outline-light:hover {
    background: #ffffff !important;
    color: #2563eb !important;
}

.scroll-indicator {
    color: #f8f9fa !important;
}

.scroll-line {
    background: #f8f9fa !important;
}

/* Fix Button Colors */
.btn-outline-light {
    border-color: #f8f9fa !important;
    color: #f8f9fa !important;
}

.btn-outline-light:hover {
    background: #f8f9fa !important;
    color: #2563eb !important;
}

/* Logo Responsive Adjustments */
@media (max-width: 991px) {
    .logo {
        max-height: 50px;
    }
    
    .preloader-logo {
        max-width: 150px;
        max-height: 100px;
        padding: 12px;
    }
    
    .footer-logo {
        max-width: 140px;
        max-height: 70px;
    }
}

@media (max-width: 767px) {
    .logo {
        max-height: 45px;
    }
    
    .preloader-logo {
        max-width: 120px;
        max-height: 80px;
        padding: 10px;
    }
    
    .footer-logo {
        max-width: 120px;
        max-height: 60px;
    }
}

@media (max-width: 576px) {
    .logo {
        max-height: 40px;
    }
    
    .preloader-logo {
        max-width: 100px;
        max-height: 70px;
        padding: 8px;
    }
    
    .footer-logo {
        max-width: 100px;
        max-height: 50px;
    }
}

/* Mobile Responsive Images */
.img-fluid {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

.about-image img {
    width: 100%;
    height: auto;
    min-height: 300px;
    object-fit: cover;
    object-position: center;
}

.doctor-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center top;
}

.service-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: center;
}

.gallery-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center;
}

/* Additional Mobile Image Fixes */
@media (max-width: 576px) {
    .about-image img {
        height: 200px;
        object-fit: cover;
    }
    
    .doctor-image img {
        height: 200px;
        object-fit: cover;
        object-position: center top;
    }
    
    .service-image img {
        height: 180px;
        object-fit: cover;
    }
    
    .gallery-image img {
        height: 180px;
        object-fit: cover;
    }
    
    .testimonial-author img {
        width: 50px;
        height: 50px;
        object-fit: cover;
    }
    
    .preloader-logo {
        max-width: 100px;
    }
    
    .logo {
        max-height: 40px;
    }
    
    .footer-logo {
        max-width: 120px;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 20px 0;
}

/* Mobile Video Debugging */
@media (max-width: 768px) {
    .hero-modern {
        min-height: 100vh !important;
        position: relative !important;
    }
    
    .hero-section.hero-video {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        z-index: 1 !important;
    }
    
    .hero-section.hero-video::before {
        display: none;
    }
    
    .hero-bg-video {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        z-index: 1 !important;
    }
    
    .hero-overlay {
        z-index: 2 !important;
    }
    
    .hero-modern .container {
        position: relative !important;
        z-index: 3 !important;
    }
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 25px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-description {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 35px;
    color: rgba(255,255,255,0.9);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.text-gradient {
    background: linear-gradient(45deg, #007bff, #28a745);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
}
/* Mobile Image Fixes */
@media (max-width: 768px) {
    .about-image-grid .image-item img,
    .gallery-image img,
    .photo-gallery img {
        width: 100%;
        height: auto;
        object-fit: cover;
        border-radius: 1rem;
    }
    
    .transformation-images img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }
}

/* Footer - Professional Dark Theme */
.footer-modern {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: #f9fafb !important;
}

.footer-modern .footer-widget h5 {
    color: #f9fafb !important;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-modern .footer-widget p {
    color: #d1d5db !important;
    line-height: 1.6;
}

.footer-modern .footer-links a {
    color: #d1d5db !important;
    transition: color 0.3s ease;
}

.footer-modern .footer-links a:hover {
    color: #2563eb !important;
}

.footer-modern .copyright {
    color: #9ca3af !important;
}

.footer-modern .contact-item {
    color: #d1d5db !important;
}

.footer-modern .contact-item i {
    color: #2563eb !important;
}



/* Hero Video with Proper Overlay */
.hero-modern {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-section.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-section.hero-video::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-modern .container {
    position: relative;
    z-index: 3;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: #ffffff;
}
/* CTA Section - Consistent White Text */
.cta-section h2,
.cta-section p,
.cta-content h2,
.cta-content p {
    color: #ffffff !important;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.cta-section {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%) !important;
}
/* CTA Section Button Fix */
.cta-section .btn-light {
    background: #ffffff !important;
    color: #2563eb !important;
    border: 2px solid #ffffff !important;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.cta-section .btn-light:hover {
    background: transparent !important;
    color: #ffffff !important;
    border: 2px solid #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
}

/* Social Links Professional Styling */
.social-links a {
    background: linear-gradient(135deg, #2563eb, #1d4ed8) !important;
    color: #ffffff !important;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e40af) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* Contact Icons Professional Styling */
.contact-icon {
    background: linear-gradient(135deg, #2563eb, #1d4ed8) !important;
    color: #ffffff !important;
}

/* Emergency Banner Professional Styling */
.emergency-banner {
    background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
}

/* Ensure All Text is Readable */
.text-white, .text-white * {
    color: #ffffff !important;
}

.text-dark, .text-dark * {
    color: #1e293b !important;
}

/* Professional Card Hover Effects */
.service-card:hover, .doctor-card:hover, .feature-card:hover,
.stat-card:hover, .value-card:hover, .info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Improved Typography Hierarchy */
.page-title {
    font-weight: 800 !important;
    letter-spacing: -0.025em;
}

.section-title {
    font-weight: 700 !important;
    letter-spacing: -0.025em;
}

/* Professional Spacing */
.py-5 {
    padding: 5rem 0 !important;
}

@media (max-width: 768px) {
    .py-5 {
        padding: 3rem 0 !important;
    }
}
/* Quick Contact Button */
.quick-contact-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.quick-contact-btn .btn {
    border-radius: 50px;
    padding: 15px 25px;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    animation: pulse-contact 2s infinite;
}

@keyframes pulse-contact {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Remove demo site references */
.breadcrumb-item::before {
    content: "/" !important;
}

.breadcrumb-item.active::before {
    display: none !important;
}
/* Review Statistics Cards */
.review-stat-card {
    background: #ffffff;
    padding: 40px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.review-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.review-stat-card .stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #ffffff;
    font-size: 24px;
}

.review-stat-card .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2563eb !important;
    line-height: 1;
    margin-bottom: 8px;
}

.review-stat-card .stat-label {
    font-size: 16px;
    color: #64748b !important;
    font-weight: 500;
}

/* Fix All Icons Visibility */
i.fas, i.fab, i.far {
    font-family: "Font Awesome 5 Free" !important;
    font-weight: 900 !important;
    display: inline-block !important;
}

.fab {
    font-family: "Font Awesome 5 Brands" !important;
    font-weight: 400 !important;
}

/* Ensure FontAwesome loads properly */
@font-face {
    font-family: "Font Awesome 5 Free";
    src: url("../fonts/fa-solid-900.woff2") format("woff2");
    font-weight: 900;
    font-display: swap;
}

@font-face {
    font-family: "Font Awesome 5 Brands";
    src: url("../fonts/fa-brands-400.woff2") format("woff2");
    font-weight: 400;
    font-display: swap;
}