/* ===============================
   SECTION BASE
   =============================== */

.doctor-profile-section {
    padding: 80px 0;
    background: radial-gradient(circle at top, #eef5ff, #ffffff);
}

/* ===============================
   PAGE TITLE
   =============================== */

.page-title h1 {
    font-weight: 800;
}

.breadcrumbs {
    font-size: 14px;
    color: #777;
}

.breadcrumbs a {
    color: #202125;
    text-decoration: none;
}

/* ===============================
   IMAGE CARD
   =============================== */

/* IMAGE CARD */
.doctor-image-box {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

/* IMAGE FIX */
.doctor-image-box img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    object-position: top center;
}

/* SOCIAL */
.doctor-social {
    position: absolute;
    inset: 0;
    background: rgba(30,144,255,0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    opacity: 0;
    transition: 0.4s;
}

.doctor-image-box:hover .doctor-social {
    opacity: 1;
}


/* ===============================
   DEPARTMENT
   =============================== */

.doctor-department {
    margin-top: 18px;
    font-size: 15px;
}

.doctor-department span {
    color: #777;
}

.doctor-department strong {
    color: #040404;
}

/* ===============================
   GLASS PANEL
   =============================== */

.neo-glass {
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(14px);
    border-radius: 26px;
    padding: 30px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

.doctor-header h2 {
    font-size: 34px;
    font-weight: 800;
}

.doctor-tag {
    display: inline-block;
    margin-top: 6px;
    background: linear-gradient(90deg, #1e90ff, #00c6ff);
    color: #fff;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 13px;
}

/* ===============================
   SUMMARY
   =============================== */

.neo-summary {
    margin-top: 20px;
    background: #f4f8ff;
    padding: 18px;
    border-left: 4px solid #1e90ff;
    border-radius: 12px;
    font-size: 15px;
    line-height: 1.8;
}

/* ===============================
   FLOATING STATS
   =============================== */

.neo-stats {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.neo-stat {
    background: #ffffff;
    padding: 20px;
    border-radius: 20px;
    display: flex;
    gap: 14px;
    align-items: center;
    box-shadow: 0 18px 40px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.neo-stat:hover {
    transform: translateY(-8px);
}

.neo-stat i {
    font-size: 26px;
    color: #1e90ff;
}

.neo-stat small {
    display: block;
    color: #777;
}

.neo-stat strong {
    font-size: 16px;
}

/* ===============================
   COUNTER
   =============================== */

.counter-number {
    font-size: 22px;
    font-weight: 800;
    color: #1e90ff;
}

.plus {
    margin-left: 3px;
}

/* ===============================
   RESPONSIVE
   =============================== */

@media (max-width: 991px) {
    .neo-stats {
        grid-template-columns: 1fr;
    }
}
