/* ============================
   Global Reset
============================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Segoe UI", Tahoma, sans-serif;
    background: #f5f9fc;
    color: #333;
    line-height: 1.7;
}

/* ============================
   Banner Section
============================ */

.doctor-banner {
    height: 260px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.doctor-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #003366cc, #008080cc);
}

.breadcrumb-custom {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.15);
    padding: 12px 28px;
    border-radius: 30px;
    backdrop-filter: blur(6px);
    color: #fff;
    font-size: 15px;
}

.doc-link {
    color: #fff;
    font-weight: 500;
    transition: 0.3s ease;
}

.doc-link:hover {
    color: #ffd700;
}

/* ============================
   Main Section
============================ */

.doctor-profile {
    padding: 90px 0;
}

.doctor-card {
    background: #ffffff;
    max-width: 1400px;
    margin: -100px auto 0;
    padding: 70px;
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 3;
}

/* ============================
   Headings
============================ */

.doctor-name {
    font-size: 34px;
    font-weight: 700;
    color: #003366;
    margin-bottom: 40px;
}

/* FAQ Section */

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
    transition: 0.3s ease;
}

.faq-question {
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #003366;
}

.faq-question:hover {
    color: #008080;
}

.faq-icon {
    font-size: 22px;
    font-weight: bold;
    transition: 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin-top: 10px;
}
