        :root{
            --main-font: Arial, sans-serif;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: var(--main-font);
        }
        
        body {
            background-color: #f5f7fa;
            color: #333;
            line-height: 1.6;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            max-width: 1400px !important;
        }
        
        /* header {
            background-color: #00695c;
            color: white;
            padding: 30px;
            border-radius: 10px 10px 0 0;
            margin-bottom: 0px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            display: flex;
            align-items: center;
            gap: 30px;
            position: relative;
            background-image: url('../Doctors_Photo/Doctor profile web banner Plain.webp');

        } */

        .header {
            background-color: #00695c;
            color: white;
            padding: 30px;
            border-radius: 10px 10px 0 0;
            margin-bottom: 0px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            display: flex;
            align-items: center;
            gap: 30px;
            position: relative;
            background-image: url('../Doctors_Photo/Doctor profile web banner Plain.webp');

        }
        
        .header-content {
            flex: 1;
            margin-bottom: 70px;
        }
        
        h1 {
            font-size: 2.5rem;
            margin-bottom: 10px;
        }
        
        .subtitle {
            font-size: 1.2rem;
            opacity: 0.9;
            margin-bottom: 15px;
        }
        
        .contact-info {
            margin-top: 15px;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 8px;
        }
        
        .contact-icon {
            margin-right: 10px;
            width: 20px;
            text-align: center;
        }
        
        .profile-img {
            width: 300px;
            height: 380px;
            border-radius: 10%;
            object-fit: cover;
            border: 5px solid #ffffff;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            /* background-color: #ffffff; */
            background-image: url('../PNG Doc/1 background.jpeg');
        }
        
        .btn-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 0px;
            margin-bottom: 30px;
        }
        
        .btn {
            background-color: #00695c;
            color: rgb(255, 255, 255);
            border: none;
            padding: 12px 25px;
            border-radius: 30px;
            cursor: pointer;
            font-size: 1rem;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }
        button.btn {
            background-color: #00695c;
            color: rgb(255, 255, 255);
            border: none;
            padding: 12px 25px;
            border-radius: 30px;
            cursor: pointer;
            font-size: 1rem;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            margin-top: 10px;
        }
        
        .btn:hover {
            background-color: #00695c;
            transform: translateY(-2px);
        }
        
        .btn.active {
            background-color: #00695c;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }
        
        .btn-book {
            background-color: #dc3545;
            color: #ffffff;
            position: absolute;
            right: 30px;
            bottom: 30px;
        }
        button.btn.btn-book {
            background-color: #dc3545;
            color: #ffffff;
            position: absolute;
            right: 30px;
            bottom: 30px;
        }
        
        .btn-book:hover {
            background-color: #c82333;
            color: #ffffff;
        }
        
        a.btn.btn-book {
            background-color: #dc3545;
            color: #ffffff;
        }
        
        a.btn.btn-book:hover {
            background-color: #c82333;
            color: #ffffff;
        }
        
        .content-section {
            background-color: white;
            border-radius: 10px;
            padding: 30px;
            margin-bottom: 30px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            display: none;
            animation: fadeIn 0.5s ease;
        }
        
        .content-section.active {
            display: block;
        }
        
        h2 {
            color: #00695c;
            margin-bottom: 20px;
            font-size: 1.8rem;
            /* border-bottom: 2px solid #e0e0e0; */
            padding-bottom: 10px;
        }
        
        h3 {
            color: #00695c;
            margin: 20px 0 10px;
        }
        
        ul {
            list-style-type: none;
            padding-left: 20px;
        }
        
        li {
            margin-bottom: 3px;
            position: relative;
        }
        
        li:before {
            /* content: "•";
            color: #00695c; */
            font-weight: bold;
            display: inline-block;
            width: 1em;
            margin-left: -1em;
            position: absolute;
        }
        
        .timing-item {
            display: flex;
            justify-content: space-between;
            padding: 10px 0;
            border-bottom: 1px solid #eee;
        }
        
        .timing-item:last-child {
            border-bottom: none;
        }
        
        .language-badge {
            display: inline-block;
            background-color: #e0e0e0;
            padding: 5px 15px;
            border-radius: 20px;
            margin-right: 10px;
            margin-bottom: 10px;
            font-weight: 500;
        }
        
        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            z-index: 100;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.5);
            align-items: center;
            justify-content: center;
        }
        
        .modal-content {
            background-color: white;
            padding: 0px 25px 25px 25px;
            border-radius: 10px;
            width: 100%;
            max-width: 600px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
            max-height: 83vh;
            overflow-y: auto;
            margin-top: 100px;
        }
        
        .close-btn {
            float: right;
            font-size: 28px;
            font-weight: bold;
            cursor: pointer;
            color: #aaa;
        }
        
        .close-btn:hover {
            color: #333;
        }
        
        .modal-content h3 {
            margin-bottom: 20px;
            text-align: center;
            color: #00695c;
        }
        
        .form-row {
            display: flex;
            gap: 15px;
            margin-bottom: 15px;
        }
        
        .form-group {
            flex: 1;
        }
        
        .modal-content label {
            display: block;
            margin-bottom: 5px;
            font-weight: 600;
        }
        
        .modal-content input,
        .modal-content select,
        .modal-content textarea {
            width: 100%;
            padding: 5px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 16px;
        }
        
        .modal-content textarea {
            min-height: 60px;
            resize: vertical;
        }
        
        .modal-content button {
            background-color: #00695c;
            color: white;
            border: none;
            padding: 12px 20px;
            width: 100%;
            border-radius: 5px;
            font-size: 16px;
            cursor: pointer;
            margin-top: 10px;
            transition: background-color 0.3s;
        }
        
        .modal-content button:hover {
            background-color: #00695c;
        }
        
        /* Time Slot Styles */
        .time-slots {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
            margin-top: 15px;
        }
        
        .time-slot {
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 5px;
            text-align: center;
            cursor: pointer;
            transition: all 0.2s;
        }
        
        .time-slot:hover {
            background-color: #f0f7ff;
        }
        
        .time-slot.selected {
            background-color: #00695c;
            color: white;
            border-color: #00695c;
        }
        
        .time-slot.unavailable {
            background-color: #f5f5f5;
            color: #999;
            cursor: not-allowed;
            text-decoration: line-through;
        }
        
        .time-slot-label {
            font-size: 12px;
            margin-top: 5px;
            font-weight: normal;
        }
        
        .selected-date {
            font-weight: bold;
            margin: 15px 0 5px;
            color: #00695c;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        @media (max-width: 768px) {
            /* Doctor profile header section - use .header (class), not header (element) */
            .container .header {
                flex-direction: column;
                text-align: center;
                padding: 20px 16px;
                gap: 16px;
                align-items: center;
            }

            .container .header .header-content {
                margin-bottom: 0;
                width: 100%;
            }

            .container .header .profile-img {
                width: 100%;
                max-width: 260px;
                height: auto;
                max-height: 320px;
                object-fit: cover;
                margin-bottom: 0;
            }

            .container .header .contact-info {
                justify-content: center;
            }

            .container .header .contact-item {
                justify-content: center;
            }

            .container .header h1 {
                font-size: 1.5rem;
                line-height: 1.3;
                margin-bottom: 8px;
            }

            .container .header .subtitle {
                font-size: 0.9rem;
                margin-bottom: 12px;
                line-height: 1.5;
            }

            .btn-container {
                flex-direction: column;
                align-items: center;
            }

            .btn {
                width: 100%;
                max-width: 300px;
            }

            .btn-book,
            button.btn.btn-book,
            a.btn.btn-book {
                position: static !important;
                margin: 12px auto 0 !important;
                display: block;
                width: 100%;
                max-width: 280px;
                text-align: center;
            }

            .modal-content {
                margin: 100px 16px 20px;
                width: calc(100% - 32px);
                max-width: none;
            }

            .form-row {
                flex-direction: column;
                gap: 0;
            }

            .time-slots {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 12px 10px;
            }

            .container .header {
                padding: 16px 12px;
            }

            .container .header .profile-img {
                max-width: 220px;
                max-height: 280px;
            }

            .container .header h1 {
                font-size: 1.35rem;
            }

            .container .header .subtitle {
                font-size: 0.85rem;
            }

            .btn-book,
            a.btn.btn-book {
                max-width: 100%;
            }
        }








        /* Color Variables */
:root {
    --primary-green: #2e8b57;
    --light-green: #90ee90;
    --background-gray: #f5f5f5;
    --card-white: #ffffff;
    --text-dark: #333333;
    --text-medium: #666666;
    --text-light: #888888;
    --border-light: #e0e0e0;
    --success-green: #28a745;
    --error-red: #dc3545;
    --accent-blue: #007bff;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-gray);
}

/* Main Section */
.doctor-profile-section-word {
    padding: 40px 0px;
    /* background-color: var(--background-gray); */
    /* min-height: 100vh; */
}

.container-word {
    max-width: 1400px;
    margin: 0 auto;
    /* background-color: var(--card-white); */
    border-radius: 12px;
    /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); */
    overflow: hidden;
}

/* Professional Overview Section */
.professional-overview-word {
    padding: 30px;
    border-left: 4px solid var(--primary-green);
    background-color: var(--card-white);
    margin-bottom: 0;
}

.section-title-word {
    color: #003017;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
}

.section-title-word::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: #003017;;
    margin-top: 8px;
}

.overview-content-word {
    margin-top: 20px;
}

.overview-text-word {
    color: var(--text-medium);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 18px;
    text-align: justify;
}

.overview-text-word:last-child {
    margin-bottom: 0;
}

/* Bottom Section */
.bottom-section-word {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* background-color: var(--background-gray); */
    padding: 30px 0px;
    gap: 40px;
}

/* Subsection Styles */
.subsection-title-word {
    color: var(--text-dark);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.icon-check-word {
    color: var(--success-green);
    font-size: 16px;
    font-weight: bold;
}

.icon-phone-word {
    font-size: 16px;
}

/* Timings Section */
.timings-section-word {
    background-color: var(--card-white);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.timing-item-word {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
}

.timing-item-word:last-child {
    border-bottom: none;
}

.day-word {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 16px;
}

.time-word {
    color: var(--success-green);
    font-weight: 600;
    font-size: 14px;
}

.not-available-word {
    color: var(--error-red);
}

/* Languages Section - hidden for now */
.languages-section-word {
    display: none !important;
    background-color: var(--card-white);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.language-tags-word {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.language-tag-word {
    background-color: #C8E6C9;
    color: #003017;;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid #003017;
    transition: all 0.3s ease;
    cursor: default;
}

.language-tag-word:hover {
    background-color: var(--primary-green);
    color: white;
    transform: translateY(-1px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .doctor-profile-section-word {
        padding: 20px 10px;
    }
    
    .professional-overview-word {
        padding: 20px;
    }
    
    .section-title-word {
        font-size: 20px;
    }
    
    .overview-text-word {
        font-size: 15px;
    }
    
    .bottom-section-word {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px;
    }
    
    .timings-section-word,
    .languages-section-word {
        padding: 20px;
    }
    
    .subsection-title-word {
        font-size: 16px;
    }
    
    .timing-item-word {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .language-tags-word {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container-word {
        margin: 0 10px;
        border-radius: 8px;
    }
    
    .professional-overview-word {
        padding: 15px;
    }
    
    .bottom-section-word {
        padding: 15px;
    }
    
    .timings-section-word,
    .languages-section-word {
        padding: 15px;
    }
    
    .overview-text-word {
        font-size: 14px;
        line-height: 1.6;
    }
}












/* CSS for Overview Section */
.overview-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: #ffffff;
}

.overview-header {
    margin-bottom: 40px;
}

.overview-header h2 {
    font-size: 28px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 10px 0;
    letter-spacing: -0.5px;
}

.header-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #27ae60, #2ecc71);
    border-radius: 2px;
}

.overview-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.overview-text {
    font-size: 16px;
    line-height: 1.7;
    color: #34495e;
}

.overview-text p {
    margin-bottom: 20px;
    text-align: justify;
}

.overview-text strong {
    color: #27ae60;
    font-weight: 600;
}

.info-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.info-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 1px solid #dee2e6;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.info-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.info-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 20px 0;
    border-bottom: 2px solid #27ae60;
    padding-bottom: 8px;
}

.timing-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    padding: 8px 0;
}

.timing-row:last-child {
    margin-bottom: 0;
}

.day {
    font-size: 14px;
    color: #495057;
    font-weight: 500;
}

.time {
    font-size: 14px;
    color: #27ae60;
    font-weight: 600;
}

.not-available {
    color: #e74c3c;
}

.languages-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.language-badge {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.3px;
    box-shadow: 0 2px 4px rgba(39, 174, 96, 0.2);
    transition: transform 0.2s ease;
}

.language-badge:hover {
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
    .info-cards {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .overview-container {
        padding: 30px 15px;
    }
    
    .overview-header h2 {
        font-size: 24px;
    }
    
    .overview-text {
        font-size: 15px;
    }
    
    .info-card {
        padding: 20px;
    }
    
    .timing-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .languages-container {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .overview-container {
        padding: 20px 10px;
    }
    
    .info-cards {
        gap: 20px;
    }
    
    .info-card {
        padding: 15px;
    }
    
    .language-badge {
        padding: 6px 12px;
        font-size: 12px;
    }
}