/* 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: #000;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background-color: #fff;
    border-bottom: 1px solid #000;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.clinic-name {
    font-size: 1.5rem;
    font-weight: bold;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-btn {
    background-color: #2E7D32;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    border: 1px solid #2E7D32;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background-color: #fff;
    color: #2E7D32;
}

/* Hero Section */
.hero {
    padding: 100px 0;
    text-align: center;
    background-color: #f9f9f9;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

/* Sections General */
section {
    padding: 80px 0;
    border-bottom: 1px solid #eee;
}

section h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2rem;
    text-transform: uppercase;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-box {
    border: 1px solid #000;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease;
}

.service-box:hover {
    transform: translateY(-5px);
}

.service-box .img-holder {
    aspect-ratio: 16 / 9;
    height: auto;
}

.img-holder {
    width: 100%;
    height: 150px;
    background-color: #eee;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.img-holder::after {
    content: 'IMAGE HOLDER';
    color: #999;
    font-size: 0.8rem;
}

.img-holder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.img-holder.has-image::after {
    content: '';
    display: none;
}

/* Location Section */
.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info h3 {
    margin: 20px 0 10px;
    border-bottom: 1px solid #000;
    display: inline-block;
}

.phone-link {
    color: #2E7D32;
    text-decoration: none;
    font-weight: bold;
}

.phone-link:hover {
    text-decoration: underline;
}

/* About Doctors Grid */
.doctors-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.doctor-profile {
    color: #000;
    text-align: center;
    border: 1px solid #000;
    padding: 30px;
    transition: background-color 0.3s ease;
}

.doctor-profile:hover {
    background-color: #f9f9f9;
}

.doctor-profile .img-holder {
    height: 250px;
}

.doctor-details-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    text-align: left;
}

.doctor-info-text h3 {
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.doctor-info-text p {
    font-size: 0.9rem;
    color: #555;
    margin: 0;
}

.read-more-btn {
    display: inline-block;
    padding: 8px 15px;
    background-color: #2E7D32;
    color: #fff;
    text-decoration: none;
    border: 1px solid #2E7D32;
    font-size: 0.9rem;
    white-space: nowrap;
    transition: all 0.3s ease;
    margin-left: 15px;
}

.read-more-btn:hover {
    background-color: #fff;
    color: #2E7D32;
}

/* Doctor Detail Page */
.doctor-detail {
    padding: 60px 0;
}

.doctor-profile-large {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.doctor-profile-large h2 {
    margin: 30px 0 10px;
    font-size: 2.5rem;
}

.specialty {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 30px;
    color: #666;
}

.bio {
    text-align: left;
    margin-top: 40px;
}

.bio h3 {
    margin: 25px 0 15px;
    border-bottom: 2px solid #000;
    display: inline-block;
}

.bio ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

/* Doctor Contact Button */
.doctor-contact-wrapper {
    padding: 40px 0 80px;
    text-align: center;
}

.doctor-contact-btn {
    display: inline-block;
    background-color: #2E7D32;
    color: #fff;
    padding: 15px 40px;
    text-decoration: none;
    font-weight: bold;
    border: 2px solid #2E7D32;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.doctor-contact-btn:hover {
    background-color: #fff;
    color: #2E7D32;
}

/* Back Icon Button */
.back-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #2E7D32;
    color: #fff;
    text-decoration: none;
    border: 1px solid #2E7D32;
    border-radius: 50%;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.back-btn:hover {
    background-color: #fff;
    color: #2E7D32;
}

/* Rating Section */
 

/* Footer */
.footer {
    padding: 40px 0;
    text-align: center;
    background-color: #000;
    color: #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .clinic-name {
        font-size: 1.2rem;
    }
    
    .location-content {
        grid-template-columns: 1fr;
    }
    
    .doctors-grid {
        grid-template-columns: 1fr;
    }
    
    .hero h2 {
        font-size: 1.8rem;
    }
}
