/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.container-fluid {
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 16px;
}

.btn-primary {
    background: #2563eb;
    color: white;
}

.btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
}

.btn-outline {
    background: transparent;
    color: #2563eb;
    border: 2px solid #2563eb;
}

.btn-outline:hover {
    background: #2563eb;
    color: white;
    transform: translateY(-3px);
}

/* Header Styles */
.header {
    position: fixed;
    top: 44px; /* Adjusted to account for top contact section height */
    left: 0;
    width: 100%;
    background:#E7F1FE ; /* Dark slate background */
  
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
 
}

/* Adjust header position to account for top contact section */
@media (max-width: 768px) {
    .header {
        top: 0; /* Adjusted since top contact section is hidden */
    }
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 24px;
    font-weight: 700;
   /* White text for logo */
}

.logo i {
    margin-right: 8px;
    color: #60a5fa; /* Light blue accent */
}

.navbar ul {
    display: flex;
    gap: 30px;
}

.navbar a {
    font-weight: 600;
    position: relative;
    padding: 5px 0;
    color: #2a2b2c; /* Light gray text */
    transition: all 0.3s ease;
}

.navbar a:hover {
    color: #4e4d4d; /* White on hover */
}

.navbar a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: #60a5fa; /* Light blue accent */
    transition: width 0.3s ease;
    border-radius: 2px;
}

.navbar a:hover::after {
    width: 100%;
}

.auth-buttons {
    display: flex;
    gap: 15px;
}

.auth-buttons a,
.auth-buttons button {
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.auth-buttons a:first-child,
.auth-buttons button:first-child {
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%); /* Blue gradient */
    color: white;
    border: none;
    box-shadow: 0 4px 10px rgba(59, 130, 246, 0.3);
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.auth-buttons a:first-child:hover,
.auth-buttons button:first-child:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(59, 130, 246, 0.4);
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.auth-buttons a:last-child,
.auth-buttons button:last-child {
    background: transparent;
    color: #3b82f6; /* Blue text */
    border: 2px solid #3b82f6; /* Blue border */
    box-shadow: 0 4px 10px rgba(59, 130, 246, 0.2);
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.auth-buttons a:last-child:hover,
.auth-buttons button:last-child:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(59, 130, 246, 0.3);
    background: rgba(59, 130, 246, 0.1); /* Light blue background on hover */
    color: #2563eb;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    z-index: 1001;
}

.modal-content {
 
    padding: 30px;
    border-radius: 12px;
    width: 90%;
    max-width: 700px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    position: relative;
    animation: modalFadeIn 0.3s ease-out;
    min-height: 300px;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.modal-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e2e8f0;
}

.modal-content h2 {
    margin-top: 0;
    color: #1e293b;
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.modal-subtitle {
    color: #64748b;
    margin: 12px 0 0;
    font-size: 20px;
    line-height: 1.6;
    font-weight: 500;
}

.modal-body {
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.register-options {
    display: flex;
    gap: 20px;
    align-items: stretch;
    height: 100%;
}

@media (max-width: 768px) {
    .register-options {
        flex-direction: column;
    }
    
    .register-option {
        min-height: 160px;
    }
    
    .option-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
        margin-right: 20px;
    }
    
    .option-content h3 {
        font-size: 20px;
    }
    
    .option-content p {
        font-size: 15px;
    }
}

@media (min-width: 769px) {
    .register-options {
        flex-direction: row;
    }
    
    .register-option {
        height: 200px; /* Fixed height for laptop size */
        align-items: center;
    }
}

.register-option {
    display: flex;
    align-items: center;
    padding: -1px;
    border-radius: 10px;
    border: 2px solid #e2e8f0;
    background: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    flex: 1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    min-height: 180px;
    height: 100%;
}

.register-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    border-color: #2563eb;
}

.option-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 25px;
    font-size: 28px;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.patient-option .option-icon {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    border: 3px solid rgba(37, 99, 235, 0.2);
}

.hospital-option .option-icon {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: 3px solid rgba(16, 185, 129, 0.2);
}

.option-content h3 {
    margin: 0 0 10px 0;
    color: #1e293b;
    font-size: 22px;
    font-weight: 700;
}

.option-content p {
    margin: 0;
    color: #64748b;
    font-size: 16px;
    line-height: 1.6;
    flex-grow: 1;
}

.patient-option:hover {
    border-color: #2563eb;
}

.hospital-option:hover {
    border-color: #10b981;
}

.close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    color: #aaa;
    cursor: pointer;
    transition: color 0.3s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.close:hover {
    color: #000;
    background: #f1f5f9;
}

/* Patient Speaks Section */
.patient-speaks {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.patient-speaks .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.patient-speaks .section-header h2 {
    font-size: 36px;
    color: #1e293b;
    margin-bottom: 15px;
}

.patient-speaks .section-header p {
    font-size: 18px;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
}

.patient-speaks-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.patient-testimonials {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.testimonial-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}



.patient-info h3 {
    font-size: 20px;
    color: #1e293b;
    margin-bottom: 5px;
}

.patient-info p {
    font-size: 16px;
    color: #64748b;
    margin: 0;
}

.treatment-type p {
    font-size: 14px;
    color: #2563eb;
    font-weight: 600;
    margin: 10px 0 0;
    padding-top: 10px;
    border-top: 1px solid #e2e8f0;
}

.view-more {
    grid-column: span 2;
    text-align: center;
    margin-top: 10px;
}

.patient-video {
    flex: 1;
    background: #f1f5f9;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-placeholder {
    text-align: center;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-placeholder:hover {
    color: #2563eb;
}

.video-placeholder i {
    font-size: 64px;
    color: #94a3b8;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.video-placeholder:hover i {
    color: #2563eb;
    transform: scale(1.1);
}

.video-placeholder p {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

/* Responsive styles */
@media (max-width: 992px) {
    .patient-speaks-content {
        flex-direction: column;
    }
    
    .patient-testimonials {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .view-more {
        grid-column: span 3;
    }
}

@media (max-width: 768px) {
    .patient-speaks {
        padding: 60px 0;
    }
    
    .patient-testimonials {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .view-more {
        grid-column: span 2;
    }
    
    .patient-speaks .section-header h2 {
        font-size: 28px;
    }
    
    .patient-speaks .section-header p {
        font-size: 16px;
    }
    
    .modal-content {
        padding: 25px 20px;
        width: 95%;
        max-width: none;
        margin: 0 10px;
    }
    
    .modal-content h2 {
        font-size: 24px;
    }
    
    .modal-instructions {
        font-size: 15px;
        margin: 12px 0 25px;
    }
    
    .modal-buttons .btn {
        padding: 12px;
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .patient-testimonials {
        grid-template-columns: 1fr;
    }
    
    .view-more {
        grid-column: span 1;
    }
    
    .testimonial-card {
        padding: 15px;
    }
    
    .patient-info h3 {
        font-size: 18px;
    }
    
    .patient-video {
        min-height: 300px;
    }
}

/* Hide doctor-patient image on mobile devices */
@media (max-width: 768px) {
    .why-image {
        display: none;
    }
    
    .why-grid {
        grid-template-columns: 1fr; /* Make cards full width when image is hidden */
    }
    
    .why-cards {
        grid-template-columns: 1fr; /* Stack cards vertically on mobile */
        gap: 15px;
    }
}

/* Hospitals Near Me Modal */
.hospitals-modal {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

/* Floating WhatsApp Button */
.floating-whatsapp-btn {
    position: fixed;
    bottom: 90px;
    right: 20px;
    background: #25D366; /* WhatsApp green */
    color: white;
    border-radius: 50px;
    padding: 15px 20px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 10000; /* Increased z-index to ensure it's above other elements including chatbots */
    transition: all 0.3s ease;
    font-weight: 600;
}

.floating-whatsapp-btn:hover {
    background: #128C7E; /* Darker WhatsApp green */
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.floating-whatsapp-btn i {
    font-size: 24px;
}

/* Footer Styles */
.footer1 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 50px 0 25px;
    position: relative;
    width: 100%;
    margin: 0;
    border-radius: 0;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 35px;
    margin-bottom: 35px;
}

.footer-left {
    flex: 1;
    min-width: 250px;
}

.footer-about {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-about, 
.footer-links {
    display: flex;
    flex-direction: column;
}

.footer-logo-img {
    max-width: 140px;
    height: auto;
    margin-bottom: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.footer-description {
    margin-bottom: 25px;
    line-height: 1.7;
    font-size: 15px;
    max-width: 500px;
    opacity: 0.9;
}

.footer-right {
    flex: 2;
    min-width: 300px;
}

.footer-links-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: flex-end;
}

.footer-links {
    flex: 1;
    min-width: 150px;
}

.footer-links h4 {
    color: #ffffff;
    margin: 0 0 15px 0;
    font-size: 18px;
    font-weight: 700;
    display: block;
    position: relative;
    padding-bottom: 8px;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: #ffd700;
    border-radius: 2px;
}

.footer-links ul {
    list-style: none;
    display: block;
    margin: 0;
    padding: 0;
}

.footer-links ul li {
    margin: 0 0 12px 0;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 15px;
    display: inline-block;
    padding: 5px 0;
    position: relative;
}

.footer-links ul li a:hover {
    color: #ffd700;
    transform: translateX(5px);
}

.footer-links ul li a::before {
    content: '»';
    margin-right: 8px;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-links ul li a:hover::before {
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: #ffffff;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 16px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.social-links a:hover {
    background: #ffd700;
    color: #764ba2;
    transform: translateY(-5px) rotate(10deg);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 25px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    font-weight: 500;
    padding: 5px 10px;
    border-radius: 4px;
}

.footer-bottom a:hover {
    color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
}

/* Responsive styles for very small screens */
@media (max-width: 320px) {
    .floating-whatsapp-btn {
        padding: 8px 10px;
        font-size: 11px;
        bottom: 90px;
        right: 10px;
        z-index: 10000; /* Ensure visibility on very small screens */
    }
    
    .floating-whatsapp-btn i {
        font-size: 16px;
    }
    
    .floating-whatsapp-btn span {
        display: none; /* Hide text on very small screens */
    }
    
    .floating-whatsapp-btn i {
        margin-right: 0;
    }
}

/* Menu toggle button */
.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: #cbd5e1; /* Light gray */
    transition: all 0.3s ease;
}

.menu-toggle:hover {
    color: #ffffff; /* White on hover */
}

/* Mobile auth buttons - hidden by default */
.mobile-auth {
    display: none;
}

/* Top Contact Section */
.top-contact-section {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    padding: 10px 0;
  
    font-size: 14px;
    z-index: 1001; /* Higher than header */
}

.top-contact-section .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-left,
.contact-right {
    display: flex;
    align-items: center;
}

.contact-email {
    color: #495057;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

.contact-email:hover {
    color: #2563eb;
}

.contact-email i {
    margin-right: 8px;
    color: #2563eb;
}

.social-icon {
    color: #495057;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    margin-left: 15px;
    transition: all 0.3s ease;
    background-color: #e9ecef;
}

.social-icon:hover {
    background-color: #2563eb;
    color: white;
    transform: translateY(-2px);
}

.social-icon i {
    font-size: 14px;
}



/* Hero Section */
.hero {
    padding: 100px 0 70px;
    background: linear-gradient(135deg, #dbeafe 0%, #eff6ff 100%);
    position: relative;
    overflow: hidden;
}

/* Adjust hero padding to account for top contact section */
@media (max-width: 768px) {
    .hero {
        padding-top: 120px; /* Add extra padding for top contact section on mobile */
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.1);
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-content h1 {
    font-size: 36px;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #1e293b;
}

.hero-content p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #64748b;
}

.hero-features {
    margin-bottom: 25px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-weight: 500;
    color: #1e293b;
}

.feature-item i {
    color: #22c55e;
    margin-right: 8px;
    font-size: 16px;
}

.hero-sidebar {
    flex: 1;
    max-width: 687px;
   
    
    position: relative;
    overflow: visible;
        margin-right: -423px;
}

/* Video popup modal styles */
.video-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}

.video-modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.video-modal-content video {
    width: 100%;
    height: auto;
    max-width: 800px;
    max-height: 600px;
}

.close-video {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
}

.close-video:hover {
    color: #ccc;
}

/* Buttons container */
.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.hero-buttons .btn-primary {
    background-color: #007BFF;
    color: white;
}

.hero-buttons .btn-primary:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

.hero-buttons .btn-outline {
    background-color: transparent;
    color: #007BFF;
    border: 2px solid #007BFF;
}

.hero-buttons .btn-outline:hover {
    background-color: #007BFF;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }
    
    /* Hero section responsive adjustments */
    .hero .container {
        flex-direction: column;
        gap: 30px;
    }
    
    .hero-content {
        max-width: 100%;
        text-align: center;
        padding: 0 15px;
    }
    
    .hero-content p {
        text-align: center;
    }
    
    .hero-sidebar {
        max-width: 100%;
        margin-right: 0;
        display: flex;
        justify-content: center;
    }
    
    .hero-sidebar img {
        max-width: 80%;
        height: auto;
        object-fit: contain;
    }
    
    /* Responsive styles for top contact section */
    .top-contact-section .container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .contact-left,
    .contact-right {
        justify-content: center;
    }
    
    .social-icon {
        margin: 0 8px;
    }
    
    /* Hide top contact section on mobile devices */
    .top-contact-section {
        display: none;
    }
    
    /* Adjust header position for mobile */
    .header {
        top: 0; /* Adjusted since top contact section is hidden */
    }
}

.hero-sidebar::before {
    display: none;
}

.hero-sidebar::after {
    display: none;
}

.hero-sidebar h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #1e293b;
    text-align: center;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.hero-sidebar h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: #2563eb;
}

.hero-stats-simple {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.stat-simple {
    display: flex;
    align-items: center;
    padding: 12px;
    border-radius: 8px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    transition: all 0.2s ease;
}

.stat-simple:hover {
    background: #f1f5f9;
    transform: translateX(5px);
}

.stat-simple-img {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    overflow: hidden;
    margin-right: 15px;
    flex-shrink: 0;
}

.stat-simple-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stat-simple-content {
    flex: 1;
    min-width: 0; /* Prevents flex item overflow */
}

.stat-simple-value {
    font-size: 24px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.stat-simple-label {
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.stat-card {
    display: none;
}

.stat-icon {
    display: none;
}

.network-description {
    display: none;
}

.stat-image {
    display: none;
}

.stat-value {
    display: none;
}

.stat-label {
    display: none;
}

.quick-access {
    margin-top: 20px;
}

.quick-access .btn {
    display: block;
    width: 100%;
    margin-bottom: 10px;
}

.quick-access .btn:last-child {
    margin-bottom: 0;
}

/* Sections */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 36px;
    color: #1e293b;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 18px;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.modal-instructions strong {
    color: #2563eb;
}

/* Patient Speaks Section */
.patient-speaks {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.patient-speaks .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.patient-speaks .section-header h2 {
    font-size: 36px;
    color: #1e293b;
    margin-bottom: 15px;
}

.patient-speaks .section-header p {
    font-size: 18px;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
}

.patient-speaks-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.patient-testimonials {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.testimonial-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}



.patient-info h3 {
    font-size: 20px;
    color: #1e293b;
    margin-bottom: 5px;
}

.patient-info p {
    font-size: 16px;
    color: #64748b;
    margin: 0;
}

.treatment-type p {
    font-size: 14px;
    color: #2563eb;
    font-weight: 600;
    margin: 10px 0 0;
    padding-top: 10px;
    border-top: 1px solid #e2e8f0;
}

.view-more {
    grid-column: span 2;
    text-align: center;
    margin-top: 10px;
}

.patient-video {
    flex: 1;
    background: #f1f5f9;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-placeholder {
    text-align: center;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-placeholder:hover {
    color: #2563eb;
}

.video-placeholder i {
    font-size: 64px;
    color: #94a3b8;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.video-placeholder:hover i {
    color: #2563eb;
    transform: scale(1.1);
}

.video-placeholder p {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

/* Responsive styles */
@media (max-width: 992px) {
    .patient-speaks-content {
        flex-direction: column;
    }
    
    .patient-testimonials {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .view-more {
        grid-column: span 3;
    }
}

@media (max-width: 768px) {
    .patient-speaks {
        padding: 60px 0;
    }
    
    .patient-testimonials {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .view-more {
        grid-column: span 2;
    }
    
    .patient-speaks .section-header h2 {
        font-size: 28px;
    }
    
    .patient-speaks .section-header p {
        font-size: 16px;
    }
    
    .modal-content {
        padding: 25px 20px;
        width: 95%;
        max-width: none;
        margin: 0 10px;
    }
    
    .modal-content h2 {
        font-size: 24px;
    }
    
    .modal-instructions {
        font-size: 15px;
        margin: 12px 0 25px;
    }
    
    .modal-buttons .btn {
        padding: 12px;
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .patient-testimonials {
        grid-template-columns: 1fr;
    }
    
    .view-more {
        grid-column: span 1;
    }
    
    .testimonial-card {
        padding: 15px;
    }
    
    .patient-info h3 {
        font-size: 18px;
    }
    
    .patient-video {
        min-height: 300px;
    }
}

/* Hide doctor-patient image on mobile devices */
@media (max-width: 768px) {
    .why-image {
        display: none;
    }
    
    .why-grid {
        grid-template-columns: 1fr; /* Make cards full width when image is hidden */
    }
    
    .why-cards {
        grid-template-columns: 1fr; /* Stack cards vertically on mobile */
        gap: 15px;
    }
}

.patient-video-element {
    width: 100%;
    height: 100%;
    max-height: 300px;
    object-fit: cover;
    border-radius: 12px;
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #3b82f6);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: #dbeafe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
    color: #2563eb;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: #2563eb;
    color: white;
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1e293b;
}

.feature-card p {
    color: #64748b;
    margin-bottom: 20px;
    line-height: 1.6;
}

.feature-meta {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.feature-tag {
    background: #eff6ff;
    color: #2563eb;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ========================================
   PATIENT FEATURES SECTION - MODERN DESIGN
   ======================================== */

.patient-features {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    overflow: hidden;
}

/* Animated Background */
.patient-features-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    display: none;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 15%;
    animation-delay: 5s;
}

.shape-3 {
    width: 250px;
    height: 250px;
    bottom: 20%;
    left: 50%;
    animation-delay: 10s;
}


/* Section Header */
.patient-features .container {
    position: relative;
    z-index: 1;
}

.patient-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border-radius: 30px;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.25);
}

.patient-header h2 {
    color: #0f172a;
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 800;
    text-shadow: none;
    animation: fadeInUp 0.8s ease;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.patient-header p {
    color: #64748b;
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Features Grid */
.patient-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

/* Feature Card */
.patient-feature-card {
    position: relative;
    background: #ffffff;
    border-radius: 20px;
    padding: 32px 28px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    border: 2px solid #f1f5f9;
    overflow: hidden;
    animation: slideUp 0.6s ease forwards;
    opacity: 0;
    transition: all 0.3s ease;
}

.patient-feature-card[data-delay="100"] {
    animation-delay: 0.1s;
}

.patient-feature-card[data-delay="200"] {
    animation-delay: 0.2s;
}

.patient-feature-card[data-delay="300"] {
    animation-delay: 0.3s;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.card-glow {
    display: none;
}


.feature-number {
    display: none;
}

.feature-icon-wrapper {
    position: relative;
    width: 65px;
    height: 65px;
    margin-bottom: 20px;
}

.feature-icon-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border-radius: 14px;
}

.feature-icon-wrapper i {
    position: relative;
    z-index: 1;
    font-size: 30px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

/* Features Section */

.patient-feature-card h3 {
    font-size: 20px;
    color: #0f172a;
    margin-bottom: 12px;
    font-weight: 700;
    line-height: 1.4;
}

.patient-feature-card p {
    color: #6b7280;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.feature-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}

.feature-stats span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #6366f1;
    background: linear-gradient(135deg, #ede9fe 0%, #ddd6fe 100%);
    padding: 7px 14px;
    border-radius: 20px;
    font-weight: 600;
    border: 1px solid #e9d5ff;
}

.feature-stats i {
    font-size: 12px;
}

.feature-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #6366f1;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
}

.feature-link i {
    font-size: 14px;
}

/* Modern CTA Section */
.patient-cta-modern {
    margin-top: 80px;
}

.cta-content {
    background: #ffffff;
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.15);
    border: 2px solid #e9d5ff;
    position: relative;
    overflow: hidden;
}

.cta-content::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.03) 0%, transparent 70%);
    animation: pulse 4s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.cta-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    animation: bounce 2s infinite;
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.3);
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.cta-icon i {
    font-size: 36px;
    color: #fff;
}

.cta-content h3 {
    font-size: 36px;
    color: #1e293b;
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
}

.cta-content p {
    font-size: 18px;
    color: #64748b;
    margin-bottom: 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.cta-content strong {
    color: #6366f1;
    font-weight: 700;
}

.cta-buttons-modern {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    position: relative;
}

.btn-modern {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-modern-primary {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: #fff;
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.3);
}

.btn-modern-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4);
}

.btn-modern-outline {
    background: transparent;
    color: #6366f1;
    border-color: #6366f1;
}

.btn-modern-outline:hover {
    background: #6366f1;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.3);
}

.cta-features {
    display: flex;
    justify-content: center;
}

.services .section-header p {
  font-size: 18px;
  color: #7f8c8d;
  max-width: 700px;
  margin: 20px auto 0;
}

/* Logo Scrolling Section */
.logo-scroll-section {
  margin: 40px 0;
  overflow: hidden;
  position: relative;
  padding: 20px 0;
}

.logo-scroll-container {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.logo-track {
  display: flex;
  width: calc(200px * 12); /* 12 logos total (6 original + 6 duplicates) */
  animation: scroll 20s linear infinite;
}

.logo-item {
  min-width: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
}

.logo-item img {
  max-width: 150px;
  max-height: 80px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.logo-item img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.1);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%); /* Move by 50% to show the duplicate set */
  }
}

/* Pause animation on hover */
.logo-scroll-container:hover .logo-track {
  animation-play-state: paused;
}

/* Services Grid */
.services-grid {
    gap: 30px;
    flex-wrap: wrap;
    position: relative;
}

.cta-features span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #64748b;
    font-size: 14px;
    font-weight: 600;
}

.cta-features i {
    color: #22c55e;
    font-size: 16px;
}

/* Legacy Support */
.patient-cta {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
}

.patient-cta h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #1e293b;
}

.patient-cta p {
    font-size: 18px;
    color: #64748b;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Services Section */
.services {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.services::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  z-index: 0;
}

.services .container {
  position: relative;
  z-index: 1;
}

.services .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.services .section-header h2 {
  font-size: 36px;
  color: #2c3e50;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.services .section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #3498db, #2c3e50);
  border-radius: 3px;
}

.services .section-header p {
  font-size: 18px;
  color: #7f8c8d;
  max-width: 700px;
  margin: 20px auto 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: #ffffff;
      border-radius: 63px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: none;
  z-index: 1;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.service-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-card:hover::before {
  opacity: 0.05;
}

.service-card .feature-icon {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 36px;
  color: #ffffff;
  transition: all 0.4s ease;
  box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
}

.service-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 25px rgba(52, 152, 219, 0.6);
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #2c3e50;
  font-weight: 700;
  transition: color 0.3s ease;
}

.service-card:hover h3 {
  color: #3498db;
}

.service-card p {
  color: #7f8c8d;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 25px;
}

.service-card .feature-meta {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.service-card .feature-tag {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  color: #ffffff;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 3px 10px rgba(52, 152, 219, 0.3);
}

.service-card .btn {
  margin-top: 15px;
  padding: 10px 25px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  background: transparent;
  color: #3498db;
  border: 2px solid #3498db;
  display: inline-block;
}

.service-card .btn:hover {
  background: #3498db;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
}

/* Responsive adjustments for Services section */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
  }
  
  .service-card {
    padding: 35px 25px;
  }
  
  .service-card .feature-icon {
    width: 80px;
    height: 80px;
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .services {
    padding: 70px 0;
  }
  
  .services .section-header h2 {
    font-size: 30px;
  }
  
  .services .section-header p {
    font-size: 16px;
  }
  
  /* Logo Scrolling Section - Tablet */
  .logo-item {
    min-width: 150px;
  }
  
  .logo-item img {
    max-width: 120px;
    max-height: 60px;
  }
  
  .logo-track {
    width: calc(150px * 12);
  }
  
  @keyframes scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .service-card {
    padding: 30px 20px;
  }
  
  .service-card .feature-icon {
    width: 70px;
    height: 70px;
    font-size: 28px;
    margin-bottom: 20px;
  }
  
  .service-card h3 {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .services {
    padding: 60px 0;
  }
  
  .services .section-header h2 {
    font-size: 26px;
  }
  
  /* Logo Scrolling Section - Mobile */
  .logo-item {
    min-width: 120px;
  }
  
  .logo-item img {
    max-width: 100px;
    max-height: 50px;
  }
  
  .logo-track {
    width: calc(120px * 12);
  }
  
  @keyframes scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }
  
  .services-grid {
    gap: 15px;
  }
  
  .service-card {
    padding: 25px 15px;
  }
  
  .service-card .feature-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
  
  .service-card h3 {
    font-size: 18px;
  }
  
  .service-card p {
    font-size: 14px;
  }
}

/* About Section */
.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-image {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.about-image img {
    width: 100%;
    display: block;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1e293b;
}

.about-text h3 {
    font-size: 24px;
    margin: 25px 0 15px;
    color: #1e293b;
}

.about-text p {
    margin-bottom: 20px;
    color: #64748b;
    font-size: 17px;
}

.about-list {
    margin: 15px 0 20px 20px;
}

.about-list li {
    margin-bottom: 10px;
    color: #64748b;
    position: relative;
    padding-left: 25px;
}

.about-list li::before {
    content: '✓';
    color: #22c55e;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 32px;
    color: #2563eb;
    margin-bottom: 5px;
}

.stat-item p {
    color: #64748b;
    font-weight: 500;
}

/* Hospitals Near Me Section */
.hospitals-near-me {
    padding: 80px 0;
    background: #f1f5f9;
}

.hospitals-near-me .section-header {
    text-align: center;
    margin-bottom: 40px;
}

.hospitals-near-me .section-header h2 {
    color: #1e293b;
    margin-bottom: 10px;
    font-size: 32px;
}

.hospitals-near-me .section-header p {
    color: #64748b;
    margin-bottom: 0;
    font-size: 18px;
}

.hospitals-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.medical-problem-layout {
    display: flex;
    gap: 40px;
    align-items: center;
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.medical-problem-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.medical-problem-image img {
    width: 100%;
    height: auto;
    display: block;
}

.medical-problem-form {
    flex: 1;
}

.medical-problem-form h3 {
    color: #1e293b;
    margin-bottom: 15px;
    font-size: 28px;
    text-align: left;
}

.medical-problem-form p {
    color: #64748b;
    margin-bottom: 25px;
    font-size: 16px;
    text-align: left;
}

.medical-problem-input {
    margin: 25px 0;
}

.input-group {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.input-group .form-control {
    flex: 1;
    padding: 15px 20px;
    font-size: 16px;
    border: 2px solid #cbd5e1;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.input-group .form-control:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}

.input-group .btn {
    padding: 15px 25px;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.examples {
    text-align: left;
    margin-top: 8px;
}

.examples small {
    color: #94a3b8;
    font-style: italic;
}

.location-info {
    margin-top: 20px;
    padding: 15px;
    background: #e0f2fe;
    border-radius: 8px;
}

.location-info p {
    margin: 0;
    color: #0c4a6e;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.location-info i {
    color: #0284c7;
}

.hospitals-near-me .section-header h2 {
    color: #1e293b;
    margin-bottom: 10px;
}

.hospitals-near-me .section-header p {
    color: #64748b;
    margin-bottom: 30px;
}

.hospitals-content p {
    margin-bottom: 20px;
    color: #334155;
    font-size: 18px;
}

#find-hospitals-btn {
    padding: 15px 30px;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
}

.modal-content {
   
    padding: 40px;
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.modal-header h2 {
    font-size: 24px;
    color: #1e293b;
}

.modal-header .close-btn {
    font-size: 24px;
    color: #64748b;
    cursor: pointer;
}

.modal-body {
    margin-bottom: 20px;
}

.modal-instructions {
    color: #64748b;
    font-size: 16px;
}

.modal-instructions strong {
    color: #2563eb;
}

/* Patient Speaks Section */
.patient-speaks {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.patient-speaks .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.patient-speaks .section-header h2 {
    font-size: 36px;
    color: #1e293b;
    margin-bottom: 15px;
}

.patient-speaks .section-header p {
    font-size: 18px;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
}

.patient-speaks-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.patient-testimonials {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.testimonial-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}



.patient-info h3 {
    font-size: 20px;
    color: #1e293b;
    margin-bottom: 5px;
}

.patient-info p {
    font-size: 16px;
    color: #64748b;
    margin: 0;
}

.treatment-type p {
    font-size: 14px;
    color: #2563eb;
    font-weight: 600;
    margin: 10px 0 0;
    padding-top: 10px;
    border-top: 1px solid #e2e8f0;
}

.view-more {
    grid-column: span 2;
    text-align: center;
    margin-top: 10px;
}

.patient-video {
    flex: 1;
    background: #f1f5f9;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-placeholder {
    text-align: center;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-placeholder:hover {
    color: #2563eb;
}

.video-placeholder i {
    font-size: 64px;
    color: #94a3b8;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.video-placeholder:hover i {
    color: #2563eb;
    transform: scale(1.1);
}

.video-placeholder p {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

/* Responsive styles */
@media (max-width: 992px) {
    .patient-speaks-content {
        flex-direction: column;
    }
    
    .patient-testimonials {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .view-more {
        grid-column: span 3;
    }
}

@media (max-width: 768px) {
    .patient-speaks {
        padding: 60px 0;
    }
    
    .patient-testimonials {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .view-more {
        grid-column: span 2;
    }
    
    .patient-speaks .section-header h2 {
        font-size: 28px;
    }
    
    .patient-speaks .section-header p {
        font-size: 16px;
    }
    
    .modal-content {
        padding: 25px 20px;
        width: 95%;
        max-width: none;
        margin: 0 10px;
    }
    
    .modal-content h2 {
        font-size: 24px;
    }
    
    .modal-instructions {
        font-size: 15px;
        margin: 12px 0 25px;
    }
    
    .modal-buttons .btn {
        padding: 12px;
        font-size: 15px;
    }
    
    /* Hospitals Near Me Section - Mobile */
    .medical-problem-layout {
        flex-direction: column;
        gap: 25px;
        padding: 25px 20px;
    }
    
    .medical-problem-image {
        width: 100%;
    }
    
    .medical-problem-form {
        width: 100%;
    }
    
    .medical-problem-form h3 {
        font-size: 24px;
        text-align: center;
    }
    
    .medical-problem-form p {
        text-align: center;
    }
    
    .input-group {
        flex-direction: column;
    }
    
    .input-group .form-control {
        margin-bottom: 10px;
    }
    
    .examples {
        text-align: center;
    }
    
    .location-info {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .patient-testimonials {
        grid-template-columns: 1fr;
    }
    
    .view-more {
        grid-column: span 1;
    }
    
    .testimonial-card {
        padding: 15px;
    }
    
    .patient-info h3 {
        font-size: 18px;
    }
    
    .patient-video {
        min-height: 300px;
    }
}

/* Hide doctor-patient image on mobile devices */
@media (max-width: 768px) {
    .why-image {
        display: none;
    }
    
    .why-grid {
        grid-template-columns: 1fr; /* Make cards full width when image is hidden */
    }
    
    .why-cards {
        grid-template-columns: 1fr; /* Stack cards vertically on mobile */
        gap: 15px;
    }
}

/* Patient Speaks Section */
.patient-speaks {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.patient-speaks .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.patient-speaks .section-header h2 {
    font-size: 36px;
    color: #1e293b;
    margin-bottom: 15px;
}

.patient-speaks .section-header p {
    font-size: 18px;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
}

.patient-speaks-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.patient-testimonials {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.testimonial-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}



.patient-info h3 {
    font-size: 20px;
    color: #1e293b;
    margin-bottom: 5px;
}

.patient-info p {
    font-size: 16px;
    color: #64748b;
    margin: 0;
}

.treatment-type p {
    font-size: 14px;
    color: #2563eb;
    font-weight: 600;
    margin: 10px 0 0;
    padding-top: 10px;
    border-top: 1px solid #e2e8f0;
}

.view-more {
    grid-column: span 2;
    text-align: center;
    margin-top: 10px;
}

.patient-video {
    flex: 1;
    background: #f1f5f9;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-placeholder {
    text-align: center;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-placeholder:hover {
    color: #2563eb;
}

.video-placeholder i {
    font-size: 64px;
    color: #94a3b8;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.video-placeholder:hover i {
    color: #2563eb;
    transform: scale(1.1);
}

.video-placeholder p {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

/* Responsive styles */
@media (max-width: 992px) {
    .patient-speaks-content {
        flex-direction: column;
    }
    
    .patient-testimonials {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .view-more {
        grid-column: span 3;
    }
}

@media (max-width: 768px) {
    .patient-speaks {
        padding: 60px 0;
    }
    
    .patient-testimonials {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .view-more {
        grid-column: span 2;
    }
    
    .patient-speaks .section-header h2 {
        font-size: 28px;
    }
    
    .patient-speaks .section-header p {
        font-size: 16px;
    }
    
    .modal-content {
        padding: 25px 20px;
        width: 95%;
        max-width: none;
        margin: 0 10px;
    }
    
    .modal-content h2 {
        font-size: 24px;
    }
    
    .modal-instructions {
        font-size: 15px;
        margin: 12px 0 25px;
    }
    
    .modal-buttons .btn {
        padding: 12px;
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .patient-testimonials {
        grid-template-columns: 1fr;
    }
    
    .view-more {
        grid-column: span 1;
    }
    
    .testimonial-card {
        padding: 15px;
    }
    
    .patient-info h3 {
        font-size: 18px;
    }
    
    .patient-video {
        min-height: 300px;
    }
}

/* Hide doctor-patient image on mobile devices */
@media (max-width: 768px) {
    .why-image {
        display: none;
    }
    
    .why-grid {
        grid-template-columns: 1fr; /* Make cards full width when image is hidden */
    }
    
    .why-cards {
        grid-template-columns: 1fr; /* Stack cards vertically on mobile */
        gap: 15px;
    }
}

/* Hospitals Near Me Section */
.hospitals-near-me {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.hospitals-near-me .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.hospitals-near-me .section-header h2 {
    font-size: 36px;
    color: #1e3a8a;
    margin-bottom: 15px;
}

.hospitals-near-me .section-header p {
    font-size: 18px;
    color: #334155;
    max-width: 700px;
    margin: 0 auto;
}

.medical-problem-layout {
    display: flex;
    gap: 40px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.medical-problem-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.medical-problem-image img {
    width: 100%;
    height: auto;
    display: block;
}

.medical-problem-form {
    flex: 1;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.medical-problem-form h3 {
    font-size: 28px;
    color: #1e3a8a;
    margin-bottom: 20px;
}

.medical-problem-form p {
    color: #64748b;
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.6;
}

.medical-problem-input {
    margin-bottom: 25px;
}

.input-group {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.input-group input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.input-group input:focus {
    outline: none;
    border-color: #3b82f6;
}

.input-group button {
    padding: 15px 25px;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.examples {
    color: #94a3b8;
    font-size: 14px;
    margin-bottom: 20px;
}

.location-info {
    background: #eff6ff;
    padding: 15px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.location-info p {
    margin: 0;
    color: #3b82f6;
    font-size: 14px;
}

.location-info i {
    color: #3b82f6;
}

/* Responsive adjustments for Hospitals Near Me section */
@media (max-width: 992px) {
    .medical-problem-layout {
        flex-direction: column;
    }
    
    .medical-problem-image {
        width: 100%;
    }
    
    .input-group {
        flex-direction: column;
    }
    
    .input-group button {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hospitals-near-me {
        padding: 50px 0;
    }
    
    .hospitals-near-me .section-header h2 {
        font-size: 28px;
    }
    
    .medical-problem-form {
        padding: 25px;
    }
    
    .medical-problem-form h3 {
        font-size: 24px;
    }
}

/* Hospitals Near Me Modal */
.hospitals-modal {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
}

.hospitals-modal-content {
    background-color: #fff;
    margin: auto;
    padding: 0;
    border-radius: 15px;
    width: 95%;
    max-width: 1200px;
    max-height: 90vh;
    overflow: hidden;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close-hospitals {
    color: #94a3b8;
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1002;
    transition: color 0.2s;
}

.close-hospitals:hover,
.close-hospitals:focus {
    color: #1e293b;
    text-decoration: none;
    cursor: pointer;
}

.modal-header {
    padding: 25px;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    text-align: center;
}

.modal-header h2 {
    margin: 0;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.modal-subheader {
    margin-top: 10px;
}

.modal-subheader p {
    margin: 0;
    font-size: 18px;
    opacity: 0.9;
}

.modal-body {
    display: flex;
    flex-direction: column;
}

@media (min-width: 992px) {
    .modal-body {
        flex-direction: row;
    }
    
    .hospitals-map {
        width: 65%;
    }
    
    .hospitals-list {
        width: 35%;
    }
}

/* Ensure consistent styling for all screen sizes */
.hospitals-map, .hospitals-list {
    height: 500px;
}

@media (max-width: 991px) {
    .hospitals-map, .hospitals-list {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .hospitals-map, .hospitals-list {
        height: 350px;
    }
}

@media (max-width: 576px) {
    .hospitals-map, .hospitals-list {
        height: 300px;
    }
}

.hospitals-map {
    height: 500px;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
    border-right: 1px solid #e2e8f0;
}

.map-placeholder {
    text-align: center;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.hospital-marker {
    width: 50px;
    height: 50px;
    background: #3b82f6;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-weight: bold;
    font-size: 20px;
    margin: 20px auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.map-placeholder small {
    color: #94a3b8;
    font-size: 14px;
    margin-top: 10px;
    max-width: 80%;
}

.hospitals-list {
    padding: 25px;
    max-height: 500px;
    overflow-y: auto;
    background: #f8fafc;
    border-left: 1px solid #e2e8f0;
}

.hospitals-list h3 {
    margin-top: 0;
    color: #1e293b;
    font-size: 22px;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 15px;
}

.hospitals-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hospitals-list li {
    padding: 20px;
    border-bottom: 1px solid #e2e8f0;
    transition: all 0.3s;
}

.hospitals-list li:hover {
    background-color: #f1f5f9;
    transform: translateX(5px);
}

.hospitals-list li:last-child {
    border-bottom: none;
}

.hospital-item {
    padding: 20px;
    border-bottom: 1px solid #e2e8f0;
    transition: all 0.3s;
    border-radius: 8px;
    margin-bottom: 15px;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.hospital-item:hover {
    background-color: #f1f5f9;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.hospital-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.hospital-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.hospital-header h4 {
    margin: 0;
    font-size: 20px;
    color: #1e3a8a;
}

.relevance-badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.relevance-badge.high {
    background: #dcfce7;
    color: #166534;
}

.relevance-badge.low {
    background: #fef3c7;
    color: #92400e;
}

.hospital-details p {
    margin: 8px 0;
    color: #64748b;
    font-size: 15px;
}

.hospital-details i {
    margin-right: 10px;
    color: #3b82f6;
    width: 20px;
    text-align: center;
}

.modal-footer {
    padding: 25px;
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
}

.modal-instructions {
    padding: 15px 25px;
    background: #eff6ff;
    border-bottom: 1px solid #e2e8f0;
    font-size: 15px;
    color: #334155;
}

.modal-instructions strong {
    color: #3b82f6;
}

.loading, .error, .no-hospitals {
    text-align: center;
    padding: 50px;
    color: #64748b;
    font-size: 18px;
}

.error {
    color: #dc2626;
}

.map-container {
    height: 100%;
    position: relative;
}

.map-header {
    padding: 20px;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
}

.map-header h3 {
    margin: 0 0 5px 0;
    font-size: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.map-header p {
    margin: 0;
    font-size: 16px;
    opacity: 0.9;
}

.map-content {
    height: calc(100% - 70px);
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-marker {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: white;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transform: translate(-50%, -50%);
    z-index: 10;
    transition: all 0.3s;
    cursor: pointer;
}

.map-marker:hover {
    transform: translate(-50%, -50%) scale(1.05);
}

.map-marker.high-relevance {
    border: 3px solid #3b82f6;
}

.map-marker.low-relevance {
    border: 3px solid #94a3b8;
}

.marker-icon {
    width: 30px;
    height: 30px;
    background: #3b82f6;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-weight: bold;
    font-size: 14px;
}

.marker-info {
    display: flex;
    flex-direction: column;
}

.marker-name {
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
}

.marker-distance {
    font-size: 12px;
    color: #64748b;
}

/* Patient Speaks Section */
.patient-speaks {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.patient-speaks .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.patient-speaks .section-header h2 {
    font-size: 36px;
    color: #1e293b;
    margin-bottom: 15px;
}

.patient-speaks .section-header p {
    font-size: 18px;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
}

.patient-speaks-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.patient-testimonials {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.testimonial-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}



.patient-info h3 {
    font-size: 20px;
    color: #1e293b;
    margin-bottom: 5px;
}

.patient-info p {
    font-size: 16px;
    color: #64748b;
    margin: 0;
}

.treatment-type p {
    font-size: 14px;
    color: #2563eb;
    font-weight: 600;
    margin: 10px 0 0;
    padding-top: 10px;
    border-top: 1px solid #e2e8f0;
}

.view-more {
    grid-column: span 2;
    text-align: center;
    margin-top: 10px;
}

.patient-video {
    flex: 1;
    background: #f1f5f9;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-placeholder {
    text-align: center;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-placeholder:hover {
    color: #2563eb;
}

.video-placeholder i {
    font-size: 64px;
    color: #94a3b8;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.video-placeholder:hover i {
    color: #2563eb;
    transform: scale(1.1);
}

.video-placeholder p {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

/* Responsive styles */
@media (max-width: 992px) {
    .patient-speaks-content {
        flex-direction: column;
    }
    
    .patient-testimonials {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .view-more {
        grid-column: span 3;
    }
}

@media (max-width: 768px) {
    .patient-speaks {
        padding: 60px 0;
    }
    
    .patient-testimonials {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .view-more {
        grid-column: span 2;
    }
    
    .patient-speaks .section-header h2 {
        font-size: 28px;
    }
    
    .patient-speaks .section-header p {
        font-size: 16px;
    }
    
    .modal-content {
        padding: 25px 20px;
        width: 95%;
        max-width: none;
        margin: 0 10px;
    }
    
    .modal-content h2 {
        font-size: 24px;
    }
    
    .modal-instructions {
        font-size: 15px;
        margin: 12px 0 25px;
    }
    
    .modal-buttons .btn {
        padding: 12px;
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .patient-testimonials {
        grid-template-columns: 1fr;
    }
    
    .view-more {
        grid-column: span 1;
    }
    
    .testimonial-card {
        padding: 15px;
    }
    
    .patient-info h3 {
        font-size: 18px;
    }
    
    .patient-video {
        min-height: 300px;
    }
}

/* Hide doctor-patient image on mobile devices */
@media (max-width: 768px) {
    .why-image {
        display: none;
    }
    
    .why-grid {
        grid-template-columns: 1fr; /* Make cards full width when image is hidden */
    }
    
    .why-cards {
        grid-template-columns: 1fr; /* Stack cards vertically on mobile */
        gap: 15px;
    }
}

.patient-video-element {
    width: 100%;
    height: 100%;
    max-height: 300px;
    object-fit: cover;
    border-radius: 12px;
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #3b82f6);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: #dbeafe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
    color: #2563eb;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: #2563eb;
    color: white;
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1e293b;
}

.feature-card p {
    color: #64748b;
    margin-bottom: 20px;
    line-height: 1.6;
}

.feature-meta {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.feature-tag {
    background: #eff6ff;
    color: #2563eb;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Contact Section */
.contact {
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.03) 0%, transparent 70%);
  z-index: 0;
}

.contact .container {
  position: relative;
  z-index: 1;
}

.contact-wrapper {
    display: flex;
    gap: 50px;
    margin-top: 40px;
}

.contact-info {
    flex: 1;
}

.info-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 30px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #dbeafe 0%, #93c5fd 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #2563eb;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.info-item:hover .info-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, #93c5fd 0%, #2563eb 100%);
    color: white;
}

.info-text h3 {
    margin-bottom: 5px;
    font-size: 20px;
    color: #1e293b;
    font-weight: 600;
}

.info-text p {
    color: #64748b;
    margin: 0;
    line-height: 1.6;
}

.contact-form {
    flex: 1;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease 0.2s forwards;
    opacity: 0;
}

.contact-form:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #f8fafc;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
    background: white;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #94a3b8;
}

/* Footer */
.footer1 {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: white;
    padding: 70px 0 0;
    position: relative;
    overflow: hidden;
}

.footer1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #3b82f6, #60a5fa);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.footer-about {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    margin-bottom: 10px;
}

.footer-logo-img {
    max-width: 250px;
    height: auto;
}

.footer-description {
    color: #cbd5e1;
    margin-bottom: 0;
    line-height: 1.7;
    font-size: 16px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #334155;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
}

.social-links a:nth-child(1) {
    animation-delay: 0.1s;
}

.social-links a:nth-child(2) {
    animation-delay: 0.2s;
}

.social-links a:nth-child(3) {
    animation-delay: 0.3s;
}

.social-links a:nth-child(4) {
    animation-delay: 0.4s;
}

.social-links a:hover {
    background: #2563eb;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.4);
}

.footer-social {
    margin-top: 10px;
}

.footer-links h4 {
    font-size: 20px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    color: #f1f5f9;
    animation: slideInLeft 0.5s ease forwards;
    opacity: 0;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #2563eb, #60a5fa);
    border-radius: 2px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: #94a3b8;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
    animation: slideInRight 0.5s ease forwards;
    opacity: 0;
}

.footer-links ul li:nth-child(1) a {
    animation-delay: 0.1s;
}

.footer-links ul li:nth-child(2) a {
    animation-delay: 0.2s;
}

.footer-links ul li:nth-child(3) a {
    animation-delay: 0.3s;
}

.footer-links ul li:nth-child(4) a {
    animation-delay: 0.4s;
}

.footer-links ul li:nth-child(5) a {
    animation-delay: 0.5s;
}

.footer-links ul li a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #2563eb;
    transition: width 0.3s ease;
}

.footer-links ul li a:hover {
    color: #60a5fa;
    transform: translateX(5px);
}

.footer-links ul li a:hover::before {
    width: 100%;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #334155;
    color: #94a3b8;
    background: rgba(15, 23, 42, 0.7);
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.copyright {
    margin: 0;
    font-size: 14px;
}

.footer-bottom-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.footer-bottom a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-bottom a:hover {
    color: #60a5fa;
    text-decoration: none;
}

/* Responsive Design */
/* Large devices (desktops, 1200px and down) */
@media (max-width: 1200px) {
    .input-group .btn {
        padding: 15px 20px;
        font-size: 15px;
    }
    
    .footer-logo-img {
        max-width: 150px;
    }
}

/* Medium devices (tablets, 992px and down) */
@media (max-width: 992px) {
    .container {
        max-width: 95%;
    }
    
    .hero-content {
        max-width: 50%;
    }
    
    .hero-sidebar {
        max-width: 40%;
    }
}

/* Large devices (desktops, 1200px and up) - Hide doctor section content */
@media (min-width: 1200px) {
    .doctors-section .section-header {
        display: none;
    }
}

/* Medium devices (tablets, 992px and down) */
@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        margin-bottom: 30px;
        max-width: 100%;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-sidebar {
        max-width: 100%;
        margin-left: 0;
    }
    
    .hero-stats {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .about-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .about-image, .about-text {
        flex: none;
        width: 100%;
    }
    
    .contact-wrapper {
        flex-direction: column;
        gap: 30px;
    }
}

/* Small devices (landscape phones, 768px and down) */
@media (max-width: 768px) {
    .input-group {
        flex-direction: column;
    }
    
    .input-group .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hospitals-near-me .section-header h2 {
        font-size: 28px;
    }
    
    .hospitals-near-me .section-header p {
        font-size: 16px;
    }
    
    .medical-problem-form h3 {
        font-size: 22px;
    }
    
    .medical-problem-input {
        max-width: 100%;
        padding: 0 15px;
    }
    
    .medical-problem-layout {
        flex-direction: column;
        padding: 25px;
    }
    
    .medical-problem-image {
        width: 100%;
        margin-bottom: 25px;
    }
}

/* Extra small devices (phones, 576px and down) */
@media (max-width: 576px) {
    .menu-toggle {
        display: block;
    }
    
    .navbar {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 80%;
        height: calc(100vh - 80px);
        background: #1e293b; /* Dark slate background */
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
        transition: all 0.3s ease;
        z-index: 1000;
        border-right: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .navbar.active {
        left: 0;
    }
    
    .navbar ul {
        flex-direction: column;
        padding: 30px;
        gap: 20px;
    }
    
    .navbar a {
        color: #cbd5e1; /* Light gray text */
        font-size: 18px;
        padding: 10px 0;
    }
    
    .navbar a:hover {
        color: #ffffff; /* White on hover */
    }
    
    .navbar a::after {
        background: #60a5fa; /* Light blue accent */
    }
    
    /* Show mobile auth buttons in the navbar on small screens */
    .mobile-auth {
        display: block;
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .mobile-auth .btn,
    .mobile-auth button {
        width: 100%;
        text-align: center;
        display: block;
        margin-bottom: 15px;
        padding: 12px 20px;
        border-radius: 30px; /* Pill-shaped buttons */
        font-weight: 600;
        transition: all 0.3s ease;
        border: 2px solid transparent;
    }
    
    .mobile-auth .btn:first-child,
    .mobile-auth button:first-child {
        background: transparent;
        color: #cbd5e1; /* Light gray */
        border-color: rgba(255, 255, 255, 0.2);
    }
    
    .mobile-auth .btn:first-child:hover,
    .mobile-auth button:first-child:hover {
        background: rgba(255, 255, 255, 0.1);
        color: #ffffff;
    }
    
    .mobile-auth .btn:last-child,
    .mobile-auth button:last-child {
        background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%); /* Blue gradient */
        color: white;
        box-shadow: 0 4px 10px rgba(59, 130, 246, 0.3);
        margin-bottom: 0;
    }
    
    .mobile-auth .btn:last-child:hover,
    .mobile-auth button:last-child:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 15px rgba(59, 130, 246, 0.4);
        background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    }
    
    /* Hide desktop auth buttons on small screens */
    .auth-buttons {
        display: none;
    }
    
    .hero {
        padding: 120px 0 80px;
    }
    
    .hero-content h1 {
        font-size: 28px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
    }
    
    section {
        padding: 70px 0;
    }
    
    .section-header h2 {
        font-size: 24px;
    }
    
    /* Extra small device styles for top contact section */
    .top-contact-section {
        display: none;
        font-size: 12px;
        padding: 8px 0;
    }
    
    .social-icon {
        width: 28px;
        height: 28px;
    
    .stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-newsletter form {
        flex-direction: column;
    }
    
    .footer-newsletter button {
        width: 100%;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stat-card {
        padding: 15px 10px;
    }
    
    .stat-value {
        font-size: 24px;
    }
    
    .stat-label {
        font-size: 12px;
    }
    
    .features-grid,
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .feature-card,
    .service-card {
        padding: 20px;
    }
    
    .feature-card .icon,
    .service-card .service-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .patient-cta {
        padding: 30px 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
        margin-left: 10px;
    }
}
    
    .social-icon i {
        font-size: 12px;
    }
    
    .contact-email i {
        margin-right: 5px;
    }
    
    .section-header p {
        font-size: 16px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .hero-features {
        margin-bottom: 20px;
    }
    
    .feature-item {
        font-size: 14px;
    }
    
    .feature-item i {
        font-size: 14px;
    }
    
    .stat-value {
        font-size: 22px;
    }
    
    .features-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-card h3,
    .service-card h3 {
        font-size: 20px;
    }
    
    .about-text h2,
    .about-text h3 {
        font-size: 28px;
    }
    
    .stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .stat-item h3 {
        font-size: 28px;
    }
    
    .contact-form {
        padding: 25px;
    }
    
    .info-item {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .info-icon {
        margin: 0 auto;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .footer-bottom {
        font-size: 14px;
        padding: 15px 0;
    }
    
    .social-links {
        justify-content: center;
    }
    
    /* Our Network section specific improvements - Make it larger and more prominent */
    .hero-sidebar {
        padding: 25px;
        margin-top: 30px;
        border-radius: 15px;
      
    }
    
    .hero-sidebar h3 {
        font-size: 24px;
        margin-bottom: 25px;
        padding-bottom: 15px;
    }
    
    .hero-stats-simple {
        gap: 20px;
    }
    
    .stat-simple {
        padding: 15px;
        border-radius: 12px;
    }
    
    .stat-simple-img {
        width: 60px;
        height: 60px;
        margin-right: 15px;
        border-radius: 10px;
    }
    
    .stat-simple-value {
        font-size: 28px;
        margin-bottom: 0;
    }
    
    .stat-simple-label {
        font-size: 16px;
    }
    
    .hero-sidebar img {
        max-width: 90%;
    }

/* Extra small devices (phones, 480px and down) */
@media (max-width: 480px) {
    .hero-sidebar {
        padding: 15px;
    }
    
    .hero-sidebar h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .hero-stats-simple {
        gap: 10px;
    }
    
    .stat-simple {
        padding: 8px;
    }
    
    .stat-simple-img {
        width: 35px;
        height: 35px;
        margin-right: 8px;
    }
    
    .stat-simple-value {
        font-size: 18px;
        margin-bottom: 0;
    }
    
    .stat-simple-label {
        font-size: 11px;
    }
    
    /* Extra small device styles for top contact section */
    .top-contact-section {
        display: none;
        padding: 6px 0;
    }
    
    .contact-email span {
        display: none; /* Hide email text on very small screens */
    }
    
    .contact-email i {
        margin-right: 0;
    }
    
    .social-icon {
        width: 24px;
        height: 24px;
        margin-left: 8px;
    }
}

/* Very small devices (small phones, 320px and down) */
@media (max-width: 320px) {
    .container {
        width: 95%;
        padding: 0 10px;
    }
    
    .header {
        padding: 10px 0;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-content h1 {
        font-size: 22px;
    }
    
    .hero-content p {
        font-size: 14px;
    }
    
    .feature-item {
        font-size: 13px;
    }
    
    .hero-buttons {
        gap: 10px;
    }
    
    .btn {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .section-header h2 {
        font-size: 20px;
    }
    
    .section-header p {
        font-size: 15px;
    }
    
    .feature-card,
    .service-card {
        padding: 12px;
    }
    
    .feature-card h3,
    .service-card h3 {
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .feature-card p,
    .service-card p {
        font-size: 14px;
    }
    
    .patient-cta h3 {
        font-size: 24px;
    }
    
    .patient-cta p {
        font-size: 16px;
    }
    
    .about-text h2 {
        font-size: 22px;
    }
    
    .hospitals-content {
        padding: 0 10px;
    }
    
    .medical-problem-layout {
        padding: 15px;
    }
    
    .medical-problem-form h3 {
        font-size: 18px;
    }
    
    .input-group .btn {
        padding: 10px 15px;
        font-size: 14px;
    }
    
    .input-group .form-control {
        padding: 12px 15px;
        font-size: 14px;
    }
}

/* Very small devices (small phones, 320px and down) */
@media (max-width: 320px) {
    .container {
        width: 95%;
        padding: 0 10px;
    }
    
    .header {
        padding: 10px 0;
    }
}

/* Small devices (portrait tablets and large phones, 576px and up) */
@media (max-width: 576px) {
    .patient-testimonials {
        grid-template-columns: 1fr;
    }
    
    .view-more {
        grid-column: span 1;
    }
    
    .testimonial-card {
        padding: 15px;
    }
    
    .patient-info h3 {
        font-size: 18px;
    }
    
    .patient-video {
        min-height: 300px;
    }
    
    /* Hospitals Near Me Section - Small Mobile */
    .medical-problem-layout {
        padding: 20px 15px;
        gap: 20px;
    }
    
    .medical-problem-form h3 {
        font-size: 22px;
    }
    
    .input-group .form-control {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .input-group .btn {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .examples small {
        font-size: 12px;
    }
    
    .location-info p {
        font-size: 12px;
    }
}

/* Medium devices (landscape tablets, 768px and up) */
@media (min-width: 768px) {
    .container {
        width: 90%;
        padding: 0 15px;
    }
    
    .header {
        padding: 15px 0;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    .container {
        width: 85%;
        padding: 0 20px;
    }
    
    .header {
        padding: 20px 0;
    }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .container {
        width: 80%;
        padding: 0 25px;
    }
    
    .header {
        padding: 25px 0;
    }
}

/* Extra extra large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {
    .container {
        width: 75%;
        padding: 0 30px;
    }
    
    .header {
        padding: 21px 0;
    }
}

    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-content h1 {
        font-size: 22px;
    }
    
    .hero-content p {
        font-size: 14px;
    }
    
    .feature-item {
        font-size: 13px;
    }
    
    .hero-buttons {
        gap: 10px;
    }
    
    .btn {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .section-header h2 {
        font-size: 20px;
    }
    
    .section-header p {
        font-size: 15px;
    }
    
    .feature-card,
    .service-card {
        padding: 12px;
    }
    
    .feature-card h3,
    .service-card h3 {
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .feature-card p,
    .service-card p {
        font-size: 14px;
    }
    
    .patient-cta h3 {
        font-size: 24px;
    }
    
    .patient-cta p {
        font-size: 16px;
    }
    
    .about-text h2 {
        font-size: 22px;
    }
    
    .hospitals-content {
        padding: 0 10px;
    }
    
    .medical-problem-layout {
        padding: 15px;
    }
    
    .medical-problem-form h3 {
        font-size: 18px;
    }
    
    .input-group .btn {
        padding: 10px 15px;
        font-size: 14px;
    }
    
    .input-group .form-control {
        padding: 12px 15px;
        font-size: 14px;
    }


/* Extra small devices (small phones, 320px and down) */
@media (max-width: 320px) {
    .about-text h3 {
        font-size: 18px;
    }
    
    .about-text p {
        font-size: 15px;
    }
    
    .stat-item h3 {
        font-size: 20px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 12px;
        font-size: 14px;
    }
    
    .footer-links h4 {
        font-size: 18px;
    }
    
    /* Our Network section specific improvements for very small screens - Keep it prominent */
    .hero-sidebar {
        padding: 20px;
        margin-top: 25px;
        border-radius: 12px;
    }
    
    .hero-sidebar h3 {
        font-size: 22px;
        margin-bottom: 20px;
        padding-bottom: 12px;
    }
    
    .hero-stats-simple {
        gap: 15px;
    }
    
    .stat-simple {
        padding: 12px;
        border-radius: 10px;
    }
    
    .stat-simple-img {
        width: 50px;
        height: 50px;
        margin-right: 12px;
        border-radius: 8px;
    }
    
    .stat-simple-value {
        font-size: 24px;
    }
    
    .stat-simple-label {
        font-size: 14px;
    }
    
    /* Very small device styles for top contact section */
    .top-contact-section {
        display: none;
        font-size: 10px;
        padding: 4px 0;
    }
    
    .social-icon {
        width: 20px;
        height: 20px;
        margin-left: 5px;
    }
    
    .social-icon i {
        font-size: 8px;
    }
}

/* Portrait orientation for mobile devices */
@media (max-width: 768px) and (orientation: portrait) {
    /* Hide top contact section on mobile devices */
    .top-contact-section {
        display: none;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-features {
        text-align: left;
        max-width: 300px;
        margin: 25px auto;
    }
    
    .stat-simple {
        padding: 15px;
    }
    
    .stat-simple-img {
        width: 60px;
        height: 60px;
        margin-right: 15px;
    }
    
    .stat-simple-value {
        font-size: 28px;
    }
    
    .stat-simple-label {
        font-size: 16px;
    }
    
    /* Enhance Our Network section for portrait orientation */
    .hero-sidebar {
        margin-top: 30px;
       
        border-radius: 15px;
      
    }
    
    .hero-sidebar h3 {
        font-size: 26px;
        margin-bottom: 25px;
        padding-bottom: 15px;
    }
    
    .hero-stats-simple {
        gap: 20px;
    }
}

/* Landscape orientation for mobile devices */
@media (max-width: 768px) and (orientation: landscape) {
    /* Hide top contact section on mobile devices */
    .top-contact-section {
        display: none;
    }
    
    .header {
        padding: 10px 0;
    }
    
    .hero {
        padding: 80px 0 50px;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .features-grid,
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
    }
}

/* Doctors Section Image Slider */
.doctors-slider-container {
    position: relative;
    width: 100%;
    max-width: 1920px;
    height: 343px;
    margin: 40px auto;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.slider-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 343px;
}

.slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 7680px; /* 4 images * 1920px each */
    height: 343px;
}

.slide {
    min-width: 1920px;
    width: 1920px;
    position: relative;
    height: 343px;
    overflow: hidden;
}
.slide img {
    width: 63%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    font-family: 'object-fit: cover;'; /* For IE 11 support */
}

.slider-nav {
    display: none;
}

.prev-btn, .next-btn {
    background: rgba(255, 255, 255, 0.8);
    border: none;
    font-size: 24px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.prev-btn:hover, .next-btn:hover {
    background: rgba(37, 99, 235, 0.8);
    color: white;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active {
    background: white;
}

/* Responsive adjustments for slider */
@media (max-width: 992px) {
    .doctors-slider-container {
        width: 100%;
        height: auto;
        aspect-ratio: 1920/343;
    }
    
    .slider-wrapper {
        width: 100%;
        height: auto;
        aspect-ratio: 1920/343;
    }
    
    .slider {
        width: 400%; /* 4 images * 100% each */
        height: auto;
        aspect-ratio: 1920/343;
    }
    
    .slide {
        min-width: 33.333%; /* Show 3 images at a time */
        width: auto;
        height: auto;
        aspect-ratio: 1920/343;
    }
}

/* Phone size adjustments */
@media (max-width: 768px) {
    .doctors-slider-container {
        width: 100%;
        height: auto;
        aspect-ratio: 1920/343;
        border-radius: 10px;
        margin: 30px auto;
    }
    
    .slider-wrapper {
        width: 100%;
        height: auto;
        aspect-ratio: 1920/343;
    }
    
    .slider {
        width: 400%; /* 4 images * 100% each */
        height: auto;
        aspect-ratio: 1920/343;
    }
    
    .slide {
        min-width: 100%; /* Show 1 image on mobile */
        width: 100%;
        height: auto;
        aspect-ratio: 1920/343;
    }
}

/* Small phone size adjustments */
@media (max-width: 480px) {
    .doctors-slider-container {
        width: 100%;
        height: auto;
        aspect-ratio: 1920/200;
        border-radius: 8px;
        margin: 20px auto;
    }
    
    .slider-wrapper {
        width: 100%;
        height: auto;
        aspect-ratio: 1920/200;
    }
    
    .slider {
        width: 400%;
        height: auto;
        aspect-ratio: 1920/200;
    }
    
    .slide {
        min-width: 100%;
        width: 100%;
        height: auto;
        aspect-ratio: 1920/200;
    }
}

@media (max-width: 768px) {
    .doctors-slider-container {
        margin: 30px auto;
        border-radius: 10px;
        width: 100%;
        height: auto;
        aspect-ratio: 1920/250;
    }
    
    .slider-wrapper {
        width: 100%;
        height: auto;
        aspect-ratio: 1920/250;
    }
    
    .slider {
        width: 400%; /* 4 images * 100% each */
        height: auto;
        aspect-ratio: 1920/250;
    }
    
    .slide {
        min-width: 100%; /* Show 1 image on mobile */
        width: 100%;
        height: auto;
        aspect-ratio: 1920/250;
    }
    
    /* Responsive styles for floating WhatsApp button */
    .floating-whatsapp-btn {
        padding: 12px 16px;
        font-size: 14px;
        bottom: 110px;
        right: 20px;
        z-index: 10000; /* Ensure visibility on mobile */
    }
    
    .floating-whatsapp-btn i {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .doctors-slider-container {
        display: none;
    }
    
    .slider-wrapper {
        height: auto;
        aspect-ratio: 1920/343;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
    
    /* Responsive styles for floating WhatsApp button on small screens */
    .floating-whatsapp-btn {
        padding: 10px 12px;
        font-size: 12px;
        bottom: 90px !important;
        right: 15px;
        z-index: 10000; /* Ensure visibility on small screens */
    }
    
    .floating-whatsapp-btn i {
        font-size: 18px;
    }
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #3b82f6);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: #dbeafe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
    color: #2563eb;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: #2563eb;
    color: white;
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1e293b;
}

.feature-card p {
    color: #64748b;
    margin-bottom: 20px;
    line-height: 1.6;
}

.feature-meta {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.feature-tag {
    background: #eff6ff;
    color: #2563eb;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Hospitals Near Me Modal */
.hospitals-modal {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.hospitals-modal-content {
    background-color: #fff;
    margin: auto;
    padding: 0;
    border-radius: 10px;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.close-hospitals {
    color: #aaa;
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1002;
}

.close-hospitals:hover,
.close-hospitals:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.modal-header {
    padding: 20px;
    background: #2563eb;
    color: white;
    text-align: center;
}

.modal-header h2 {
    margin: 0;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-subheader {
    margin-top: 10px;
}

.modal-subheader p {
    margin: 0;
    font-size: 16px;
    opacity: 0.9;
}

.modal-body {
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .modal-body {
        flex-direction: row;
    }
    
    .hospitals-map {
        width: 60%;
    }
    
    .hospitals-list {
        width: 40%;
    }
}

.hospitals-map {
    height: 400px;
    background: #e2e8f0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.map-placeholder {
    text-align: center;
    padding: 20px;
}

.hospital-marker {
    width: 40px;
    height: 40px;
    background: #2563eb;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-weight: bold;
    margin: 20px auto;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hospitals-list {
    padding: 20px;
    max-height: 400px;
    overflow-y: auto;
    background: #f8fafc;
}

.hospitals-list h3 {
    margin-top: 0;
    color: #1e293b;
    font-size: 20px;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 10px;
}

.hospitals-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hospitals-list li {
    padding: 15px;
    border-bottom: 1px solid #e2e8f0;
    transition: background-color 0.2s;
}

.hospitals-list li:hover {
    background-color: #f1f5f9;
}

.hospitals-list li:last-child {
    border-bottom: none;
}

.modal-footer {
    padding: 20px;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
}

.modal-instructions {
    padding: 10px 20px;
    background: #eff6ff;
    border-bottom: 1px solid #e2e8f0;
    font-size: 14px;
    color: #334155;
}

.modal-instructions strong {
    color: #2563eb;
}

/* Contact Section */
.contact-wrapper {
  display: flex;
  gap: 50px;
  margin-top: 40px;
}

.contact-info {
  flex: 1;
}

.info-card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 30px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.info-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.info-item:last-child {
  margin-bottom: 0;
}

.info-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #dbeafe 0%, #93c5fd 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #2563eb;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.info-item:hover .info-icon {
  transform: scale(1.1);
  background: linear-gradient(135deg, #93c5fd 0%, #2563eb 100%);
  color: white;
}

.info-text h3 {
  margin-bottom: 5px;
  font-size: 20px;
  color: #1e293b;
  font-weight: 600;
}

.info-text p {
  color: #64748b;
  margin: 0;
  line-height: 1.6;
}

.contact-social {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.contact-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #e2e8f0;
  border-radius: 50%;
  color: #1e293b;
  transition: all 0.3s ease;
  text-decoration: none;
}

.contact-social a:hover {
  background: #2563eb;
  color: white;
  transform: translateY(-3px);
}

.contact-form {
  flex: 1;
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.contact-form:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #1e293b;
  font-size: 16px;
}

.form-group label::after {
  content: ":";
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 16px;
  transition: all 0.3s ease;
  background: #f8fafc;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
  background: white;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #94a3b8;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #1e293b;
  font-size: 16px;
}

.form-group label::after {
  content: ":";
}

/* Patient Speaks Section */
.patient-speaks {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.patient-speaks .section-header {
  text-align: center;
  margin-bottom: 50px;
}

.patient-speaks .section-header h2 {
  font-size: 36px;
  color: #1e293b;
  margin-bottom: 15px;
}

.patient-speaks .section-header p {
  font-size: 18px;
  color: #64748b;
  max-width: 700px;
  margin: 0 auto;
}

.patient-speaks-content {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.patient-testimonials {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.testimonial-card {
  background: white;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.patient-info h3 {
  font-size: 20px;
  color: #1e293b;
  margin-bottom: 5px;
}

.patient-info p {
  font-size: 16px;
  color: #64748b;
  margin: 0;
}

.patient-review {
  margin-top: 15px;
}

.patient-review p {
  font-size: 15px;
  color: #475569;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 15px;
}

.rating {
  color: #f59e0b;
}

.view-more {
  grid-column: span 2;
  text-align: center;
  margin-top: 10px;
}

.patient-video {
  flex: 1;
  background: #f1f5f9;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-placeholder {
  text-align: center;
  color: #64748b;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 20px;
}

.video-placeholder:hover {
  color: #2563eb;
}

.video-placeholder i {
  font-size: 64px;
  color: #94a3b8;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.video-placeholder:hover i {
  color: #2563eb;
  transform: scale(1.1);
}

.video-placeholder p {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 10px 0;
}

.video-placeholder span {
  font-size: 14px;
  color: #94a3b8;
}

.video-placeholder:hover span {
  color: #64748b;
}

.patient-video-element {
    width: 100%;
    height: 100%;
    max-height: 300px;
    object-fit: cover;
    border-radius: 12px;
}

/* Responsive styles */
@media (max-width: 992px) {
  .patient-speaks-content {
    flex-direction: column;
  }
  
  .patient-testimonials {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .view-more {
    grid-column: span 3;
  }
  
  .contact-wrapper {
    flex-direction: column;
    gap: 30px;
  }
  
  .contact-info {
    width: 100%;
  }
  
  .contact-form {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .patient-speaks {
    padding: 60px 0;
  }
  
  .patient-testimonials {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .view-more {
    grid-column: span 2;
  }
  
  .patient-speaks .section-header h2 {
    font-size: 28px;
  }
  
  .patient-speaks .section-header p {
    font-size: 16px;
  }
  
  .testimonial-card {
    padding: 20px;
  }
  
  .modal-content {
    padding: 25px 20px;
    width: 95%;
    max-width: none;
    margin: 0 10px;
  }
  
  .modal-content h2 {
    font-size: 24px;
  }
  
  .modal-instructions {
    font-size: 15px;
    margin: 12px 0 25px;
  }
  
  .modal-buttons .btn {
    padding: 12px;
    font-size: 15px;
  }
  
  .contact-form {
    padding: 25px;
  }
  
  .info-card {
    padding: 25px;
  }
  
  .info-item {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  
  .info-icon {
    margin: 0 auto;
  }
  
  .contact-social {
    justify-content: center;
  }
  
  .form-group label {
    font-size: 15px;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 30px;
  }
  
  .footer-left,
  .footer-right {
    min-width: 100%;
  }
  
  .footer-links-container {
    justify-content: flex-start;
  }
  
  .footer-logo-img {
    max-width: 120px;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    gap: 15px;
  }
  
  .footer-bottom-links {
    flex-direction: column;
    gap: 10px;
  }
  
  .copyright {
    font-size: 13px;
  }
  
  .footer-bottom a {
    font-size: 13px;
  }
}

@media (max-width: 576px) {
  .patient-testimonials {
    grid-template-columns: 1fr;
  }
  
  .view-more {
    grid-column: span 1;
  }
  
  .testimonial-card {
    padding: 15px;
  }
  
  .patient-info h3 {
    font-size: 18px;
  }
  
  .patient-video {
    min-height: 300px;
  }
  
  .info-item {
    text-align: left;
  }
  
  .info-icon {
    margin: 0;
  }
  
  .contact-social {
    justify-content: flex-start;
  }
  
  .footer-links h4 {
    font-size: 18px;
  }
  
  .footer-links ul li a {
    font-size: 14px;
  }
  
  .social-links a {
    width: 36px;
    height: 36px;
  }
}

/* Hide doctor-patient image on mobile devices */
@media (max-width: 768px) {
    .why-image {
        display: none;
    }
    
    .why-grid {
        grid-template-columns: 1fr; /* Make cards full width when image is hidden */
    }
    
    .why-cards {
        grid-template-columns: 1fr; /* Stack cards vertically on mobile */
        gap: 15px;
    }
}
