:root {
    --doctor-primary: #146c94;
    --doctor-accent: #0f9f93;
    --doctor-dark: #071826;
    --doctor-ink: #102233;
    --doctor-text: #536574;
    --doctor-line: #dce8ee;
    --doctor-soft: #eef8f7;
    --doctor-blue-soft: #eef5ff;
    --doctor-warm: #f8f3eb;
    --doctor-white: #ffffff;
}
.bg-1{
    background: url('../img/banner/bg-1.png') no-repeat scroll 0 0;
    background-size: cover;
}
.bg-gradient-1{
    background: linear-gradient(90deg, rgba(20, 108, 148, 0.95), rgba(15, 159, 147, 0.9)),
        url("../img/element/footer-bg2.png") center/cover no-repeat;
}
.doctor-site {
    color: var(--doctor-ink);
    background: var(--doctor-white);
    overflow-x: hidden;
}

.doctor-site,
.doctor-site p,
.doctor-site a,
.doctor-site li,
.doctor-site input,
.doctor-site textarea,
.doctor-site select,
.doctor-site button {
    letter-spacing: 0;
}

.doctor-site a {
    color: inherit;
    text-decoration: none;
}

.doctor-site img {
    max-width: 100%;
}

.doctor-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--doctor-white);
    box-shadow: 0 12px 36px rgba(16, 34, 51, 0.08);
}

.doctor-topbar {
    color: #dcecf3;
    background: var(--doctor-dark);
    font-size: 14px;
}

.doctor-topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 42px;
}

.doctor-topbar a,
.doctor-topbar span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.doctor-topbar a:hover {
    color: var(--doctor-white);
}

.doctor-navbar {
    min-height: 82px;
    padding: 12px 0;
    background: var(--doctor-white);
}

.doctor-brand,
.doctor-footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.doctor-brand-icon {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 46px;
    color: var(--doctor-white);
    background: var(--doctor-primary);
    border-radius: 8px;
}

.doctor-brand strong {
    display: block;
    color: var(--doctor-ink);
    font-size: 22px;
    line-height: 1.1;
}

.doctor-brand small {
    display: block;
    max-width: 300px;
    color: var(--doctor-text);
    font-size: 13px;
    line-height: 1.35;
    margin-top: 4px;
}

.doctor-nav-toggle {
    width: 44px;
    height: 44px;
    color: var(--doctor-ink);
    border: 1px solid var(--doctor-line);
    border-radius: 6px;
    padding: 0;
}

.doctor-navbar .nav-link {
    color: var(--doctor-ink);
    font-size: 15px;
    /* font-weight: 800; */
    font-weight: 600;
    padding: 12px 10px;
}

.doctor-navbar .nav-link:hover,
.doctor-navbar .nav-link.active,
.doctor-dropdown .dropdown-item:hover,
.doctor-dropdown .dropdown-item:focus {
    color: var(--doctor-primary);
}

.doctor-dropdown {
    min-width: 290px;
    max-height: calc(100vh - 110px);
    overflow-y: auto;
    padding: 10px;
    border: 1px solid var(--doctor-line);
    border-radius: 8px;
    box-shadow: 0 20px 55px rgba(16, 34, 51, 0.14);
}

.doctor-dropdown .dropdown-item {
    border-radius: 6px;
    color: var(--doctor-ink);
    /* font-weight: 700; */
    font-weight: 600;
    padding: 10px 12px;
}

.doctor-nav-btn {
    margin-left: 16px;
    min-height: 44px;
    padding: 11px 18px;
}

.doctor-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 48px;
    padding: 13px 22px;
    color: var(--doctor-white);
    background: var(--doctor-primary);
    border: 1px solid var(--doctor-primary);
    border-radius: 6px;
    font-weight: 600;
    line-height: 1.2;
    transition: 0.2s ease;
}

.doctor-site .doctor-btn,
.doctor-site .doctor-btn i {
    color: var(--doctor-white) !important;
}

.doctor-btn:hover {
    color: var(--doctor-white);
    background: var(--doctor-accent);
    border-color: var(--doctor-accent);
    transform: translateY(-1px);
}

.doctor-btn-secondary {
    color: var(--doctor-primary);
    background: var(--doctor-white);
    border-color: var(--doctor-line);
}

.doctor-site .doctor-btn.doctor-btn-secondary,
.doctor-site .doctor-btn.doctor-btn-light {
    color: var(--doctor-primary) !important;
}

.doctor-site .doctor-btn.doctor-btn-secondary i,
.doctor-site .doctor-btn.doctor-btn-light i {
    color: var(--doctor-primary) !important;
}

.doctor-btn-secondary:hover {
    color: var(--doctor-white);
    background: var(--doctor-primary);
    border-color: var(--doctor-primary);
}

.doctor-btn-light {
    color: var(--doctor-primary);
    background: var(--doctor-white);
    border-color: var(--doctor-white);
}

.doctor-btn-outline-light {
    color: var(--doctor-white);
    background: transparent;
    border-color: rgba(255, 255, 255, 0.55);
}

.doctor-site .doctor-btn.doctor-btn-outline-light,
.doctor-site .doctor-btn.doctor-btn-outline-light i {
    color: var(--doctor-white) !important;
}

.doctor-btn-light:hover,
.doctor-btn-outline-light:hover {
    color: var(--doctor-ink);
    background: var(--doctor-white);
    border-color: var(--doctor-white);
}

.doctor-site .doctor-btn:hover,
.doctor-site .doctor-btn:hover i,
.doctor-site .doctor-btn.doctor-btn-light:hover,
.doctor-site .doctor-btn.doctor-btn-light:hover i,
.doctor-site .doctor-btn.doctor-btn-secondary:hover,
.doctor-site .doctor-btn.doctor-btn-secondary:hover i,
.doctor-site .doctor-btn.doctor-btn-outline-light:hover,
.doctor-site .doctor-btn.doctor-btn-outline-light:hover i {
    color: var(--doctor-white) !important;
}

.doctor-site .doctor-btn.doctor-btn-light:hover {
    background: var(--doctor-accent);
    border-color: var(--doctor-accent);
}

.doctor-site .doctor-btn.doctor-btn-outline-light:hover {
    background: var(--doctor-white);
    border-color: var(--doctor-white);
}

.doctor-site .doctor-btn.doctor-btn-outline-light:hover,
.doctor-site .doctor-btn.doctor-btn-outline-light:hover i {
    color: var(--doctor-primary) !important;
}

.doctor-hero {
    position: relative;
    overflow: hidden;
    padding: 98px 0 88px;
    color: var(--doctor-white);
    background:
        linear-gradient(90deg, rgba(7, 24, 38, 0.94), rgba(20, 108, 148, 0.74)),
        url("../img/banner/bg-color3.jpg") center/cover no-repeat;
}

.doctor-hero-image-only {
    padding: 0;
    background: var(--doctor-dark);
}

.doctor-hero-slider {
    position: relative;
    z-index: 1;
}

.doctor-hero-slider .swiper-slide {
    height: auto;
}

.doctor-hero-slide-image {
    display: block;
    width: 100%;
    height: auto;
}

.doctor-hero-control-wrap {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 44px;
    z-index: 3;
    pointer-events: none;
}

.doctor-hero-controls {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 8px;
    background: rgba(7, 24, 38, 0.38);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 8px;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
    pointer-events: auto;
}

.doctor-hero-nav {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--doctor-white);
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    transition: 0.2s ease;
}

.doctor-hero-nav:hover {
    background: var(--doctor-accent);
    border-color: var(--doctor-accent);
}

.doctor-hero-nav i {
    color: var(--doctor-white);
}

.doctor-hero-pagination.swiper-pagination-horizontal,
.doctor-hero-pagination.swiper-pagination-bullets {
    position: static;
    width: auto;
    display: flex;
    align-items: center;
    gap: 8px;
    transform: none;
}

.doctor-hero-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 !important;
    background: rgba(255, 255, 255, 0.58);
    opacity: 1;
    transition: 0.2s ease;
}

.doctor-hero-pagination .swiper-pagination-bullet-active {
    width: 28px;
    border-radius: 999px;
    background: var(--doctor-white);
}

.doctor-hero-content {
    position: relative;
    z-index: 1;
}

.doctor-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--doctor-accent);
    /* font-weight: 900; */
    font-weight: 600;
    margin-bottom: 12px;
}

.doctor-hero .doctor-kicker {
    color: #dff8f5;
}

.doctor-hero h1 {
    color: var(--doctor-white);
    font-size: 66px;
    line-height: 1.02;
    margin-bottom: 14px;
}

.doctor-hero h2 {
    color: #cbeff4;
    font-size: 28px;
    line-height: 1.25;
    margin-bottom: 20px;
}

.doctor-hero p {
    max-width: 690px;
    color: #eff8fb;
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 28px;
}

.doctor-hero-actions,
.doctor-button-row,
.doctor-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.doctor-hero-visual {
    position: relative;
    z-index: 1;
}

.doctor-hero-visual img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    object-position: center top;
    border: 10px solid rgba(255, 255, 255, 0.88);
    border-radius: 8px;
    box-shadow: 0 28px 75px rgba(0, 0, 0, 0.26);
}

.doctor-hero-note {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    padding: 18px;
    color: var(--doctor-ink);
    background: rgba(255, 255, 255, 0.94);
    border-radius: 8px;
    box-shadow: 0 15px 38px rgba(16, 34, 51, 0.18);
}

.doctor-hero-note strong,
.doctor-hero-note span {
    display: block;
}

.doctor-hero-note span {
    color: var(--doctor-text);
    margin-top: 4px;
}

.doctor-quick-panel {
    position: relative;
    z-index: 2;
    margin-top: -36px;
}

.doctor-quick-panel .container {
    background: var(--doctor-white);
    border: 1px solid var(--doctor-line);
    border-radius: 8px;
    box-shadow: 0 18px 48px rgba(16, 34, 51, 0.12);
    overflow: hidden;
}

.doctor-quick-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    height: 100%;
    padding: 24px;
    border-right: 1px solid var(--doctor-line);
}

.doctor-quick-item-last {
    border-right: 0;
}

.doctor-quick-item i,
.doctor-card-icon,
.doctor-feature i {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 48px;
    color: var(--doctor-primary);
    background: var(--doctor-soft);
    border-radius: 8px;
}

.doctor-quick-item span {
    display: block;
    color: var(--doctor-text);
    font-weight: 700;
    margin-bottom: 4px;
}

.doctor-quick-item a,
.doctor-quick-item strong {
    color: var(--doctor-ink);
    font-size: 18px;
    font-weight: 900;
    line-height: 1.35;
}

.doctor-section {
    padding: 92px 0;    
}

.doctor-section-soft {
    background: var(--doctor-soft);
}

.doctor-section-muted {
    background: var(--doctor-blue-soft);
}

.doctor-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 42px;
}

.doctor-section-title {
    color: var(--doctor-ink);
    font-size: 44px;
    line-height: 1.12;
    margin-bottom: 18px;
}

.doctor-section-text {
    color: var(--doctor-text);
    font-size: 17px;
    line-height: 1.75;
}

.doctor-link,
.doctor-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--doctor-primary);
    /* font-weight: 900; */
    font-weight: 600;
}

.doctor-link:hover,
.doctor-card-link:hover {
    color: var(--doctor-accent);
}

.doctor-image-stack {
    position: relative;
    padding-right: 28px;
}

.doctor-image-stack img,
.doctor-rounded-image {
    width: 100%;
    min-height: 420px;
    object-fit: cover;
    border-radius: 8px;
}

.doctor-image-badge {
    position: absolute;
    right: 0;
    bottom: 28px;
    width: 270px;
    padding: 22px;
    color: var(--doctor-white);
    background: var(--doctor-primary);
    border-radius: 8px;
    box-shadow: 0 18px 46px rgba(20, 108, 148, 0.24);
}

.doctor-image-badge strong,
.doctor-image-badge span {
    display: block;
}

.doctor-image-badge span {
    margin-top: 8px;
    color: #e8f7fb;
}

.doctor-check-list,
.doctor-mini-list,
.doctor-footer-list,
.doctor-sidebar-links,
.doctor-contact-list,
.doctor-breadcrumb {
    padding: 0;
    margin: 0;
    list-style: none;
}

.doctor-check-list {
    display: grid;
    gap: 14px;
    margin: 24px 0 28px;
}

.doctor-check-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--doctor-text);
    line-height: 1.6;
}

.doctor-check-list i {
    color: var(--doctor-accent);
    margin-top: 5px;
}

.doctor-check-list-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.doctor-card {
    height: 100%;
    background: var(--doctor-white);
    border: 1px solid var(--doctor-line);
    border-radius: 8px;
    overflow: hidden;
    transition: 0.2s ease;
}

.doctor-card:hover {
    border-color: rgba(20, 108, 148, 0.34);
    box-shadow: 0 20px 48px rgba(16, 34, 51, 0.1);
    transform: translateY(-3px);
}

.doctor-card-image {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--doctor-blue-soft);
}

.doctor-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.25s ease;
}

.doctor-procedure-visual,
.doctor-blog-visual {
    position: relative;
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 16px;
    padding: 28px;
    overflow: hidden;
    color: var(--doctor-white);
    background:
        linear-gradient(135deg, rgba(20, 108, 148, 0.96), rgba(15, 159, 147, 0.88)),
        url("../img/element/special-element.png") center/cover no-repeat;
}

.doctor-procedure-visual:before,
.doctor-blog-visual:before {
    content: "";
    position: absolute;
    inset: 14px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 8px;
}

.doctor-procedure-visual i,
.doctor-blog-visual i {
    position: relative;
    z-index: 1;
    width: 66px;
    height: 66px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--doctor-primary);
    background: var(--doctor-white);
    border-radius: 8px;
    font-size: 28px;
}

.doctor-procedure-visual span,
.doctor-blog-visual span {
    position: relative;
    z-index: 1;
    max-width: 290px;
    color: var(--doctor-white);
    font-size: 22px;
    font-weight: 600;
    line-height: 1.22;
    text-align: center;
}

.doctor-procedure-visual-large,
.doctor-blog-visual-large {
    min-height: 360px;
    margin-bottom: 34px;
    border-radius: 8px;
}

.doctor-procedure-visual-large i,
.doctor-blog-visual-large i {
    width: 86px;
    height: 86px;
    font-size: 36px;
}

.doctor-procedure-visual-large span,
.doctor-blog-visual-large span {
    max-width: 640px;
    font-size: 34px;
}

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

.doctor-card-body,
.doctor-story-card {
    padding: 26px;
}

.doctor-card h2,
.doctor-card h3 {
    color: var(--doctor-ink);
    font-size: 22px;
    line-height: 1.28;
    margin: 16px 0 10px;
}

.doctor-card p {
    color: var(--doctor-text);
    line-height: 1.65;
}

.doctor-mini-list {
    display: grid;
    gap: 9px;
    margin: 16px 0 20px;
}

.doctor-mini-list li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    color: var(--doctor-text);
    line-height: 1.45;
}

.doctor-mini-list i {
    color: var(--doctor-accent);
    margin-top: 4px;
}

.doctor-panel,
.doctor-form-panel,
.doctor-contact-card,
.doctor-side-card {
    background: var(--doctor-white);
    border: 1px solid var(--doctor-line);
    border-radius: 8px;
    padding: 34px;
    box-shadow: 0 16px 42px rgba(16, 34, 51, 0.08);
}

.doctor-panel-dark {
    color: var(--doctor-white);
    background: var(--doctor-dark);
    border-color: var(--doctor-dark);
}

.doctor-panel-dark h2,
.doctor-panel-dark p {
    color: var(--doctor-white);
}

.doctor-timing-list {
    display: grid;
    gap: 0;
    margin: 24px 0;
}

.doctor-timing-list.compact {
    margin: 12px 0 0;
}

.doctor-timing-row {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 17px 0;
    border-bottom: 1px solid var(--doctor-line);
}

.doctor-panel-dark .doctor-timing-row {
    border-color: rgba(255, 255, 255, 0.16);
}

.doctor-timing-row:last-child {
    border-bottom: 0;
}

.doctor-timing-row strong {
    color: var(--doctor-ink);
    font-size: 17px;
}

.doctor-panel-dark .doctor-timing-row strong {
    color: var(--doctor-white);
}

.doctor-timing-row span {
    color: var(--doctor-text);
    font-weight: 600;
    text-align: right;
}

.doctor-panel-dark .doctor-timing-row span {
    color: #cce4ee;
}

.doctor-map-wrap {
    position: relative;
    min-height: 360px;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(238, 248, 247, 0.95), rgba(238, 245, 255, 0.95)),
        url("../img/team/dr-hardik-shah.png") center/cover no-repeat;
    border: 1px solid var(--doctor-line);
    border-radius: 8px;
    box-shadow: 0 16px 42px rgba(16, 34, 51, 0.1);
}

.doctor-map-wrap-large {
    min-height: 520px;
}

.doctor-map {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    opacity: 0.82;
}

.doctor-map-overlay {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    z-index: 1;
    max-width: 420px;
    padding: 22px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid var(--doctor-line);
    border-radius: 8px;
    box-shadow: 0 14px 34px rgba(16, 34, 51, 0.14);
}

.doctor-map-overlay i {
    color: var(--doctor-primary);
    margin-bottom: 10px;
}

.doctor-map-overlay strong,
.doctor-map-overlay span,
.doctor-map-overlay a {
    display: block;
}

.doctor-map-overlay strong {
    color: var(--doctor-ink);
    font-size: 20px;
    margin-bottom: 6px;
}

.doctor-map-overlay span {
    color: var(--doctor-text);
    line-height: 1.55;
}

.doctor-map-overlay a {
    color: var(--doctor-primary);
    /* font-weight: 900; */
    font-weight: 600;
    margin-top: 12px;
}

.doctor-page-hero {
    color: var(--doctor-white);
    /* background:
        linear-gradient(90deg, rgba(7, 24, 38, 0.94), rgba(15, 159, 147, 0.68)),
        url("../img/team/dr-hardik-shah.png") center 28%/cover no-repeat; */
    /* background:
        linear-gradient(90deg, rgba(7, 24, 38, 0.94), rgba(15, 159, 147, 0.68)),
        url("../img/banner/bg-2.png") center 28%/cover no-repeat; */

    background:
        linear-gradient(90deg, rgba(7, 24, 38, 0.94), rgba(15, 159, 147, 0.68)),
        url("../img/banner/bg-2.png") center 20%/cover no-repeat;
}

.doctor-page-hero-inner {
    max-width: 860px;
    padding: 96px 0;
}

.doctor-page-hero h1 {
    color: var(--doctor-white);
    font-size: 54px;
    line-height: 1.1;
    margin-bottom: 14px;
}

.doctor-page-hero p {
    color: #ecf8fb;
    font-size: 18px;
    line-height: 1.7;
    margin: 0;
}

.doctor-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
    color: #d6eef5;
    font-weight: 500;
}

.doctor-breadcrumb a:hover {
    color: var(--doctor-white);
}

.doctor-profile-photo img {
    width: 100%;
    max-height: 650px;
    object-fit: cover;
    object-position: center top;
    border-radius: 8px;
    box-shadow: 0 22px 58px rgba(16, 34, 51, 0.14);
}

.doctor-degree {
    color: var(--doctor-primary);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 16px;
}

.doctor-info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin: 28px 0;
}

.doctor-info-grid div,
.doctor-feature,
.doctor-highlight,
.doctor-note-box {
    border: 1px solid var(--doctor-line);
    border-radius: 8px;
    background: var(--doctor-white);
}

.doctor-info-grid div {
    padding: 18px;
}

.doctor-info-grid span {
    display: block;
    color: var(--doctor-text);
    /* font-weight: 800; */
    font-weight: 500;
    margin-bottom: 6px;
}

.doctor-info-grid strong {
    display: block;
    color: var(--doctor-ink);
    line-height: 1.4;
}

.doctor-feature {
    height: 100%;
    padding: 26px;
}

.doctor-feature h3 {
    color: var(--doctor-ink);
    font-size: 22px;
    margin: 18px 0 10px;
}

.doctor-feature p {
    color: var(--doctor-text);
    line-height: 1.65;
    margin: 0;
}

.doctor-expertise-row {
    display: flex;
    align-items: center;
    gap: 14px;
    height: 100%;
    padding: 20px;
    color: var(--doctor-ink);
    background: var(--doctor-white);
    border: 1px solid var(--doctor-line);
    border-radius: 8px;
    font-size: 18px;
    font-weight: 900;
}

.doctor-expertise-row i {
    color: var(--doctor-primary);
}

.doctor-expertise-row:hover {
    color: var(--doctor-primary);
    border-color: rgba(20, 108, 148, 0.34);
    box-shadow: 0 14px 34px rgba(16, 34, 51, 0.08);
}

.doctor-detail-image,
.doctor-detail-image-main {
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 34px;
}

.doctor-detail-image img,
.doctor-detail-image-main {
    width: 100%;
    /* max-height: 430px; */
    object-fit: cover;
}

.doctor-content-block {
    margin-bottom: 42px;
}

.doctor-content-block h2 {
    color: var(--doctor-ink);
    font-size: 34px;
    margin-bottom: 14px;
}

.doctor-content-block p,
.doctor-article p {
    color: var(--doctor-text);
    font-size: 17px;
    line-height: 1.78;
}

.doctor-highlight {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    height: 100%;
    padding: 18px;
}

.doctor-highlight i {
    color: var(--doctor-accent);
    margin-top: 4px;
}

.doctor-highlight span {
    color: var(--doctor-ink);
    font-weight: 600;
    line-height: 1.45;
}

.doctor-sidebar {
    position: sticky;
    /* top: 148px; */
    display: grid;
    gap: 18px;
}

.doctor-side-card {
    box-shadow: none;
}

.doctor-side-card h3 {
    color: var(--doctor-ink);
    font-size: 24px;
    margin-bottom: 12px;
}

.doctor-side-card p {
    color: var(--doctor-text);
}

.doctor-side-card .doctor-btn + .doctor-btn {
    margin-top: 10px;
}

.doctor-sidebar-links {
    display: grid;
    gap: 8px;
}

.doctor-sidebar-links a {
    display: block;
    padding: 12px 14px;
    color: var(--doctor-ink);
    background: var(--doctor-blue-soft);
    border-radius: 6px;
    font-weight: 600;
}

.doctor-sidebar-links li.active a,
.doctor-sidebar-links a:hover {
    color: var(--doctor-white);
    background: var(--doctor-primary);
}

.doctor-story-card small {
    display: block;
    color: var(--doctor-primary);
    font-weight: 600;
    margin-top: 16px;
}

.doctor-note-box {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 18px;
}

.doctor-note-box i {
    color: var(--doctor-primary);
    margin-top: 4px;
}

.doctor-note-box p {
    color: var(--doctor-text);
    line-height: 1.6;
    margin: 0;
}

.doctor-note-box a {
    color: var(--doctor-primary);
    font-weight: 900;
}

.doctor-gallery-item {
    position: relative;
    display: block;
    overflow: hidden;
    min-height: 320px;
    border-radius: 8px;
    background: var(--doctor-dark);
}

.doctor-gallery-item img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: 0.25s ease;
}

.doctor-gallery-item:hover img {
    transform: scale(1.04);
    opacity: 0.72;
}

.doctor-gallery-item span {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    display: block;
    padding: 16px;
    color: var(--doctor-white);
    background: rgba(7, 24, 38, 0.82);
    border-radius: 8px;
}

.doctor-gallery-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 320px;
    background:
        linear-gradient(135deg, rgba(7, 24, 38, 0.94), rgba(20, 108, 148, 0.88)),
        url("../img/element/feature-element.png") center/cover no-repeat;
}

.doctor-gallery-visual i {
    color: rgba(255, 255, 255, 0.18);
    font-size: 96px;
}

.doctor-gallery-item small,
.doctor-gallery-item strong {
    display: block;
}

.doctor-gallery-item small {
    color: #bfece8;
    font-weight: 900;
    margin-bottom: 4px;
}

.doctor-post-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    color: var(--doctor-text);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 16px;
}

.doctor-post-meta span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.doctor-article {
    max-width: 820px;
}

.doctor-form label {
    display: block;
    color: var(--doctor-ink);
    font-weight: 600;
    margin-bottom: 8px;
}

.doctor-form input,
.doctor-form textarea,
.doctor-form select {
    width: 100%;
    min-height: 52px;
    color: var(--doctor-ink);
    background: var(--doctor-white);
    border: 1px solid var(--doctor-line);
    border-radius: 6px;
    padding: 12px 14px;
    outline: none;
}

.doctor-form textarea {
    min-height: 136px;
    resize: vertical;
}

.doctor-form input:focus,
.doctor-form textarea:focus,
.doctor-form select:focus {
    border-color: var(--doctor-primary);
    box-shadow: 0 0 0 4px rgba(20, 108, 148, 0.12);
}

.doctor-contact-card h2 {
    color: var(--doctor-ink);
    font-size: 34px;
    line-height: 1.2;
    margin-bottom: 18px;
}

.doctor-contact-list {
    display: grid;
    gap: 16px;
}

.doctor-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--doctor-text);
    line-height: 1.55;
}

.doctor-contact-list i {
    color: var(--doctor-primary);
    margin-top: 5px;
}

.doctor-contact-list a {
    color: var(--doctor-primary);
    font-weight: 600;
}

.doctor-small-note {
    color: var(--doctor-text);
    line-height: 1.65;
}

.doctor-cta-band {
    padding: 72px 0 0;
    background: var(--doctor-white);
}

.doctor-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 38px;
    color: var(--doctor-white);
    background:
        linear-gradient(90deg, rgba(20, 108, 148, 0.95), rgba(15, 159, 147, 0.9)),
        url("../img/element/footer-bg2.png") center/cover no-repeat;
    border-radius: 8px 8px 0 0;
}

.doctor-cta-inner h2 {
    color: var(--doctor-white);
    font-size: 36px;
    line-height: 1.18;
    margin-bottom: 8px;
}

.doctor-cta-inner p {
    color: #eef9fb;
    margin: 0;
}

.doctor-footer {
    color: #d9e8ef;
    background: var(--doctor-dark);
    padding: 84px 0 24px;
}

.doctor-footer h3 {
    color: var(--doctor-white);
    font-size: 22px;
    margin-bottom: 18px;
}

.doctor-footer p {
    color: #c9dbe4;
    line-height: 1.65;
}

.doctor-footer-brand {
    color: var(--doctor-white);
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 18px;
}

.doctor-footer-list {
    display: grid;
    gap: 11px;
}

.doctor-footer-list li,
.doctor-footer-list a {
    color: #d9e8ef;
    line-height: 1.5;
}

.doctor-footer-list a:hover {
    color: var(--doctor-white);
}

.doctor-social {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 18px;
}

.doctor-social a {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--doctor-white);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.doctor-social a:hover {
    background: var(--doctor-primary);
}

.doctor-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-top: 24px;
    margin-top: 42px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.doctor-footer-bottom p {
    margin: 0;
}

.doctor-footer-bottom a {
    color: var(--doctor-white);
    font-weight: 600;
}

.doctor-floating-call {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 80;
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--doctor-white);
    background: var(--doctor-accent);
    border-radius: 8px;
    box-shadow: 0 14px 36px rgba(15, 159, 147, 0.34);
}

.doctor-floating-call:hover {
    color: var(--doctor-white);
    background: var(--doctor-primary);
}

.sponsor-text-slide{
    background: var(--doctor-primary) !important;
}

.text-slide-item{
    color: #ffffff;
}

.video-box{
    position: relative;
}
.video-box a img.icon{
    width: 50px;
}
.video-box .play-btn{
    position: absolute;
    left: 50%;
    top: 50%;
    font-size: 78px;
    line-height: 1em;
    color: #fff;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 2;
}

.video-box .play-btn .icon{
    position: relative;
    display: inline-block;
    -webkit-animation: pulse 2s infinite linear;
    animation: pulse 2s infinite linear;
}
.hero-section .doctor-section-text{
    font-size: 20px;
    line-height: 26px;
}
.hero-section .doctor-third-text{
    font-size: 20px;
    color: var(--doctor-text);
    margin-top: 10px;


}
.doctor-quick-item p{
    font-size: 17px;
}
.treatment-icon-image-card .doctor-card-image{
    aspect-ratio: auto;
    background: transparent;
    text-align: center;
    margin-top: 30px;
}
.treatment-icon-image-card .doctor-card-image img{
    width: auto;
    height: auto;
    object-fit: none;
}

.fixed-icons {
  position: fixed;
  bottom: 20%;
  right: 10px;
  z-index: 3;
  margin: 0;
  padding: 10px 8px;
  list-style: none;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 50px;
}

.fixed-icons span {
  width: 30px;
  height: 30px;
  position: absolute;
  right: 10px;
  top: 14px;
  color: #fff;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  float: right;
  font-size: 25px;
}

.fixed-icons span:before {
  font-family: FontAwesome;
  content: "\f095";
  width: 15px;
  height: 15px;
  display: block;
  margin: 13px 15px;
  -webkit-animation: wiggle 2s infinite;
  -moz-animation: wiggle 2s infinite;
  animation: wiggle 2s infinite;
}
.fixed-icons .icon {
  display: inline-block;
  width: 30px;
  height: 30px;
  stroke-width: 0;
  stroke: currentColor;
  fill: currentColor;
}

.fixed-icons .wave {
  animation: waveIn 1.2s infinite ease-out;
  transform-origin: 50% 50%;
}

.fixed-icons .wave-sm {
  animation-delay: .3s;
}

.fixed-icons .wave-md {
  animation-delay: .45s;
}

.fixed-icons .wave-lg {
  animation-delay: .6s;
}

@keyframes waveIn {
  from {
    opacity: 0;
    transform: scale(.3) translate(-20px, 10px);
  }

  50% {
    transform: translate(0, 0);
    opacity: 1;
  }
}

.fixed-icons li {
  margin: 0;
  padding: 0;
  list-style: none
}

.fixed-icons li+li {
  margin-top: 5px
}

.fixed-icons .link.wp {
  background-color: #4dc247;
  margin-bottom: 5px;
}

.fixed-icons .link {
  background-color: #ff0000;
  border-radius: 100%;
  margin: 0 auto;
  font-size: 20px;
  color: #fff;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 55px;
  width: 55px;
  line-height: 32px;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

.fixed-icons .link img {
  width: 90%;
  margin: 0 auto;
}
.doctor-treatment-card{
    transition: none !important;
}
.doctor-treatment-card:hover{
    background: linear-gradient(90deg, rgba(20, 108, 148, 0.95), rgba(15, 159, 147, 0.9)),
        url("../img/element/footer-bg2.png") center/cover no-repeat;
    color: #fff;
    
}
.doctor-treatment-card:hover h3, .doctor-treatment-card:hover p, .doctor-treatment-card:hover a{
    color: #fff;
    transition: none !important;
}
.box-style.first-box::before {
  background-color: transparent !important;
}
.box-style.first-box:hover span{
    color: var(--header);
}
.box-style.first-box p{
    font-size: 24px;
}
.doctor-detail-image{
    text-align: center;
}
.doctor-detail-image img{
    width: auto;
}

.doctor-page-hero-inner{
    padding: 30px 0;
}
.doctor-breadcrumb{
    margin-bottom: 10px;
}
.doctor-kicker{
    margin-bottom: 5px;
}
.doctor-page-hero h1{
    font-size: 36px;
    margin-bottom: 5px;
}
.doctor-page-hero p{
    font-size: 16px;
}
header .navbar-nav .dropdown-menu{
    max-height: 300px;
}
.gallery-block .image{
    text-align: center;
}
.gallery-block .image img{
    height: 250px;
    object-fit: cover;
}
@media (max-width: 1199px) {
    .doctor-brand small {
        max-width: 230px;
    }

    .doctor-navbar .nav-link {
        padding: 10px 7px;
    }

    .doctor-hero h1 {
        font-size: 56px;
    }
}

@media (max-width: 991px) {
    .doctor-topbar-inner {
        justify-content: flex-start;
        flex-wrap: wrap;
        padding: 8px 0;
    }

    .doctor-navbar {
        min-height: auto;
    }

    .doctor-navbar .navbar-collapse {
        padding-top: 16px;
    }

    .doctor-nav-btn {
        width: 100%;
        margin: 10px 0 0;
    }

    .doctor-hero {
        padding: 72px 0 70px;
    }

    .doctor-hero-control-wrap {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        margin-top: 22px;
        pointer-events: auto;
    }

    .doctor-hero-image-only .doctor-hero-control-wrap {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 16px;
        margin-top: 0;
        pointer-events: none;
    }

    .doctor-hero-image-only .doctor-hero-controls {
        pointer-events: auto;
    }

    .doctor-hero h1 {
        font-size: 48px;
    }

    .doctor-hero h2 {
        font-size: 24px;
    }

    .doctor-hero-visual img {
        height: 460px;
    }

    .doctor-quick-item {
        border-right: 0;
        border-bottom: 1px solid var(--doctor-line);
    }

    .doctor-quick-item-last {
        border-bottom: 0;
    }

    .doctor-section {
        padding: 70px 0;
    }

    .doctor-section-head,
    .doctor-cta-inner,
    .doctor-footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .doctor-sidebar {
        position: static;
    }
}

@media (max-width: 767px) {
    .doctor-brand strong {
        font-size: 19px;
    }

    .doctor-brand small {
        max-width: 190px;
        font-size: 12px;
    }

    .doctor-hero h1,
    .doctor-page-hero h1 {
        font-size: 40px;
    }

    .doctor-hero p,
    .doctor-page-hero p {
        font-size: 16px;
    }

    .doctor-section-title {
        font-size: 34px;
    }

    .doctor-hero-visual img {
        height: 390px;
    }

    .doctor-hero-note {
        position: static;
        margin-top: 14px;
    }

    .doctor-image-stack {
        padding-right: 0;
    }

    .doctor-image-badge {
        position: static;
        width: auto;
        margin-top: 14px;
    }

    .doctor-check-list-grid,
    .doctor-info-grid {
        grid-template-columns: 1fr;
    }

    .doctor-page-hero-inner {
        /* padding: 72px 0; */
    }

    .doctor-panel,
    .doctor-form-panel,
    .doctor-contact-card,
    .doctor-side-card,
    .doctor-card-body,
    .doctor-story-card {
        padding: 24px;
    }

    .doctor-timing-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 5px;
    }

    .doctor-timing-row span {
        text-align: left;
    }

    .doctor-cta-inner {
        padding: 28px;
    }

    .doctor-cta-inner h2 {
        font-size: 30px;
    }
}

@media (max-width: 575px) {
    .doctor-topbar {
        display: none;
    }

    .doctor-brand-icon {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
    }

    .doctor-brand small {
        display: none;
    }

    .doctor-hero-controls {
        width: 100%;
        justify-content: center;
    }

    .doctor-hero-actions .doctor-btn,
    .doctor-button-row .doctor-btn,
    .doctor-cta-actions .doctor-btn {
        width: 100%;
    }

    .doctor-hero-visual img {
        height: 340px;
    }

    .doctor-quick-item {
        padding: 20px;
    }

    .doctor-section {
        padding: 58px 0;
    }

    .doctor-gallery-item,
    .doctor-gallery-item img {
        min-height: 280px;
        height: 280px;
    }

    .counter-items h2, .counter-items span{
        font-size: 28px;
    }
    .counter-items p {
        font-size: 18px !important;
    }
}
