:root{
    --brand:#1e6bd6;
    --brand-dark:#0f3d8a;
    --ink:#0b1b33;
    --muted:#6b7280;
    --soft:#eef3fb;
    --soft-2:#e6edf9;
    --bg-soft:#f4f7ff;
    --bg-softer:#eef3ff;
    --line:#e5e7eb;
}

li.sub-menu-title {
    font-weight: 900;
    font-size: 16px;
}

.header-topbar .header-info p i {
    color: #E22129;
}

.about-section.hospital-section {
    background-color: #F4F6F8;
    background-image: url("../img/home/about-bg.jpg");
    background-repeat: no-repeat;
    background-position: center;
}
.about-section.hospital-section .section-header-two {
    text-align: left;
}
.about-section.hospital-section a.btn.btn-primary.mt-5 {
    border-radius: 6px;
}
.about-section.hospital-section .pill i {
    color: #E22129;
    font-size: 16px;
}

.tile.tile-book.tile-fill {
    background: var(--primary-gradient);
    margin-bottom: 25px;
    padding: 10px;
    border-radius: 10px;
}
.tile-fill {
    flex: 1 1 auto;
    min-height: 340px;
    display: flex;
    flex-direction: column;
}
.tile-book-body {
    padding: 16px 15px;
}
.tile-book-body h4 {
    padding-bottom: 15px;
    color: #fff;
}
button.btn.btn-getstart {
    background-color: var(--gray-900);
    color: #fff;
    padding: 5px 15px;
    font-size: 14px;
}

a.common-btn.btn.btn-dark {
    border-radius: 6px;
}

/* Hero slider */
.hero-slider {
    position: relative;
    background: #2094e6;
    overflow: hidden;
}
.hero-slide {
    position: relative;
    min-height: 520px;
    display: flex !important;
    align-items: center;
    background-size: cover;
    background-position: center;
    transition: transform 7s ease-out;
}
.hero-slide.slick-active,
.slick-slide.slick-active .hero-slide {
    transform: scale(1.06);
}
.hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
            90deg,
            rgba(30, 107, 214, 0.92) 0%,
            rgba(30, 107, 214, 0.65) 45%,
            rgba(30, 107, 214, 0.15) 75%,
            transparent 100%
    );
}
.hero-slide .container {
    position: relative;
    z-index: 2;
    color: #fff;
    padding: 200px 1rem;
}
.hero-slide .container > * {
    opacity: 0;
    transform: translateY(28px);
}
.hero-slide.slick-active .container > *,
.slick-slide.slick-active .hero-slide .container > * {
    animation: heroFadeUp 0.8s cubic-bezier(0.22, 0.68, 0.35, 1) forwards;
}
.hero-slide.slick-active .container > *:nth-child(1),
.slick-slide.slick-active .hero-slide .container > *:nth-child(1) {
    animation-delay: 0.15s;
}
.hero-slide.slick-active .container > *:nth-child(2),
.slick-slide.slick-active .hero-slide .container > *:nth-child(2) {
    animation-delay: 0.3s;
}
.hero-slide.slick-active .container > *:nth-child(3),
.slick-slide.slick-active .hero-slide .container > *:nth-child(3) {
    animation-delay: 0.45s;
}
@keyframes heroFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.hero-slide h2 {
    font-weight: 800;
    font-size: 3rem;
    line-height: 1.12;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);
    max-width: 640px;
    color: #fff;
}
.hero-slide p {
    max-width: 520px;
    font-size: 1rem;
    opacity: 0.95;
    margin-top: 1rem;
    padding-bottom: 30px;
    color: #fff;
}
.hero-slide .btn-hero {
    background: #fff;
    color: var(--ink);
    border-radius: 999px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    margin-top: 1.4rem;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    transition: 0.25s;
}
.hero-slide .btn-hero:hover {
    background: var(--ink);
    color: #fff;
}
.hero-slide .btn-hero .bi {
    background: #eaf0fa;
    color: var(--brand);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}
/* Fixed (non-sliding) thumb rail, positioned like the mockup */
.hero-thumbs {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 28px;
    z-index: 3;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    pointer-events: none;
}
.hero-thumbs .thumb {
    pointer-events: auto;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.65);
    cursor: pointer;
    transition: 0.25s;
    opacity: 0.85;
    flex-shrink: 0;
    background: #000;
}
.hero-thumbs .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.hero-thumbs .thumb.active,
.hero-thumbs .thumb:hover {
    border-color: #fff;
    transform: scale(1.08);
    opacity: 1;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}
.hero-slider .slick-prev,
.hero-slider .slick-next {
    width: 44px;
    height: 44px;
    z-index: 4;
}
.hero-slider .slick-prev {
    left: 20px;
}
.hero-slider .slick-next {
    right: 20px;
}
.hero-slider .slick-prev:before,
.hero-slider .slick-next:before {
    font-size: 36px;
    opacity: 0.85;
}
/* Thumbs are desktop-only, exactly like the mockup — hidden on smaller/responsive views */
@media (max-width: 991px) {
    .hero-thumbs {
        display: none;
    }
}
@media (max-width: 767px) {
    .hero-slide h2 {
        font-size: 1.9rem;
    }
    .hero-slide {
        min-height: 460px;
    }
}


.doctor-info-detail .custom-title {
    font-size: 18px;
}
.doctor-info-detail .degree {
    font-size: 14px;
}
.doctor-footer .price span
{
    font-size: 12px;
    color: var(--gray-600);
    font-weight: 400;
    -webkit-text-fill-color: var(--gray-600);
    background: none;
    margin-left: 7px;
}



/* ==========================================================================
   About Hospital Section
   ========================================================================== */

.about-hospital-section {
    position: relative;
    overflow: hidden;
    background-color: #f5f6f8;
    padding: 80px 0 !important;
}

.about-hospital-bg {
    position: absolute;
    top: 50%;
    right: -40px;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 0;
}

.about-hospital-bg i {
    font-size: 420px;
    color: rgba(49, 109, 255, 0.04);
    line-height: 1;
}

.about-hospital-section .container {
    position: relative;
    z-index: 1;
}

/* Left content */
.about-hospital-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px 6px 6px;
    margin-bottom: 24px;
    border-radius: 50px;
    background: linear-gradient(90deg, #ffe8ec 0%, #e8f0ff 100%);
    font-size: 13px;
    font-weight: 600;
    color: #1a1c25;
    line-height: 1;
}

.about-hospital-badge .badge-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #316dff 0%, #ff6b8a 100%);
    color: #fff;
    font-size: 11px;
}

.about-hospital-title {
    margin-bottom: 20px;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.25;
    color: #1a1c25;
    letter-spacing: -0.02em;
}

.about-hospital-title .text-highlight {
    color: #316dff;
}

.about-hospital-desc {
    margin-bottom: 28px;
    max-width: 500px;
    font-size: 15px;
    line-height: 1.7;
    color: #6b7280;
}

.about-hospital-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 32px;
}

.hospital-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    font-size: 13px;
    font-weight: 500;
    color: #374151;
    line-height: 1.2;
    white-space: nowrap;
}

.tag-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 6px;
    font-size: 10px;
    color: #fff;
    flex-shrink: 0;
}

.tag-icon-red { background: #ff6b6b; }
.tag-icon-blue { background: #316dff; }
.tag-icon-green { background: #22c55e; }
.tag-icon-pink { background: #ec4899; }
.tag-icon-cyan { background: #06b6d4; }
.tag-icon-orange { background: #f97316; }
.tag-icon-purple { background: #8b5cf6; }
.tag-icon-indigo { background: #6366f1; }

.btn-know-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 10px;
    background: #316dff;
    border: none;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    transition: background 0.25s ease, transform 0.25s ease;
}

.btn-know-more:hover {
    background: #1d5ae8;
    color: #fff;
    transform: translateY(-1px);
}

.btn-know-more i {
    font-size: 18px;
}

/* Right visual grid */
.about-hospital-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto 1fr;
    grid-template-areas:
        "mission booking"
        "doctor  vision";
    gap: 16px;
    align-items: start;
}

.hospital-mission {
    grid-area: mission;
}

.hospital-doctor-img {
    grid-area: doctor;
}

.hospital-booking {
    grid-area: booking;
}

.hospital-vision {
    grid-area: vision;
}

.hospital-card {
    border-radius: 16px;
    overflow: hidden;
}

/* Mission card */
.hospital-mission {
    position: relative;
    padding: 24px;
    background: #1a1c25;
    color: #fff;
    min-height: 170px;
}

.hospital-mission .mission-watermark {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 64px;
    color: rgba(255, 255, 255, 0.06);
    line-height: 1;
}

.hospital-mission .mission-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-bottom: 14px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    font-size: 18px;
    color: #fff;
}

.hospital-mission h3 {
    margin-bottom: 8px;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

.hospital-mission p {
    margin-bottom: 0;
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.65);
}

/* Doctor image */
.hospital-doctor-img {
    min-height: 280px;
    align-self: stretch;
}

.hospital-doctor-img img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
    border-radius: 16px;
    display: block;
    background: linear-gradient(135deg, #dbeafe 0%, #e0e7ff 100%);
}

.hospital-booking .booking-img img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    display: block;
    background: linear-gradient(135deg, #fecdd3 0%, #bfdbfe 100%);
}

/* Booking card */
.hospital-booking {
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, #ff8a9b 0%, #316dff 100%);
    padding: 16px;
    min-height: 360px;
    align-self: stretch;
}

.hospital-booking .booking-img {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 16px;
    flex-shrink: 0;
}

.hospital-booking .booking-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: flex-end;
}

.hospital-booking .booking-content p {
    margin-bottom: 16px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.35;
    color: #fff;
}

.btn-get-started {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    align-self: flex-start;
    padding: 10px 20px;
    border-radius: 50px;
    background: #1a1c25;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    transition: background 0.25s ease;
}

.btn-get-started:hover {
    background: #2d3040;
    color: #fff;
}

.btn-get-started i {
    font-size: 16px;
}

/* Vision card */
.hospital-vision {
    padding: 24px;
    background: #fff;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    min-height: 170px;
}

.hospital-vision .vision-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-bottom: 14px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid transparent;
    background-image: linear-gradient(#fff, #fff), linear-gradient(135deg, #316dff 0%, #ff6b8a 100%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    font-size: 18px;
    color: #316dff;
}

.hospital-vision h3 {
    margin-bottom: 8px;
    font-size: 18px;
    font-weight: 700;
    color: #1a1c25;
}

.hospital-vision p {
    margin-bottom: 0;
    font-size: 13px;
    line-height: 1.6;
    color: #6b7280;
}

/* Responsive */
@media (max-width: 1199.98px) {
    .about-hospital-title {
        font-size: 36px;
    }
}

@media (max-width: 991.98px) {
    .about-hospital-section {
        padding: 60px 0;
    }

    .about-hospital-title {
        font-size: 32px;
    }

    .about-hospital-bg i {
        font-size: 280px;
        right: -20px;
    }

    .about-hospital-visual {
        max-width: 560px;
        margin: 0 auto;
    }
}

@media (max-width: 575.98px) {
    .about-hospital-section {
        padding: 48px 0;
    }

    .about-hospital-title {
        font-size: 26px;
    }

    .about-hospital-desc {
        font-size: 14px;
    }

    .hospital-tag {
        font-size: 12px;
        padding: 7px 12px;
        white-space: normal;
    }

    .about-hospital-visual {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        grid-template-areas:
            "mission"
            "booking"
            "doctor"
            "vision";
    }

    .hospital-booking .booking-content p {
        font-size: 18px;
    }

    .about-hospital-bg {
        display: none;
    }
}



/* Compelling Reasons Section Styles */
.compelling-reasons-section {
    background-color: #F0F3FF;
    background-image: url("../img/certificate/certificate-bg.png");
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.compelling-reasons-section .container {
    position: relative;
    z-index: 1;
}

.badge-badge-custom {
    background: linear-gradient(135deg, #0d6efd 0%, #dc3545 100%);
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-block;
}

.section-title {
    font-size: 2.5rem;
    color: #212529;
}

.certificate-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.certificate-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1) !important;
}

.certificate-image-wrapper {
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.certificate-image-wrapper img {
    max-height: 220px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.certificate-card:hover .certificate-image-wrapper img {
    transform: scale(1.05);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .certificate-image-wrapper {
        min-height: 200px;
    }
}


/* ==========================================================================
   Organogram
   ========================================================================== */

.hero{background:var(--soft);padding:4rem 0 3rem;}
.chip{display:inline-block;background:#dbe7fb;color:var(--brand);font-weight:600;font-size:.72rem;letter-spacing:.14em;padding:.35rem .9rem;border-radius:999px;text-transform:uppercase;}
.hero h1{font-weight:800;font-size:2.6rem;color:var(--ink);}
.hero p{color:#4b5563;max-width:640px;margin:0 auto;}
.dots{display:flex;gap:6px;justify-content:center;margin-top:1.25rem;}
.dots span{width:26px;height:3px;background:#c7d2e6;border-radius:2px;}
.dots span.active{background:var(--brand);}


.hierarchy-card{background:#f5f8fd;border:1px solid #e3ecf8;border-radius:14px;padding:2rem 1.25rem 2.5rem;position:relative;overflow:hidden;}
.hierarchy-card .corner{position:absolute;top:0;left:0;width:120px;height:120px;background:radial-gradient(circle at top left,var(--brand) 0 55%,transparent 56%);border-top-left-radius:14px;display:flex;align-items:flex-start;justify-content:flex-start;padding:14px;color:#fff;}
.hierarchy-card .corner .bi{font-size:1.6rem;}

.org{--gap:14px;display:flex;flex-direction:column;align-items:center;gap:var(--gap);}
.node{background:var(--brand);color:#fff;font-weight:600;font-size:.78rem;letter-spacing:.04em;text-transform:uppercase;border-radius:999px;padding:.6rem 1.1rem;text-align:center;box-shadow:0 4px 10px rgba(30,107,214,.25);white-space:nowrap;}
.node.sm{font-size:.68rem;padding:.5rem .8rem;border-radius:10px;}
.row-nodes{display:flex;flex-wrap:wrap;gap:var(--gap);justify-content:center;position:relative;}
.row-nodes::before{content:"";position:absolute;top:-14px;left:15%;right:15%;height:1px;background:#9db8de;}
.connector{width:1px;height:14px;background:#9db8de;}
.branch{display:flex;flex-direction:column;align-items:center;gap:8px;flex:1;min-width:170px;}
.branch .children{display:grid;grid-template-columns:1fr 1fr;gap:8px;width:100%;position:relative;}
.branch .children::before{content:"";position:absolute;top:-8px;left:25%;right:25%;height:1px;background:#9db8de;}

/* Directors */
.directors{background:#eaf0fa;padding:3.5rem 0;}
.director-card{background:#fff;border-radius:14px;overflow:hidden;box-shadow:0 2px 8px rgba(15,61,138,.06);height:100%;}
.director-card img{width:100%;aspect-ratio:1/1;object-fit:cover;filter:grayscale(100%);}
.director-card .body{padding:1rem 1.1rem 1.15rem;}
.director-card h5{font-size:1rem;font-weight:600;margin:0;color:var(--ink);}
.director-card .role{color:var(--brand);font-size:.85rem;font-weight:500;}
.director-card .dept{color:#6b7280;font-size:.82rem;margin-top:.15rem;}
.director-card .icons{margin-top:.6rem;color:var(--brand);font-size:.95rem;display:flex;gap:.6rem;}

/* Director list */
.dlist{padding:3.5rem 0 4rem;}
.dlist h3{font-weight:600;position:relative;padding-bottom:.6rem;margin-bottom:2rem;}
.dlist h3::after{content:"";position:absolute;left:0;bottom:0;width:70px;height:2px;background:var(--brand);}
.dlist .item{border-bottom:1px solid #d5dbe4;padding:1rem 0;color:#374151;font-size:.95rem;}


/* ==========================================================================
   Departments
   ========================================================================== */

/* Departments Hero */
.departments.hero {
    background: transparent;
    padding: 10px 0;
    text-align: center;
}

.departments-hero-slider .hero-slide {
    outline: none;
}

.departments-hero-slider .hero-slide .container {
    padding: 0 1rem 0.5rem;
}
.departments-hero-slider .hero-slide::before {
    background: transparent;
}

.departments.hero .chip {
    display: inline-block;
    background: #dbe7fb;
    color: var(--brand);
    font-weight: 600;
    font-size: .72rem;
    letter-spacing: .14em;
    padding: .35rem .9rem;
    border-radius: 999px;
    text-transform: uppercase;
}

.departments.hero h1 {
    font-weight: 800;
    font-size: 2.6rem;
    color: var(--ink);
    margin-top: 1rem;
}

.departments.hero p {
    color: #4b5563;
    max-width: 640px;
    margin: 1rem auto 0;
    padding-bottom: 0;
}

.departments-hero-slider .slick-dots {
    position: static;
    display: flex !important;
    gap: 6px;
    justify-content: center;
    margin: 1.25rem 0 0;
    padding: 0;
    width: auto;
    bottom: auto;
    list-style: none;
}

.departments-hero-slider .slick-dots li {
    width: auto;
    height: auto;
    margin: 0;
    padding: 0;
}

.departments-hero-slider .slick-dots li button {
    width: 26px;
    height: 3px;
    padding: 0;
    border: none;
    border-radius: 2px;
    background: #c7d2e6;
    font-size: 0;
    line-height: 0;
    color: transparent;
    transition: background 0.25s ease, width 0.25s ease;
}

.departments-hero-slider .slick-dots li button::before {
    display: none;
}

.departments-hero-slider .slick-dots li.slick-active button {
    background: var(--brand);
}

.departments-hero-slider .slick-list {
    overflow: hidden;
    min-height: 260px;
}

.departments-hero-slider .slick-track {
    display: block;
}

.departments-hero-slider .slick-slide {
    height: auto;
}

.departments-hero-slider .slick-slide > div {
    width: 100%;
}

/* Departments grid section */
section.departments:not(.hero) {
    background: #eef3fb;
    padding: 100px 0;
}
.dept-card{background:#fff;border-radius:14px;padding:1.6rem 1.5rem;height:100%;box-shadow:0 2px 10px rgba(15,61,138,.05);transition:transform .2s, box-shadow .2s;}
.dept-card:hover{transform:translateY(-4px);box-shadow:0 10px 24px rgba(15,61,138,.10);}
.dept-icon{width:44px;height:44px;border-radius:10px;background:#e6edf9;color:var(--brand);display:flex;align-items:center;justify-content:center;font-size:1.15rem;margin-bottom:1rem;}
.dept-card h5{font-weight:700;font-size:1.05rem;color:var(--ink);margin-bottom:.6rem;}
.dept-card p{color:#6b7280;font-size:.9rem;line-height:1.55;margin-bottom:1.1rem;}
.btn-view{border:1px solid var(--brand);color:var(--brand);background:#fff;border-radius:8px;padding:.4rem .9rem;font-size:.82rem;font-weight:500;}
.btn-view:hover{background:var(--brand);color:#fff;}

/* Diagnostics */
.diagnostics{padding:4rem 0;}
.diagnostics .section-header-two {
    text-align: left;
}
.diag-img{width:100%;border-radius:14px;box-shadow:0 10px 30px rgba(15,61,138,.12);}
.diag-chip{display:inline-flex;align-items:center;gap:.4rem;background:#dbe7fb;color:var(--brand);font-size:.75rem;font-weight:600;padding:.35rem .8rem;border-radius:999px;}
.diagnostics h2{font-weight:700;color:var(--ink);margin-top:1rem;font-size:1.9rem;}
.diagnostics p{color:#6b7280;margin-top:1rem;max-width:520px;}
.diag-list{margin-top:1.5rem;}
.diag-list .item{display:flex;align-items:center;gap:.55rem;color:var(--ink);font-weight:500;font-size:.95rem;margin-bottom:.75rem;}
.diag-list .item i{color:#0ea371;font-size:1.1rem;}

/* Emergency banner */
.emergency{background:linear-gradient(90deg,#1e6bd6 0%,#4a7ec9 40%,#e08fa0 75%,#f3b6c1 100%);border-radius:0;padding:3rem 0;color:#fff;position:relative;overflow:hidden;}
.emergency::before{content:"";position:absolute;left:-60px;top:20px;width:180px;height:180px;border-radius:50%;border:2px solid rgba(255,255,255,.25);}
.emergency::after{content:"";position:absolute;right:20%;top:-40px;width:220px;height:220px;border-radius:50%;background:rgba(255,255,255,.08);}
.emergency .pill{display:inline-flex;align-items:center;gap:.4rem;background:#e11d48;color:#fff;font-size:.72rem;font-weight:600;padding:.35rem .8rem;border-radius:999px;}
.emergency h2{font-weight:700;font-size:2rem;margin-top:1rem;color:#fff;}
.emergency p{max-width:520px;font-size:.95rem;opacity:.95;}
.btn-book{background:var(--brand);color:#fff;border-radius:999px;padding:.6rem 1.3rem;font-weight:500;border:none;}
.btn-book:hover{background:var(--brand-dark);color:#fff;}
.emergency img{max-width:100%;position:relative;z-index:2;}



.social-icon ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f4f6f8;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: #475569;
    font-size: 16px;
    transition: 0.5s all;
    border: 1px solid #E2E8F0;
}
.social-icon ul li a:hover {
    background: var(--primary);
    border: 1px solid var(--primary);
    color: var(--white);
    transition: 0.5s all;
}
.social-icon ul li a i {
    color: #475569;
    font-size: 1rem;
}


/* Stats */
.stat{background:#fff;border:1px solid var(--line);border-radius:16px;padding:22px 26px}
.stat .lbl{color:var(--muted);font-size:.85rem;display:flex;align-items:center;gap:.4rem}
.stat .lbl::before{content:"";width:6px;height:6px;background:var(--brand);border-radius:50%}
.stat .val{font-size:2.6rem;font-weight:800;margin-top:6px}


/* Timeline */
.tl{position:relative}
.tl::before{content:"";position:absolute;left:50%;top:0;bottom:0;width:2px;background:#cfe0f5; z-index: -1;}
.tl-row{display:grid;grid-template-columns:1fr 40px 1fr;gap:24px;align-items:center;margin-bottom:40px}
.tl-year{background:var(--brand);color:#fff;border-radius:999px;padding:.25rem .7rem;font-size:.8rem;font-weight:700;display:inline-block}
.tl-node{width:14px;height:14px;border-radius:50%;background:var(--brand);box-shadow:0 0 0 2px var(--brand);margin:auto}
.tl-img{border-radius:16px;overflow:hidden}
.tl-img img{width:100%;display:block}
.tl-text h5{font-weight:800}
.tl-text p{color:var(--muted);font-size:.9rem}
.text-right{text-align:right}
@media(max-width:768px){
    .tl::before{left:20px}
    .tl-row{grid-template-columns:40px 1fr;gap:16px}
    .tl-row > *:nth-child(1){grid-column:2}
    .tl-node{grid-column:1;grid-row:1/span 2}
    .text-right{text-align:left}
}


/* ==========================================================================
   About Department
   ========================================================================== */

/* Hero */
.page-hero{background:var(--bg-soft);position:relative;overflow:hidden;padding:3rem 0;}
.page-hero h1{font-weight:800;}
.blob{position:absolute;border-radius:50%;filter:blur(2px);opacity:.5;}
.blob.b1{width:220px;height:220px;background:#cfe0ff;top:-60px;left:-60px;}
.blob.b2{width:180px;height:180px;background:#dbe8ff;bottom:-60px;right:-40px;}
.blob.b3{width:120px;height:120px;background:#e6efff;top:20px;right:20%;}

/* Services */
.services-wrap{padding:3rem 1rem;}
.service-card {
    background: #fff;
    border: 1px solid #eef1f6;
    border-radius: 14px;
    padding: 1.5rem;
    text-align: center;
    height: 100%;
    transition: .2s;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.service-card:hover{transform:translateY(-4px);box-shadow:0 20px 30px rgba(20,40,90,.08);}
.service-ico{width:44px;height:44px;border-radius:10px;background:var(--pill-bg);color:var(--brand);display:inline-flex;align-items:center;justify-content:center;font-size:1.25rem;margin-bottom:1rem;}
.service-card h5{font-weight:700;font-size:1rem;}
.service-card p{font-size:.85rem;color:var(--muted);margin:0;}



.doc-information-main {
    padding-left: 30px;
}


.company-two{display:grid;grid-template-columns:repeat(4,1fr);gap:1rem;}
.company-two .slide-item{border:1px solid var(--line);border-radius:14px;background:#fff;height:130px;display:flex;align-items:center;justify-content:center;padding:1.25rem;transition:.25s;}
.company-two .slide-item:hover{border-color:var(--brand);box-shadow:0 8px 20px rgba(30,107,214,.08);}
.company-two .slide-item img{max-width:100%;max-height:100%;object-fit:contain;}
@media (max-width:767px){.company-two{grid-template-columns:repeat(2,1fr);}}

.price-header .price-old {
    color: #9ca3af;
    text-decoration: line-through;
    font-size: .85rem;
    margin-bottom: .1rem;
}
.price-body .desc {
    font-weight: 700;
    font-size: .92rem;
    color: var(--ink);
    margin-bottom: 1rem;
}


.pill{background:#fff;border-radius:999px;padding:.6rem 1rem;box-shadow:0 3px 10px rgba(15,61,138,.08);display:inline-flex;align-items:center;gap:.55rem;font-size:.9rem;font-weight:500;color:var(--ink);margin:.35rem .35rem .35rem 0;}
.pill .ico{width:26px;height:26px;border-radius:50%;background:conic-gradient(from 210deg,#1e6bd6,#e11d48,#1e6bd6);position:relative;flex-shrink:0;}
.pill .ico::after{content:"";position:absolute;inset:4px;border-radius:50%;background:#fff;}



/* Hero */
.appt-hero {
    padding: 3rem 0;
}
.chip {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: linear-gradient(90deg, #60a5fa, #f472b6);
    color: #fff;
    font-weight: 600;
    font-size: 0.75rem;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
}
.appt-hero h2 {
    font-weight: 800;
    font-size: 2.1rem;
    color: var(--ink);
    margin-top: 1rem;
}
.appt-hero p {
    color: #4b5563;
    margin-top: 1rem;
    max-width: 520px;
}
.badge-soft {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: #eaf0fb;
    color: var(--ink);
    border-radius: 999px;
    padding: 0.4rem 0.9rem;
    font-size: 0.85rem;
    font-weight: 500;
    margin-right: 0.5rem;
    margin-top: 0.6rem;
}
.badge-soft i {
    color: var(--brand);
}
.hero-img {
    width: 100%;
    border-radius: 14px;
    box-shadow: 0 20px 40px rgba(15, 61, 138, 0.15);
}

/* Form card */
.form-card {
    background: #fff;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(15, 61, 138, 0.06);
    margin-bottom: 4rem;
}
.step-label {
    color: var(--teal);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-align: center;
    display: block;
}
.form-card h3 {
    font-weight: 800;
    text-align: center;
    margin: 0.4rem 0 2rem;
    color: var(--ink);
}
.form-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 0.35rem;
}
.form-control,
.form-select {
    background: #f6f8fc;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 0.65rem 0.85rem;
    font-size: 0.9rem;
}
.form-control:focus,
.form-select:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 3px rgba(30, 107, 214, 0.12);
}
.form-check-input:checked {
    background-color: var(--brand);
    border-color: var(--brand);
}
.otp-hint {
    font-size: 0.78rem;
    color: var(--muted);
    margin-top: 0.3rem;
}
.otp-hint i {
    color: var(--brand);
}
.btn-confirm {
    background: linear-gradient(90deg, #60a5fa, #f472b6);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 0.85rem 2rem;
    font-weight: 600;
    width: 100%;
    max-width: 420px;
}
.btn-confirm:hover {
    color: #fff;
    opacity: 0.94;
}
.secure-note {
    text-align: center;
    color: var(--muted);
    font-size: 0.82rem;
    margin-top: 0.9rem;
}
.secure-note i {
    color: var(--teal);
}

/* Why book */
.why-section {
    background: #eaf0fb;
    padding: 4rem 0;
}
.why-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: linear-gradient(90deg, #22c55e, #3b82f6);
    color: #fff;
    font-weight: 600;
    font-size: 0.78rem;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
}
.why-section h2 {
    font-weight: 800;
    color: var(--ink);
    margin-top: 1rem;
    font-size: 2rem;
}
.why-section .lede {
    color: #4b5563;
    max-width: 640px;
    margin: 1rem auto 3rem;
}
.why-card {
    background: #fff;
    border-radius: 14px;
    padding: 2rem 1.75rem;
    height: 100%;
    box-shadow: 0 2px 12px rgba(15, 61, 138, 0.05);
    transition: transform 0.2s;
}
.why-card:hover {
    transform: translateY(-4px);
}
.why-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: #eaf0fb;
    color: var(--brand);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 1.4rem;
}
.why-card h5 {
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 0.6rem;
}
.why-card p {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.65;
    margin: 0;
}



.facilities-wrap{position:relative;padding:4rem 0 5rem;overflow:hidden;}

.facilities-wrap .container{position:relative;z-index:2;}
.page-title{font-weight:800;text-align:center;color:var(--ink);font-size:2.2rem;margin-bottom:2.5rem;}

/* Sidebar */
.side-card{background:#eaf0fb;border-radius:14px;padding:1.25rem;}
.side-card h6{font-size:.72rem;letter-spacing:.14em;color:#334155;font-weight:700;text-transform:uppercase;margin-bottom:1rem;}
.fac-tab{display:flex;align-items:center;justify-content:space-between;background:#fff;border:1px solid transparent;border-radius:10px;padding:.85rem 1rem;margin-bottom:.7rem;font-size:.92rem;font-weight:500;color:var(--ink);cursor:pointer;transition:all .2s;}
.fac-tab:hover{border-color:#c7d2e6;}
.fac-tab.active{background:var(--primary-gradient);color:#fff;}
.fac-tab .bi-chevron-right{opacity:.7;font-size:.85rem;}

.help-card{background:#eaf0fb;border-radius:14px;padding:1.25rem;margin-top:1rem;}
.help-card h6{font-weight:700;color:var(--ink);margin-bottom:.4rem;}
.help-card p{color:var(--muted);font-size:.85rem;margin-bottom:.75rem;}
.help-card .phone{color:var(--ink);font-weight:600;display:inline-flex;align-items:center;gap:.4rem;}
.help-card .phone i{color:var(--brand);}

/* Right content */
.content-card{background:#fff;border-radius:16px;padding:2.25rem;box-shadow:0 4px 20px rgba(15,61,138,.06);}
.content-card h2{color:var(--brand-dark);font-weight:800;font-size:1.7rem;margin-bottom:.4rem;}
.content-card .lede{color:#475569;margin-bottom:1rem;}
.content-card hr{margin:1rem 0 1.5rem;border-color:#e5e7eb;}
.content-card p{color:#475569;font-size:.95rem;line-height:1.7;}

.highlights{border-left:4px solid var(--brand);background:#f8faff;border-radius:0 10px 10px 0;padding:1.25rem 1.4rem;margin-top:1.25rem;}
.highlights h5{color:var(--brand-dark);font-weight:700;margin-bottom:1rem;}
.highlights .item{display:flex;align-items:flex-start;gap:.55rem;color:var(--ink);font-weight:500;font-size:.92rem;margin-bottom:.9rem;}
.highlights .item i{color:var(--teal);font-size:1.05rem;margin-top:2px;}

.fac-img{width:100%;border-radius:12px;object-fit:cover;}
.fac-img-lg{height:270px;}
.fac-img-sm{height:130px;}

.cta-box{background:var(--primary-gradient);color:#fff;border-radius:12px;padding:1.3rem;text-align:center;margin-top:1rem;}
.cta-box p{color:#fff;margin-bottom:.75rem;font-size:.95rem;}
.btn-white{background:#fff;color:var(--brand-dark);border-radius:8px;padding:.55rem 1.3rem;font-weight:600;border:none;}
.btn-white:hover{background:#f1f5ff;color:var(--brand-dark);}

@media (max-width: 991px){
    .page-title{font-size:1.6rem;}
    .content-card{padding:1.5rem;}
}


.speciality-section .custom-title {
    font-size: 18px;
}

iframe.footer-map {
    width: 100%;
    height: 210px;
}
.map-wrap {
    position: relative;
    overflow: hidden;
}
.map-wrap::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30px;
    background: #fff;
    z-index: 10;
}


.member-quote-section h2 {
    font-size: 46px;
    padding-bottom: 8px;
}
.member-quote-section .title {
    color: #B68297;
    padding-bottom: 20px;
}
.member-quote-section .quote {
    border-left: 3px solid var(--brand);
    padding-left: 14px;
    font-style: italic;
    color: #22344f;
    font-size: 30px;
}
.member-quote-section p.small {
    font-size: 16px;
    padding-top: 20px;
    line-height: 30px;
}


.about-section .section-header.section-header-two {
    text-align: left;
 }

.member-quote-section {
    background-color: #F0F3FF;
    background-image: url("../img/certificate/certificate-bg.png");
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.about-department {
    padding: 50px 0;
}
.about-department .section-header-two {
    text-align: left;
}
.department-services {
    background-color: #F0F3FF;
    background-image: url(../img/certificate/certificate-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    overflow: hidden;
    padding: 50px 0;
}


.our-specialized {
    padding: 50px 0;
}