/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    width: 100%;
}

/* Header and Navigation */
header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    left: 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.logo h1 {
    color: #2c3e50;
    font-size: 1.5rem;
}

.logo a {
    text-decoration: none;
    color: inherit;
}

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

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #3498db;
}

/* Hero Banner Section */
.hero-banner {
    padding: 80px 5%;
    margin-top: 60px;
    background-color: #fff;
    min-height: 90vh;
    display: flex;
    align-items: center;
    width: 100%;
    overflow: hidden;
}

.hero-content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

.hero-image {
    position: relative;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background-color: #f8f9fa;
    border-radius: 50%;
    z-index: 1;
}

.doctor-image {
    width: 100%;
    height: auto;
    border-radius: 50%;
    position: relative;
    z-index: 2;
}

.hero-text {
    padding-right: 2rem;
}

.subtitle {
    color: #3498db;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    display: block;
}

.hero-text h1 {
    color: #1a365d;
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.description {
    margin-bottom: 2rem;
}

.description p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #3498db;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

/* Features Section */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 4rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card i {
    font-size: 2.5rem;
    color: #3498db;
    margin-bottom: 1rem;
}

/* Testimonial Section (Homepage) */
.testimonials {
    background: #fff;
    padding: 6rem 5%;
    text-align: center;
    position: relative;
    width: 100%;
    overflow: hidden;
}

.testimonial-inner {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    width: 100%;
}

.testimonial-section-title {
    display: block;
    color: #23b0c9;
    font-size: 1rem;
    letter-spacing: 2px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    letter-spacing: 3px;
}

.testimonial-heading {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 2.5rem;
    font-family: inherit;
}

.testimonial-quote {
    font-size: 1.25rem;
    color: #444;
    font-weight: 400;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.testimonial-quote p {
    margin-bottom: 1.2rem;
}

.testimonial-author {
    font-size: 1.15rem;
    color: #222;
    font-weight: 600;
    margin-top: 2.5rem;
    letter-spacing: 0.5px;
}

.testimonial-author strong {
    font-size: 1.15em;
    font-weight: 700;
    color: #222;
}

.testimonial-author span {
    display: block;
    font-size: 1.05em;
    font-weight: 500;
    color: #222;
    margin-top: 0.2em;
}

/* Optional: subtle background pattern (can be replaced with an SVG or PNG if desired) */
.testimonials::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 600px;
    height: 300px;
    background: url('https://www.transparenttextures.com/patterns/dotted-world-map.png') repeat center center;
    opacity: 0.08;
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
}

@media (max-width: 900px) {
    .testimonial-inner {
        max-width: 98vw;
    }
    .testimonial-heading {
        font-size: 2.1rem;
    }
}

@media (max-width: 600px) {
    .testimonials {
        padding: 3rem 1rem;
    }
    .testimonial-heading {
        font-size: 1.4rem;
    }
    .testimonial-quote {
        font-size: 1rem;
    }
    .testimonial-author {
        font-size: 1rem;
    }
}

/* Doctors Section Styles */
.doctors-section {
    padding: 6rem 5%;
    background-color: #f9f9f9;
    width: 100%;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    color: #3498db;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: 2.8rem;
    color: #1a365d;
    font-weight: 700;
}

.doctors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.doctor-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.doctor-card:hover {
    transform: translateY(-5px);
}

.doctor-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    overflow: hidden;
}

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

.doctor-info {
    padding: 2rem;
    text-align: center;
}

.doctor-info h3 {
    font-size: 1.5rem;
    color: #1a365d;
    margin-bottom: 0.5rem;
}

.doctor-speciality {
    color: #3498db;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.doctor-location {
    color: #666;
    margin-bottom: 0.5rem;
}

.doctor-credentials {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.view-profile-btn {
    background-color: #3498db;
    color: #fff;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-profile-btn:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    z-index: 1000;
    overflow-y: auto;
}

.modal-content {
    background-color: #fff;
    margin: 2rem auto;
    max-width: 900px;
    width: 90%;
    border-radius: 15px;
    position: relative;
}

.close-modal {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    font-size: 2rem;
    color: #666;
    cursor: pointer;
    z-index: 1;
}

.doctor-profile {
    padding: 3rem;
}

.profile-header {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

.profile-header img {
    width: 200px;
    height: 200px;
    border-radius: 10px;
    object-fit: cover;
}

.profile-title h2 {
    font-size: 2rem;
    color: #1a365d;
    margin-bottom: 0.5rem;
}

.profile-title .credentials {
    color: #3498db;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.profile-title .speciality {
    color: #666;
}

.profile-content {
    color: #444;
}

.profile-content h3 {
    color: #1a365d;
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
}

.profile-content h4 {
    color: #2c3e50;
    margin: 1.5rem 0 0.5rem;
}

.profile-content p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.profile-content ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.profile-content li {
    margin-bottom: 0.5rem;
}

.services-list {
    background-color: #f9f9f9;
    padding: 2rem;
    border-radius: 10px;
    margin: 1.5rem 0;
}

.warning-note {
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 1.5rem;
    margin: 2rem 0;
}

.book-appointment-btn {
    display: block;
    width: 100%;
    max-width: 300px;
    margin: 2rem auto 0;
    padding: 1rem 2rem;
    background-color: #3498db;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.book-appointment-btn:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .profile-header {
        flex-direction: column;
        text-align: center;
    }

    .profile-header img {
        margin: 0 auto;
    }

    .doctor-profile {
        padding: 2rem;
    }
}

/* Footer */
footer {
    background-color: #2c3e50;
    color: #fff;
    padding: 3rem 5%;
    width: 100%;
    overflow: hidden;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.footer-section h3 {
    margin-bottom: 1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #fff;
    text-decoration: none;
}

.social-links a {
    margin-right: 1rem;
    font-size: 1.5rem;
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Mobile Navigation */
.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: #2c3e50;
    margin: 5px;
    transition: all 0.3s ease;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .nav-links {
        position: fixed;
        right: -100%;
        top: 60px;
        flex-direction: column;
        background-color: #fff;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        margin: 1rem 0;
    }

    .burger {
        display: block;
    }

    .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-image {
        max-width: 80%;
        width: 100%;
        margin: 0 auto;
    }

    .hero-text {
        padding-right: 0;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .description {
        text-align: left;
    }

    .about-hero,
    .services-hero,
    .why-us-hero,
    .contact-hero {
        height: 40vh;
    }
    
    .team-grid,
    .mission-grid,
    .services-grid,
    .additional-grid,
    .advantages-grid,
    .stats-grid,
    .testimonial-grid,
    .accreditations-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }

    .description p {
        font-size: 1rem;
    }
}

/* About Page Styles */
.about-hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('/images/about-hero-bg.webp');
    background-size: cover;
    background-position: center;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-top: 60px;
}

.about-content {
    padding: 4rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.about-section {
    margin-bottom: 3rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.team-member {
    text-align: center;
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 1rem;
    object-fit: cover;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.mission-card {
    text-align: center;
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-5px);
}

.mission-card i {
    font-size: 2.5rem;
    color: #3498db;
    margin-bottom: 1rem;
}

/* Services Page Styles */
.services-hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('/images/services-hero-bg.webp');
    background-size: cover;
    background-position: center;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-top: 60px;
}

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

.service-card {
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card i {
    font-size: 2.5rem;
    color: #3498db;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    color: #1a365d;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

.additional-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.additional-card {
    text-align: center;
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.additional-card:hover {
    transform: translateY(-5px);
}

.additional-card i {
    font-size: 2.5rem;
    color: #3498db;
    margin-bottom: 1rem;
}

/* Global max-width wrapper */
.section-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

/* Why Us Page Styles */
.why-us-content {
    padding: 4rem 0;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.advantage-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.advantage-card h2 {
    color: #1a365d;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.advantage-card h2 i {
    color: #3498db;
    font-size: 1.8rem;
}

.advantage-card ul {
    list-style: none;
    padding: 0;
}

.advantage-card li {
    margin-bottom: 1.5rem;
}

.advantage-card li:last-child {
    margin-bottom: 0;
}

.advantage-card strong {
    color: #3498db;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.5rem;
}

.advantage-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .profile-image img {
        object-fit: cover;
        height: 400px;
    }
    .why-us-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .advantage-card h2 {
        font-size: 1.3rem;
    }
    
    .advantage-card strong {
        font-size: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .advantage-card {
        padding: 1.5rem;
    }
    
    .advantage-card h2 {
        font-size: 1.2rem;
    }
}

/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('/images/contact-hero-bg.webp');
    background-size: cover;
    background-position: center;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-top: 60px;
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 4rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 10px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.info-item i {
    font-size: 1.5rem;
    color: #3498db;
    margin-right: 1rem;
    margin-top: 0.5rem;
}

.contact-form {
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 10px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

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

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.submit-btn {
    background-color: #3498db;
    color: #fff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #2980b9;
}

.map-section {
    padding: 0 5% 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.map-container {
    margin-top: 2rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Additional Responsive Styles for Doctor Profiles */
@media screen and (max-width: 1024px) {
    .doctors-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .doctors-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .modal-content {
        width: 95%;
        margin: 1rem auto;
    }

    .profile-header {
        flex-direction: column;
        text-align: center;
    }

    .profile-header img {
        width: 150px;
        height: 150px;
        margin: 0 auto 1rem;
    }

    .doctor-profile {
        padding: 1.5rem;
    }

    .services-list {
        padding: 1rem;
    }

    .doctor-info .doctor-additional {
        font-size: 0.9rem;
        color: #666;
        margin-bottom: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .section-header h2 {
        font-size: 2rem;
    }

    .doctor-card {
        margin: 0 1rem;
    }

    .doctor-image {
        height: 250px;
    }

    .profile-title h2 {
        font-size: 1.5rem;
    }

    .profile-content h3 {
        font-size: 1.3rem;
    }

    .warning-note {
        padding: 1rem;
    }

    .book-appointment-btn {
        width: 100%;
        max-width: none;
    }
}

/* Additional Modal Styles */
.profile-title .additional-credentials {
    color: #3498db;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.modal-content {
    max-height: 90vh;
    overflow-y: auto;
}

.modal-content::-webkit-scrollbar {
    width: 8px;
}

.modal-content::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.modal-content::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Services Overview Section */
.services-overview {
    padding: 6rem 5%;
    background-color: #fff;
    width: 100%;
    overflow: hidden;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.service-card {
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card i {
    font-size: 2.5rem;
    color: #3498db;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    color: #1a365d;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

/* About Lead Doctor Section */
.about-lead-doctor {
    padding: 6rem 5%;
    background-color: #f8f9fa;
    width: 100%;
    overflow: hidden;
}

.doctor-profile-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
    width: 100%;
}

.profile-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.profile-info h3 {
    color: #1a365d;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    line-height: 1.4;
}

.profile-info h4 {
    color: #3498db;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.profile-info p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.profile-info ul {
    list-style: none;
    margin-bottom: 2rem;
}

.profile-info ul li {
    color: #666;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.profile-info ul li:before {
    content: "•";
    color: #3498db;
    position: absolute;
    left: 0;
}

/* For Families Section */
.for-families {
    padding: 4rem 5%;
    background-color: #fff;
    text-align: center;
    width: 100%;
    overflow: hidden;
}

.family-support-content {
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

.family-support-content p {
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Responsive Styles */
@media screen and (max-width: 1024px) {
    .doctor-profile-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .profile-image {
        max-width: 500px;
        width: 100%;
        margin: 0 auto;
    }
}

@media screen and (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .profile-info h3 {
        font-size: 1.5rem;
    }
}

@media screen and (max-width: 480px) {
    .service-card {
        padding: 1.5rem;
    }

    .profile-info h3 {
        font-size: 1.3rem;
    }

    .profile-info h4 {
        font-size: 1.1rem;
    }
}

/* Services Page Styles */
.services-content {
    padding: 4rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.intro p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
}

.service-section {
    margin-bottom: 4rem;
    padding: 2rem;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.service-section h2 {
    color: #1a365d;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.service-section h3 {
    color: #3498db;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.service-section ul {
    list-style: none;
}

.service-section li {
    margin-bottom: 1.5rem;
}

.service-section strong {
    color: #2c3e50;
    display: block;
    margin-bottom: 0.5rem;
}

.service-section p {
    color: #666;
    line-height: 1.6;
}

.service-section ul ul {
    margin-top: 1rem;
    margin-left: 1.5rem;
}

.service-section ul ul li {
    margin-bottom: 0.5rem;
    position: relative;
}

.service-section ul ul li:before {
    content: "•";
    color: #3498db;
    position: absolute;
    left: -1rem;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 3rem;
    background-color: #f8f9fa;
    border-radius: 15px;
    margin-top: 4rem;
}

.cta-section h2 {
    color: #1a365d;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.cta-section p {
    color: #666;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Styles for New Pages */
@media screen and (max-width: 768px) {
    .advantage-section h2,
    .service-section h2 {
        font-size: 1.5rem;
    }

    .advantage-section strong,
    .service-section h3 {
        font-size: 1.2rem;
    }

    .intro p,
    .cta-section p {
        font-size: 1.1rem;
    }

    .advantage-section,
    .service-section {
        padding: 1.5rem;
    }
}

@media screen and (max-width: 480px) {
    .advantage-section h2,
    .service-section h2 {
        font-size: 1.3rem;
    }

    .advantage-section strong,
    .service-section h3 {
        font-size: 1.1rem;
    }

    .intro p,
    .cta-section p {
        font-size: 1rem;
    }

    .advantage-section,
    .service-section {
        padding: 1rem;
    }
}

/* Why Choose Us Section on Homepage */
.why-choose-us {
    padding: 4rem 0;
    background-color: #f8f9fa;
    width: 100%;
    overflow: hidden;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 3rem auto 0;
    padding: 0 5%;
    width: 100%;
}

.feature-card {
    background: #fff;
    border-radius: 15px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.feature-card i {
    font-size: 2.5rem;
    color: #3498db;
    margin-bottom: 1.5rem;
    background: #f0f7fc;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.feature-card:hover i {
    background: #3498db;
    color: #fff;
    transform: scale(1.1);
}

.feature-card h3 {
    color: #1a365d;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

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

/* Mobile Responsive Styles */
@media screen and (max-width: 992px) {
    .why-choose-us {
        padding: 3rem 0;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        max-width: 700px;
        margin-top: 2rem;
    }

    .feature-card {
        padding: 2rem 1.5rem;
    }

    .feature-card i {
        width: 70px;
        height: 70px;
        font-size: 2rem;
        margin-bottom: 1.2rem;
    }

    .feature-card h3 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }

    .feature-card p {
        font-size: 0.95rem;
    }
}

@media screen and (max-width: 768px) {
    .why-choose-us {
        padding: 2.5rem 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        gap: 1.2rem;
        margin-top: 1.5rem;
    }

    .feature-card {
        padding: 1.8rem 1.5rem;
    }

    .feature-card i {
        width: 65px;
        height: 65px;
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .feature-card h3 {
        font-size: 1.2rem;
        margin-bottom: 0.6rem;
    }

    .feature-card p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 480px) {
    .why-choose-us {
        padding: 2rem 0;
    }

    .features-grid {
        padding: 0 4%;
    }

    .feature-card {
        padding: 1.5rem 1.2rem;
    }

    .feature-card i {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
    }

    .feature-card h3 {
        font-size: 1.1rem;
    }

    .feature-card p {
        font-size: 0.85rem;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background-color: #25D366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    color: #fff;
}

.whatsapp-float i {
    font-size: 35px;
}

@media screen and (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        left: 20px;
    }

    .whatsapp-float i {
        font-size: 30px;
    }
}

/* WhatsApp Button Styles */
.whatsapp-button {
    display: inline-flex;
    align-items: center;
    background-color: #25D366;
    color: #fff;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.whatsapp-button:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
    color: #fff;
}

.whatsapp-button i {
    margin-right: 8px;
    font-size: 1.2rem;
}

.whatsapp-link {
    display: inline-flex;
    align-items: center;
    color: #fff;
    text-decoration: none;
    margin-top: 0.5rem;
}

.whatsapp-link i {
    margin-right: 8px;
    font-size: 1.2rem;
}

.whatsapp-link:hover {
    color: #25D366;
}

/* Contact Page WhatsApp Section */
.contact-info .info-item ul {
    list-style: none;
    margin: 1rem 0;
    padding-left: 0;
}

.contact-info .info-item ul li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.contact-info .info-item ul li:before {
    content: "•";
    color: #25D366;
    position: absolute;
    left: 0;
}

/* RTL Support */
[lang="ur"] {
    direction: rtl;
    text-align: right;
}

[lang="ur"] .nav-links {
    flex-direction: row-reverse;
}

[lang="ur"] .hero-content-wrapper {
    flex-direction: row-reverse;
}

[lang="ur"] .services-grid,
[lang="ur"] .features-grid,
[lang="ur"] .doctors-grid {
    direction: rtl;
}

[lang="ur"] .footer-content {
    flex-direction: row-reverse;
}

[lang="ur"] .social-links {
    flex-direction: row-reverse;
} 