:root {
    /* ==== Theme Colors (brand-provided) ==== */
    /* Primary palette */
    --color-primary: #154C56;             /* Deep primary */
    --color-primary-rgb: 21, 76, 86;
    --color-primary-mid: #1B6D7F;         /* Mid primary */
    --color-primary-light: #1B6D7F;       /* Using mid as light for consistency */
    --color-primary-bg: #FFF4E5;          /* Soft background */
    --color-primary-accent: #D9B382;      /* Accent (gold/beige) */

    /* Secondary palette */
    --color-secondary: #5A7381;           /* Base secondary */
    --color-secondary-rgb: 90, 115, 129;
    --color-secondary-hover: #9CB7C7;     /* Lighter hover */

    /* Legacy aliases (kept for compatibility) */
    --red-dark:   #BF0129;
    --red-mid:    #F70E46;
    --red-light:  var(--color-secondary);

    --blue-dark:  var(--color-primary);
    --blue-mid:   var(--color-primary-mid);
    --blue-light: var(--color-primary-light);

    /* ==== Navbar Colors ==== */
    --nav-text:      #ffffff;   /* default menu text color */
    --nav-hover:     var(--color-secondary);
    --nav-bg-scroll: var(--color-primary);
}

html, body {
    font-family: 'Cairo', 'PNU', sans-serif !important;
}

/* PNU Regular */
@font-face {
    font-family: 'PNU';
    src: url('/fonts/pnu/ArbFONTS-PNU-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

/* PNU Medium */
@font-face {
    font-family: 'PNU';
    src: url('/fonts/pnu/ArbFONTS-PNU-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

/* PNU Light */
@font-face {
    font-family: 'PNU';
    src: url('/fonts/pnu/ArbFONTS-PNU-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

/* PNU Bold */
@font-face {
    font-family: 'PNU';
    src: url('/fonts/pnu/ArbFONTS-PNU-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}




/* ========== Desktop Navbar ========== */
#doraDesktopNav {
    background: transparent;
    /* border-bottom: 1px solid rgba(255,255,255,.2); */
    transition: all .3s ease;
}

#doraDesktopNav.scrolled {
    /* background: #03284D; */
    border-bottom: none;
}

.nav-link {
    font-size: 16px;
    font-weight: 600;
    padding: 10px 18px;
}

/* Hide collapse content in desktop unless burger pressed */
@media (min-width: 992px) {
    .desktop-collapse {
        display: none !important;
    }
    .desktop-collapse.show {
        display: flex !important;
    }
}

/* MOBILE NAV */
@media (max-width: 991px) {
    nav.navbar {
        /* background: #03284D; */
    }
}


/* Default nav link color (white like DoraClinic) */
.nav-link {
    color: var(--color-primary-mid) !important;
    transition: 0.3s ease;
}

/* Hover color — DoraClinic uses pink tone #FE4274 */
.nav-link:hover,
.nav-link:focus {
    color: var(--color-secondary) !important;
    text-decoration: none;
}

/* For social icons too */
.nav-link i:hover {
    color: var(--color-secondary) !important;
}

@media (min-width: 992px) {
    .navbar-nav .nav-link {
        padding-inline: 18px !important; /* نفس الموقع */
        font-weight: 600;
    }
}

@media (max-width: 991px) {
    .navbar-nav {
        justify-content: flex-start !important;
        text-align: start !important;
        width: 100%;
    }
}
.header-spacer { flex: 2 0 0; }
@media (max-width: 767px) {
    #header { justify-content: flex-start !important; }
    #header .header-spacer { flex: 0 0 auto; height: 47vh; }
}
.mobile-nav-header { display:flex; gap:12px; align-items:center; width:100%; }
[dir="ltr"] .mobile-nav-header { justify-content:space-between; }
[dir="rtl"] .mobile-nav-header { justify-content:space-between; }
/* form header */

/* MAIN BOX */

#pp{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10%;
}

#appointment{
    position: absolute;
    top: 90%;
     transform: translateY(-50%);

}

@media screen and (max-width: 767px) {

#pp{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 80%;
}

#appointment{
    position: absolute;
    top: 90%;
     transform: translateY(-50%);

}


}



.appointment-box {
    background: #ffffff;
    border-right: 5px solid var(--color-secondary);
    border-left: 5px solid var(--color-primary);
    direction: rtl;
    font-family: 'PNU', sans-serif;
}

/* FORM TITLE */
.form-title {
    color: var(--color-primary);
    font-weight: 700;
    font-size: 28px;
}

/* LABELS */
.form-label {
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 6px;
}

/* INPUTS & SELECT */
.form-input {
    border: 2px solid #dfe6ee;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 15px;
    transition: 0.25s ease;
}

.form-input:focus {
    border-color: var(--color-secondary);
    box-shadow: 0 0 0 0.15rem rgba(var(--color-secondary-rgb), 0.25);
}

/* SUBMIT BUTTON */
.submit-btn {
    background: var(--color-primary);
    color: #fff;
    font-weight: 600;
    font-size: 17px;
    border-radius: 8px;
    transition: 0.25s ease;
}

.submit-btn:hover {
    background: var(--color-secondary);
    color: #fff;
}

/* Mobile */
@media (max-width: 767px) {
    .form-title {
        text-align: center;
    }
}





/* social media bar */
:root {
    --bar-width: 50px;
    --item-height: 46px;
    --label-bg: var(--color-primary);
}

/* MAIN BAR */
.side-social {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;

    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* RTL / LTR */
html[lang="ar"] .side-social { left: 0; }
html:not([lang="ar"]) .side-social { right: 0; }

.whatsapp-float{
    position: fixed;
    bottom: 18px;
    z-index: 9999;
    width: 56px;
    height: 56px;
    border-radius: 999px;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(0,0,0,0.22);
}

html[lang="ar"] .whatsapp-float { left: 18px; }
html:not([lang="ar"]) .whatsapp-float { right: 18px; }

.whatsapp-float:hover{
    background: #1ebe57;
    color: #fff;
}

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

/* EACH ITEM */
.side-social .item {
    width: var(--bar-width);
    height: var(--item-height);

    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(8px);
    border-radius: 8px 0 0 8px;

    display: flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;
    color: var(--color-primary);
    font-size: 20px;

    position: relative;
    transition: .3s ease;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0,0,0,0.12);
}

html[lang="ar"] .side-social .item {
    border-radius: 0 8px 8px 0;
}

/* Label slide reveal */
.side-social .item span {
    position: absolute;
    top: 0;
    height: 100%;
    padding: 0 14px;

    display: flex;
    align-items: center;
    white-space: nowrap;

    background: var(--label-bg);
    color: #fff;
    font-size: 14px;

    transform: translateX(120%);
    transition: .35s ease;
}

/* RTL direction */
html[lang="ar"] .side-social .item span {
    right: 100%;
    transform: translateX(-120%);
    border-radius: 0 8px 8px 0;
}

html:not([lang="ar"]) .side-social .item span {
    left: 100%;
    border-radius: 8px 0 0 8px;
}

/* HOVER EFFECT */
.side-social .item:hover {
    width: 160px;
}

/* Slide in label */
html:not([lang="ar"]) .side-social .item:hover span {
    transform: translateX(0);
}
html[lang="ar"] .side-social .item:hover span {
    transform: translateX(0);
}

/* ICON COLORS */
.side-social .item:hover i {
    color: var(--color-secondary);
    transition: .3s;
}

/* MOBILE MODE */
@media (max-width: 768px) {
    .side-social {
        gap: 6px;
    }

    .side-social .item {
        width: var(--bar-width);
        height: 40px;
    }

    .side-social .item:hover {
        width: 140px;
    }

    .side-social .item span {
        font-size: 12px;
    }
}


/* end social media bar */

.center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 18px;
}

.center1{
  width: 100%;
  height: auto;
  opacity: 0.6;
}

html[lang="en"] .Cinque {
    transform: scaleX(-1);
}

/* services */

/* Section container */
.services-section {
    font-family: 'PNU', sans-serif;
}

/* DARK MODE */
.services-section.bg-dark {
    /* background: #0d0f12 !important; */
    background: #154c56 !important;
    color: #fff !important;
}

/* Title */
.services-title {
    font-size: 34px;
    font-weight: 700;
    color: #ffffff;
}

.services-divider {
    width: 80px;
    height: 3px;
    background: var(--color-secondary);
    border-radius: 10px;
    margin-top: 6px;
}

/* Tabs */
.services-tabs .nav-link {
    margin: 0 6px;
    border-radius: 25px;
    padding: 8px 24px;
    font-weight: 600;
    color: #ddd;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    transition: .25s ease;
}

.services-tabs .nav-link:hover {
    background: rgba(255,255,255,0.15);
    color: #fff;
}

.services-tabs .nav-link.active {
    background: var(--color-secondary);
    border-color: var(--color-secondary);
    color: #fff !important;
}

/* Icon box */
.service-icon-box {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    align-items: flex-start;
    direction: rtl;
}

html:not([lang="ar"]) .service-icon-box {
    direction: ltr;
}

.icon-square {
     /* width: 58px;
    height: 58px; */
    width: 36px;
    height: 36px;
    border-radius: 12px;
    border: 2px solid var(--color-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(45deg);
    background: rgba(255,255,255,0.08);
    flex-shrink: 0;
    transition: .3s ease;
}

.icon-square i {
    transform: rotate(-45deg);
    font-size: 15px;
        /* font-size: 22px; */

    color: var(--color-secondary);
}

/* Hover */
.service-icon-box:hover .icon-square {
    background: var(--color-secondary);
    border-color: #ffffff;
}

.service-icon-box:hover .icon-square i {
    color: #fff;
}

/* Text */
.service-icon-box h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
    color: #fff;
}

.service-icon-box p {
    font-size: 14px;
    color: #ccc;
    margin: 0;
}

/* Image */
.services-image {
    max-width: 100%;
    border-radius: 28px;
    border: 2px solid rgba(255,255,255,0.1);
    box-shadow: 0 0 20px rgba(255,255,255,0.05);
}

/* Responsive */
@media (max-width: 992px) {
    .cc{
        display: flex;
        justify-content: center;
        align-items: start;
        width: 100%;
        text-align: start;
    }
    .service-icon-box {
        /* justify-content: center; */
        width: 50%;
        text-align: start;
    }
}



/* end services */


/* footer */


.footer-area {
    background: #0e0f12;
    padding-bottom: 30px;
    font-family: 'PNU', sans-serif;
    direction: rtl;
}

html[lang="en"] .footer-area {
    direction: ltr;
}

/* Titles */
.footer-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 15px;
}

/* Text Lists */
.footer-info li {
    margin-bottom: 8px;
    color: #ccc;
    font-size: 15px;
}

.footer-info-sm {
    color: #ccc;
    font-size: 14px;
}

@media screen and (max-width: 768px) {

    .footer-info , .footer-links{
            display: inline-block;
    text-align: start;
    width: inherit;
    }

}

.footer-link {
    color: var(--color-secondary);
}

/* Social Icons */
.social-icons .social {
    background: #ffffff10;
    color: #fff;
    padding: 10px 13px;
    margin: 4px;
    border-radius: 50%;
    font-size: 18px;
    transition: .3s ease;
}

.social-icons .social:hover {
    background: var(--color-secondary);
}

/* Form */
.footer-form .form-control {
    background: #ffffff10;
    border: 1px solid #ffffff20;
    color: #fff;
}

.footer-form .form-control::placeholder {
    color: #bbb;
}

.btn-footer {
    background: var(--color-secondary);
    color: #fff;
    border-radius: 30px;
    padding: 10px;
}

.btn-footer:hover {
    background: var(--color-secondary-hover);
}

/* Payment icons */
.payment-methods .payment {
    background: #222;
    padding: 6px 12px;
    margin: 4px;
    border-radius: 8px;
    color: #fff;
    display: inline-block;
    border: 1px solid #333;
}

/* Footer links */
.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #ccc;
    transition: .3s ease;
}

.footer-links a:hover {
    color: var(--color-secondary);
}

/* logos */
.official-logo {
    height: 50px;
    margin-top: 5px;
}

/* Bottom */
.footer-bottom {
    border-top: 1px solid #ffffff15;
    color: #bbb;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-area {
        text-align: center;
    }
}


.official-box {
    background: #ffffff10;
    padding: 12px 15px;
    border-radius: 12px;
    margin-bottom: 12px;
    transition: .3s ease;
    border: 1px solid #ffffff15;
}

.official-box:hover {
    background: #ffffff20;
    border-color: var(--color-secondary);
    transform: translateX(-5px);
}

html[lang="en"] .official-box:hover {
    transform: translateX(5px);
}

.official-icon {
    color: var(--color-secondary);
}


/* end footer */
   .payment-methods {
        display: flex;
        gap: 12px;
        flex-wrap: wrap;
        align-items: center;
    }

    .payment-icon {
        width: 45px;
        height: 45px;
        border-radius: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
        background: #fff;
        border: 1px solid #ddd;
        transition: .2s;
        overflow: hidden;
    }

    .payment-icon:hover {
        background: #f1f1f1;
        transform: translateY(-4px);
    }

    .payment-icon svg,
    .payment-icon i {
        font-size: 22px;
    }

    .payment-img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        padding: 6px;
    }

.doctor-card {
    background: #0e0f12;
    border: 2px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.doctor-image {
    width: 100%;
    display: block;
}

.doctor-info {
    padding: 16px 18px;
}

.doctor-name {
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    margin: 0 0 6px;
}

.doctor-role {
    color: var(--color-secondary);
    font-weight: 600;
    margin-bottom: 8px;
}

.doctor-desc {
    color: #ccc;
    font-size: 14px;
    margin: 0;
}

.doctor-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 35px rgba(0,0,0,0.4);
    border-color: var(--color-secondary);
}

.doctor-photo {
    position: relative;
    height: 320px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.doctor-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 20%;
    display: block;
    transform: scale(1.03);
    transition: transform .35s ease;
}

.doctor-card:hover .doctor-image {
    transform: scale(1.08);
}

.doctor-photo::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 30%;
    pointer-events: none;
    background: linear-gradient(0deg, rgba(14,15,18,0.85), rgba(14,15,18,0));
}

.doctor-section .services-title {
    color: #fff;
}

.doctor-section .services-divider {
    width: 90px;
    height: 4px;
    background: var(--color-secondary);
    border-radius: 999px;
}
/* doctor page social (horizontal, reuses side-social item design) */
.doctor-social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.doctor-social .item {
    height: 40px;
    padding: 0 12px;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(8px);
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--color-primary);
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(0,0,0,0.12);
    transition: .3s ease;
}
.doctor-social .item i { font-size: 18px; }
.doctor-social .item span {
    font-size: 13px;
    background: var(--label-bg);
    color: #fff;
    padding: 4px 10px;
    border-radius: 6px;
}
.doctor-social .item:hover i { color: var(--color-secondary); }

.doctor-slider .owl-nav button {
    background: var(--color-secondary);
    color: #fff;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.doctor-slider .owl-nav {
    margin-top: 12px;
    display: flex;
    gap: 10px;
    justify-content: center;
}

.doctor-slider .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    background: #ffffff30;
    border-radius: 50%;
}

.doctor-slider .owl-dots .owl-dot.active span {
    background: var(--color-secondary);
}

@media (max-width: 576px) {
    .doctor-info { padding: 14px; }
    .doctor-name { font-size: 17px; }
    .doctor-desc { font-size: 13px; }
}
.review-card {
    background: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 16px;
    padding: 16px;
    color: #333;
    box-shadow: 0 8px 18px rgba(0,0,0,0.08);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 10px;
}

.review-google {
    width: 22px;
    height: 22px;
}

.review-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #ffffff15;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.review-meta {
    font-size: 13px;
    color: #888;
    margin-top: 8px;
}

.review-stars {
    color: #ffa800;
    margin: 8px 0;
}

.review-text {
    font-size: 14px;
    color: #555;
    margin-bottom: 10px;
}

.review-author {
    font-weight: 700;
    color: #2a61d8;
}

.reviews-slider .owl-nav button {
    background: #ffffff;
    color: #03284D;
    border: 1px solid #e6e6e6;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 18px rgba(0,0,0,0.08);
}

.reviews-slider .owl-nav {
    margin-top: 12px;
    display: flex;
    gap: 10px;
    justify-content: center;
}

.reviews-slider .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    background: #ddd;
    border-radius: 50%;
}

.reviews-slider .owl-dots .owl-dot.active span {
    background: #ffa800;
}

.testimonial-section .services-title {
    color: var(--color-primary);
}

.testimonial-section .services-divider {
    width: 90px;
    height: 4px;
    background: var(--color-primary);
    border-radius: 999px;
}

.review-summary {
    background: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 16px;
    padding: 18px;
    text-align: center;
    box-shadow: 0 8px 18px rgba(0,0,0,0.08);
}

.summary-logo img { width: 40px; height: 40px; }

.summary-rating { display: flex; align-items: center; justify-content: center; gap: 8px; margin: 8px 0; }
.summary-stars { color: #ffa800; }
.summary-score { font-weight: 800; color: #333; }
.summary-text { color: #666; font-size: 14px; }
.summary-powered { color: #666; font-size: 13px; }
.google-word { color: #2a61d8; font-weight: 700; }

.google-button {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #ffffff;
    border: 1px solid #e6e6e6;
    border-radius: 999px;
    padding: 8px 14px;
    color: #333;
    text-decoration: none;
    box-shadow: 0 8px 18px rgba(0,0,0,0.08);
}

/* ==== Bootstrap overrides (primary) ==== */
.btn-primary {
    background-color: var(--color-secondary);
    border-color: var(--color-secondary);
}
.btn-primary:hover, .btn-primary:focus {
    background-color: var(--color-secondary-hover);
    border-color: var(--color-secondary-hover);
}
.text-primary { color: var(--color-primary) !important; }
.bg-primary { background-color: var(--color-primary) !important; }
.testimonial-section .elfsight-app-b244573f-e87d-4ec6-8560-20199538d160 .eapps-widget-title,
.testimonial-section .elfsight-app-b244573f-e87d-4ec6-8560-20199538d160 .eapps-widget-title-container,
.testimonial-section .elfsight-app-b244573f-e87d-4ec6-8560-20199538d160 h1,
.testimonial-section .elfsight-app-b244573f-e87d-4ec6-8560-20199538d160 h2,
.testimonial-section .elfsight-app-b244573f-e87d-4ec6-8560-20199538d160 h3 {
    display: none !important;
}
.clients-section .services-title {
    color: var(--color-primary);
}

.clients-section .services-divider {
    width: 90px;
    height: 4px;
    background: var(--color-primary);
    border-radius: 999px;
}

.client-logo-card {
    background: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 20px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 22px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.client-logo-img {
    max-height: 80px;
    max-width: 180px;
    /* filter: grayscale(100%); */
    /* opacity: 0.85; */
    /* transition: filter .25s ease, opacity .25s ease, transform .25s ease, filter .25s ease; */
}

.client-logo-card:hover .client-logo-img {
    filter: none drop-shadow(0 4px 10px rgba(0,0,0,0.12));
    opacity: 1;
    transform: scale(1.06);
}

.client-logo-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #FE4274, #03284D);
    opacity: .85;
    transition: height .25s ease, opacity .25s ease;
}

.client-logo-card::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    right: -60px;
    bottom: -60px;
    background: radial-gradient(closest-side, rgba(254,66,116,0.12), transparent 60%);
    pointer-events: none;
    transition: opacity .25s ease, transform .25s ease;
}

.client-logo-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 30px rgba(0,0,0,0.12);
    border-color: #f3c0d1;
}

.client-logo-card:hover::before { height: 6px; opacity: 1; }
.client-logo-card:hover::after { transform: scale(1.05); opacity: .18; }

.clients-slider .owl-nav button {
    background: #ffffff;
    color: var(--color-primary);
    border: 1px solid #e6e6e6;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 18px rgba(0,0,0,0.08);
}

.clients-slider .owl-nav {
    margin-top: 12px;
    display: flex;
    gap: 10px;
    justify-content: center;
}

.clients-slider .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    background: #ddd;
    border-radius: 50%;
}

.clients-slider .owl-dots .owl-dot.active span {
    background: var(--color-primary);
}
.doctor-section .col-lg-5.text-center { display: flex; justify-content: center; }
.doctor-section .col-lg-5.text-center img.img-fluid.rounded { width: 200px; height: 200px; border-radius: 50%; object-fit: cover; box-shadow: 0 12px 30px rgba(0,0,0,.35); border: 6px solid #0e0f12; outline: 4px solid #FE4274; }
.doctor-section .col-lg-5.text-center img.img-fluid.rounded { outline-color: var(--color-secondary); }
.doctor-section h2.mb-2 { color: #fff; font-weight: 700; }
.doctor-section .text-muted { color: #FE4274 !important; font-weight: 600; }
.doctor-section .text-muted { color: var(--color-secondary) !important; }
.doctor-section p { color: #ccc; }
