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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Testing Banner */
.testing-banner {
    background: #ff9800;
    color: white;
    text-align: center;
    padding: 10px;
    font-weight: bold;
    position: sticky;
    top: 0;
    z-index: 10000;
}

/* Top Bar */
.top-bar {
    background: #0A3D62;
    color: white;
    padding: 10px 0;
    font-size: 14px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.contact-info span {
    margin-right: 20px;
}

.social-links a {
    color: white;
    margin-left: 20px;
    text-decoration: none;
}

/* Navigation */
nav {
    background: white;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 40px;
    z-index: 999;
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    color: #0A3D62;
}

.logo span {
    color: #2ecc71;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.appointment-btn {
    background: #2ecc71;
    color: white;
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0A3D62, #1e5a88);
    color: white;
    padding: 80px 0;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.highlight {
    color: #2ecc71;
}

.btn-primary, .btn-secondary {
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-right: 15px;
}

.btn-primary {
    background: #2ecc71;
    color: white;
}

.btn-secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.stat .number {
    font-size: 32px;
    font-weight: bold;
    color: #2ecc71;
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
}

/* Emergency Banner */
.emergency-banner {
    background: #e74c3c;
    color: white;
    text-align: center;
    padding: 15px;
    font-weight: bold;
}

/* About */
.about {
    padding: 80px 0;
}

.about .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
}

.about-content h2 {
    font-size: 36px;
    color: #0A3D62;
    margin-bottom: 20px;
}

.features {
    margin-top: 30px;
}

.feature {
    margin-bottom: 10px;
    font-size: 18px;
}

/* Services */
.services {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 36px;
    color: #0A3D62;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.read-more {
    color: #2ecc71;
    text-decoration: none;
    font-weight: bold;
}

/* Doctors */
.doctors {
    padding: 80px 0;
}

.doctors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.doctor-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.doctor-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.doctor-card h3 {
    margin: 15px 0 5px;
    color: #0A3D62;
}

.specialty {
    color: #2ecc71;
    font-weight: bold;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: #f8f9fa;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    position: relative;
}

.quote {
    font-size: 60px;
    color: #2ecc71;
    opacity: 0.3;
    position: absolute;
    top: 10px;
    left: 20px;
}

.patient {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.patient img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

/* Appointment Form */
.appointment {
    padding: 80px 0;
    background: linear-gradient(135deg, #0A3D62, #1e5a88);
    color: white;
}

.appointment .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.appointment-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    color: #333;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

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

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
}

.submit-btn {
    background: #2ecc71;
    color: white;
    padding: 15px;
    border: none;
    border-radius: 8px;
    width: 100%;
    font-size: 16px;
    cursor: pointer;
}

/* Footer */
footer {
    background: #0A3D62;
    color: white;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col ul {
    list-style: none;
}

.footer-col a {
    color: white;
    text-decoration: none;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .hero .container, .about .container, .appointment .container {
        grid-template-columns: 1fr;
    }
    .hero h1 {
        font-size: 32px;
    }
    .nav-links {
        display: none;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
}
