﻿/* Global Styles */
:root {
    --primary-color: #007bff;
    --secondary-color: #6c757d;
    --success-color: #28a745;
    --info-color: #17a2b8;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
}

/*body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
}
*/
/* Header Styles */
/*.header {
    padding-top: 1rem;
    padding-bottom: 1rem;
}*/





/* Hero Section */
.hero-section {
    padding-top: 120px;
    padding-bottom: 80px;
    background-color: var(--light-color);
}

.hero-section h1 {
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.hero-section .lead {
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 3rem;
}

/* Service Cards */
.service-card {
    background: #fff;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

/* Doctor Cards */
.doctor-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.doctor-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.doctor-info {
    padding: 1.5rem;
}

.doctor-info h5 {
    margin-bottom: 0.5rem;
}

.doctor-info p {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

/* Contact Form */
.contact-form .form-control {
    padding: 0.8rem;
    border-radius: 5px;
    border: 1px solid #ddd;
}

.contact-form .form-control:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

.contact-info i {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,123,255,0.1);
    border-radius: 50%;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .hero-section {
        padding-top: 100px;
        text-align: center;
    }
    
    .hero-section img {
        margin-top: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 767.98px) {
    .hero-section h1 {
        font-size: 2rem;
    }
} 