/* Scroll animations are defined in assets/css/main.css */

    /* About Page Styles */
    .page-hero {
        background-color: #EDF2F7;
        color: #1A365D;
        padding: 100px 20px;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .page-hero-container {
        max-width: 1200px;
        margin: 0 auto;
        position: relative;
        z-index: 2;
    }

    .page-hero h1 {
        font-family: 'Plus Jakarta Sans', sans-serif;
        font-size: 28px;
        font-weight: 700;
        margin-bottom: 20px;
        line-height: 1.2;
        color: #1A365D;
    }

    .page-hero p {
        font-size: 20px;
        color: #4A5568;
        margin-bottom: 30px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    /* About Doctor Section */
    .about-doctor-section {
        padding: 80px 20px;
        background-color: #FFFFFF;
    }

    .doctor-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 400px 1fr;
        gap: 60px;
        align-items: start;
    }

    .doctor-image-container {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .doctor-image-box {
        width: 100%;
        max-width: 400px;
        height: 500px;
        background-color: transparent;
        border-radius: 20px;
        border: 2px dotted rgba(76, 175, 80, 0.3);
        box-shadow: 0 10px 30px rgba(76, 175, 80, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        overflow: hidden;
        transition: all 0.3s ease;
    }

    .doctor-image-box:hover {
        border-color: rgba(76, 175, 80, 0.6);
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(49, 130, 206, 0.18);
    }

    .doctor-image-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
        border-radius: 20px;
    }

    .doctor-info {
        text-align: justify;
        min-width: 0;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        display: block;
        padding-right: 0;
    }

    .doctor-info h2 {
        font-family: 'Plus Jakarta Sans', sans-serif;
        font-size: 24px;
        font-weight: 700;
        color: #1A365D;
        margin-bottom: 10px;
        text-align: left !important;
    }

    .doctor-credentials {
        font-size: 18px;
        color: #2C5282;
        font-weight: 600;
        margin-bottom: 15px;
        text-align: left !important;
    }

    .experience-badge {
        display: inline-block;
        background: linear-gradient(135deg, #0F2744 0%, #2B6CB0 100%);
        color: #FFFFFF;
        padding: 12px 30px;
        border-radius: 50px;
        font-weight: 600;
        margin-bottom: 25px;
        font-size: 16px;
        text-align: center !important;
    }

    .doctor-info > p:not(.doctor-credentials) {
        font-size: 16px;
        line-height: 1.8;
        color: #333;
        margin-bottom: 15px;
        text-align: justify !important;
        text-justify: inter-word !important;
        width: 100% !important;
        max-width: 100% !important;
        display: block !important;
        word-spacing: normal !important;
        letter-spacing: normal !important;
        hyphens: auto;
        overflow-wrap: break-word;
    }

    .specializations {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        margin-top: 25px;
    }

    .specialization-tag {
        background-color: #EDF2F7;
        color: #1A365D;
        padding: 10px 20px;
        border-radius: 25px;
        font-size: 14px;
        font-weight: 500;
        border: 2px dotted rgba(76, 175, 80, 0.3);
        transition: all 0.3s ease;
    }

    .specialization-tag:hover {
        background-color: #C8E6C9;
        border-color: rgba(76, 175, 80, 0.6);
        transform: translateY(-2px);
    }

    /* Mission & Values Section */
    .mission-values-section {
        padding: 80px 20px;
        background-color: #EDF2F7;
        color: #1A365D;
    }

    .mission-values-container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .section-title {
        font-family: 'Plus Jakarta Sans', sans-serif;
        font-size: 24px;
        font-weight: 700;
        text-align: center;
        margin-bottom: 50px;
        color: #1A365D;
    }

    .mission-values-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 40px;
        margin-top: 50px;
    }

    .mission-card {
        background-color: #FFFFFF;
        padding: 40px 30px;
        border-radius: 20px;
        border: 2px solid rgba(49, 130, 206, 0.15);
        text-align: center;
        transition: all 0.4s ease;
        box-shadow: 0 5px 20px rgba(26, 54, 93, 0.08);
        position: relative;
        overflow: visible;
    }

    .mission-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #2B6CB0, #63B3ED);
        transform: scaleX(0);
        transition: transform 0.4s ease;
    }

    .mission-card:hover::before {
        transform: scaleX(1);
    }

    .mission-card:hover {
        background-color: #FFFFFF;
        border-color: rgba(49, 130, 206, 0.35);
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(26, 54, 93, 0.12);
    }

    .mission-icon {
        width: 220px;
        height: 220px;
        margin: 0 auto 20px auto;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }

    .mission-icon img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .mission-card h3 {
        font-family: 'Plus Jakarta Sans', sans-serif;
        font-size: 22px;
        font-weight: 600;
        margin-bottom: 15px;
        color: #1A365D;
    }

    .mission-card p {
        font-size: 16px;
        line-height: 1.7;
        color: #4A5568;
        text-align: justify;
    }

    /* Why Choose Us Section */
    .why-choose-section {
        padding: 80px 20px;
        background: linear-gradient(160deg, #dbeafe 0%, #edf2f7 45%, #f7fafc 100%);
    }

    .why-choose-container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .why-choose-container .section-title {
        color: #1A365D;
    }

    .features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 40px;
        margin-top: 50px;
    }

    .feature-item {
        background-color: #FFFFFF;
        padding: 35px 30px;
        border-radius: 20px;
        text-align: center;
        border: 2px dotted rgba(44, 82, 130, 0.25);
        box-shadow: 0 8px 24px rgba(26, 54, 93, 0.08);
        transition: all 0.3s ease;
    }

    .feature-item:hover {
        transform: translateY(-10px);
        border-color: rgba(49, 130, 206, 0.55);
        box-shadow: 0 16px 40px rgba(49, 130, 206, 0.16);
    }

    .feature-icon {
        width: min(100%, 220px);
        height: auto;
        aspect-ratio: 1;
        margin: 0 auto 25px auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .feature-icon img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        display: block;
    }

    .feature-item h3 {
        font-family: 'Plus Jakarta Sans', sans-serif;
        font-size: 20px;
        font-weight: 600;
        color: #1A365D;
        margin-bottom: 15px;
    }

    .feature-item p {
        font-size: 16px;
        color: #333;
        line-height: 1.7;
        text-align: justify;
    }

    /* CTA Section */
    .cta-section {
        background-color: #EDF2F7;
        padding: 60px 20px;
        text-align: center;
    }

    .cta-section h2 {
        font-family: 'Plus Jakarta Sans', sans-serif;
        font-size: 24px;
        font-weight: 700;
        color: #1A365D;
        margin-bottom: 20px;
    }

    .cta-section p {
        font-size: 18px;
        color: #333;
        margin-bottom: 30px;
    }

    .hero-buttons {
        display: flex;
        gap: 20px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .btn {
        padding: 15px 35px;
        font-size: 16px;
        font-weight: 600;
        text-decoration: none;
        border-radius: 50px;
        transition: all 0.3s ease;
        display: inline-block;
        border: 2px solid transparent;
    }

    .btn-primary {
        background-color: #3182CE;
        color: #FFFFFF;
    }

    .btn-primary:hover {
        background-color: #388E3C;
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    }

    .btn-secondary {
        background-color: transparent;
        color: #1A365D;
        border: 2px solid #1A365D;
    }

    .btn-secondary:hover {
        background-color: #1A365D;
        color: #FFFFFF;
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
        .doctor-container {
            grid-template-columns: 1fr;
            gap: 40px;
        }

        .doctor-info > p:not(.doctor-credentials) {
            text-align: justify !important;
        }

        .doctor-image-box {
            max-width: 350px;
            height: 450px;
        }

        .mission-values-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 768px) {
        .page-hero {
            padding: 60px 20px;
        }

        .page-hero h1 {
            font-size: 22px;
        }

        .page-hero p {
            font-size: 16px;
        }

        .about-doctor-section {
            padding: 50px 20px;
        }

        .doctor-info h2 {
            font-size: 20px;
        }

        .doctor-credentials {
            font-size: 16px;
        }

        .mission-values-section,
        .why-choose-section {
            padding: 50px 20px;
        }

        .section-title {
            font-size: 20px;
            margin-bottom: 40px;
        }

        .mission-values-grid,
        .features-grid {
            grid-template-columns: 1fr;
            gap: 30px;
        }

        .mission-card,
        .feature-item {
            padding: 30px 20px;
        }

        .mission-icon {
            width: 180px;
            height: 180px;
        }

        .mission-icon img {
            width: 100%;
            height: 100%;
        }

        .feature-icon {
            width: min(100%, 200px);
            height: auto;
        }

        .cta-section {
            padding: 50px 20px;
        }

        .cta-section h2 {
            font-size: 20px;
        }

        .hero-buttons {
            flex-direction: column;
            align-items: center;
        }

        .btn {
            width: 100%;
            max-width: 300px;
        }
    }
