/* =========================================================
   AidPlus Public Website Theme  (loads AFTER style.css)
   Doccure-style theme  Primary : #0E82FD (blue)   Dark : #0F172A
   ========================================================= */
:root {
    --p: #0E82FD;
    --p-dark: #0A6ADB;
    --p-light: #E8F1FF;
    --s: #1C5B91;
    --s-dark: #0F3D66;
    --accent: #FF6A00;
    --ink: #0F172A;
    --muted: #6B7280;
    --line: #E5E7EB;
    --bg: #F8FAFC;
    --white: #fff;
    --radius: 12px;
    --shadow: 0 4px 24px rgba(15, 23, 42, .06);
    --shadow-lg: 0 16px 40px rgba(15, 23, 42, .12);
    --font: 'Inter', 'Poppins', 'Segoe UI', Arial, sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--ink); background: var(--white); line-height: 1.7; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font); color: var(--ink); font-weight: 600; }
a { color: var(--p); transition: all .25s ease; }
a:hover, a:focus { color: var(--s); text-decoration: none; }
img { max-width: 100%; }
::selection { background: var(--p); color: #fff; }

/* ---------- Buttons ---------- */
.btn-site { display: inline-block; padding: 12px 26px; border-radius: 8px; font-weight: 600; font-size: 14px; letter-spacing: .3px; border: 2px solid transparent; cursor: pointer; transition: all .25s ease; line-height: 1.4; }
.btn-site i { margin-right: 6px; }
.btn-site-primary { background: var(--p); color: #fff; border-color: var(--p); }
.btn-site-primary:hover { background: var(--p-dark); border-color: var(--p-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(14, 130, 253, .35); }
.btn-site-secondary { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn-site-secondary:hover { background: var(--p); border-color: var(--p); color: #fff; transform: translateY(-2px); }
.btn-site-outline { background: transparent; color: var(--p); border-color: var(--p); }
.btn-site-outline:hover { background: var(--p); color: #fff; }
.btn-site-white { background: #fff; color: var(--p); border-color: #fff; }
.btn-site-white:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn-site-light { background: var(--p-light); color: var(--p-dark); border-color: var(--p-light); }
.btn-site-light:hover { background: var(--p); color: #fff; }
.btn-block-site { display: block; width: 100%; text-align: center; }

/* ---------- Top bar ---------- */
.site-topbar { background: var(--s); color: #fff; font-size: 13px; }
.site-topbar ul { margin: 0; padding: 0; list-style: none; }
.site-topbar li { display: inline-block; padding: 8px 14px 8px 0; margin-right: 6px; }
.site-topbar li i { color: #9be6f0; margin-right: 6px; }
.site-topbar a { color: #fff; }
.site-topbar a:hover { color: #9be6f0; }
.site-topbar .topbar-right { text-align: right; }
.site-topbar .topbar-right li { padding-right: 0; margin-left: 10px; margin-right: 0; }
.site-topbar .social-link { display: inline-block; width: 26px; height: 26px; line-height: 26px; text-align: center; border-radius: 50%; background: rgba(255, 255, 255, .12); color: #fff; }
.site-topbar .social-link:hover { background: var(--p); }
#google_translate_element { display: inline-block; vertical-align: middle; }
#google_translate_element .goog-te-gadget { font-size: 0; }
#google_translate_element .goog-te-combo { font-size: 12px; padding: 2px 4px; border-radius: 4px; border: 0; margin: 0; }

/* ---------- Header ---------- */
.site-header { background: #fff; border-bottom: 1px solid var(--line); }
.site-brand { display: flex; align-items: center; gap: 16px; padding: 14px 0; }
.site-brand img { max-height: 84px; width: auto; }
.site-brand .brand-text h1 { margin: 0; font-size: 28px; font-weight: 700; color: var(--p); letter-spacing: .5px; line-height: 1.15; }
.site-brand .brand-text p { margin: 4px 0 0; color: var(--muted); font-size: 13px; }
.header-cta { display: flex; align-items: center; justify-content: flex-end; gap: 14px; height: 100%; padding: 18px 0; }
.header-cta .cta-box { display: flex; align-items: center; gap: 10px; }
.header-cta .cta-box i { width: 44px; height: 44px; line-height: 44px; text-align: center; border-radius: 50%; background: var(--p-light); color: var(--p); font-size: 18px; }
.header-cta .cta-box small { display: block; color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: .5px; }
.header-cta .cta-box strong { display: block; color: var(--ink); font-size: 15px; line-height: 1.2; }

/* ---------- Navigation ---------- */
.site-nav { background: var(--p); box-shadow: 0 4px 15px rgba(0, 151, 171, .25); position: relative; z-index: 50; }
.site-nav.is-sticky { position: fixed; top: 0; left: 0; right: 0; animation: navDown .35s ease; }
@keyframes navDown { from { transform: translateY(-100%); } to { transform: translateY(0); } }
.site-nav ul.menu { margin: 0; padding: 0; list-style: none; display: flex; flex-wrap: wrap; }
.site-nav ul.menu li { position: relative; }
.site-nav ul.menu li a { display: block; padding: 16px 18px; color: #fff; font-weight: 500; font-size: 14px; text-transform: uppercase; letter-spacing: .5px; position: relative; }
.site-nav ul.menu li a::after { content: ""; position: absolute; left: 18px; right: 18px; bottom: 10px; height: 2px; background: #fff; transform: scaleX(0); transition: transform .25s ease; transform-origin: left; }
.site-nav ul.menu li a:hover::after, .site-nav ul.menu li.active a::after { transform: scaleX(1); }
.site-nav ul.menu li.active a { background: rgba(255, 255, 255, .12); }
.site-nav ul.menu li.nav-cta { margin-left: auto; }
.site-nav ul.menu li.nav-cta a { background: var(--s); }
.site-nav ul.menu li.nav-cta a::after { display: none; }
.site-nav ul.menu li.nav-cta a:hover { background: var(--s-dark); }
.site-nav ul.menu li.nav-login a { background: var(--accent); }
.site-nav ul.menu li.nav-login a::after { display: none; }
.site-nav ul.menu li.nav-login a:hover { background: #e05e00; }
/* mobile menu (meanmenu) */
.mean-container .mean-bar { background: var(--p); padding: 4px 0 0; min-height: 46px; z-index: 999; }
.mean-container a.meanmenu-reveal { color: #fff; padding: 12px 14px; }
.mean-container a.meanmenu-reveal span { background: #fff; }
.mean-container .mean-nav { background: var(--s); margin-top: 46px; }
.mean-container .mean-nav ul li a { padding: 12px 5%; font-size: 14px; border-top: 1px solid rgba(255, 255, 255, .1); }
.mean-container .mean-nav ul li a:hover { background: rgba(255, 255, 255, .1); }
.mobile-brand { display: none; padding: 10px 12px 10px 60px; background: #fff; align-items: center; gap: 10px; }
.mobile-brand img { max-height: 48px; }
.mobile-brand span { font-weight: 700; color: var(--p); font-size: 16px; }
.mean-container .mean-push { display: none; }

/* ---------- Page hero / breadcrumb ---------- */
.page-hero { position: relative; padding: 70px 0; color: #fff; background: linear-gradient(135deg, var(--s) 0%, var(--p) 100%); overflow: hidden; }
.page-hero::before { content: ""; position: absolute; inset: 0; background: url(../Images/Breadcrumb/doctor_bg.jpg) center/cover no-repeat; opacity: .18; }
.page-hero::after { content: ""; position: absolute; right: -80px; top: -80px; width: 320px; height: 320px; border-radius: 50%; background: rgba(255, 255, 255, .08); }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; font-size: 38px; font-weight: 700; margin: 0 0 8px; }
.page-hero p { color: rgba(255, 255, 255, .85); margin: 0; max-width: 640px; font-size: 15px; }
.page-hero .crumbs { list-style: none; padding: 0; margin: 14px 0 0; font-size: 13px; }
.page-hero .crumbs li { display: inline-block; color: rgba(255, 255, 255, .8); }
.page-hero .crumbs li + li::before { content: "\f105"; font-family: FontAwesome; margin: 0 10px; opacity: .6; }
.page-hero .crumbs a { color: #fff; }
.page-hero .crumbs a:hover { color: #9be6f0; }

/* ---------- Sections ---------- */
.sec { padding: 80px 0; }
.sec-sm { padding: 50px 0; }
.sec-alt { background: var(--bg); }
.sec-dark { background: linear-gradient(135deg, var(--s) 0%, var(--p) 100%); color: #fff; }
.sec-dark h2, .sec-dark h3, .sec-dark p { color: #fff; }
.sec-title { text-align: center; margin-bottom: 45px; }
.sec-title .kicker { display: inline-block; color: var(--p); font-weight: 600; text-transform: uppercase; letter-spacing: 2px; font-size: 12px; margin-bottom: 8px; }
.sec-title h2 { font-size: 34px; font-weight: 700; margin: 0 0 12px; }
.sec-title h2 span { color: var(--p); }
.sec-title p { color: var(--muted); max-width: 620px; margin: 0 auto; }
.sec-title.left { text-align: left; }
.sec-title.left p { margin: 0; }
.sec-title .bar { width: 60px; height: 4px; background: linear-gradient(90deg, var(--p), var(--s)); border-radius: 4px; margin: 0 auto 14px; }
.sec-title.left .bar { margin-left: 0; }
.sec-dark .sec-title .kicker { color: #9be6f0; }
.sec-dark .sec-title .bar { background: #fff; }

/* ---------- Home hero slider (owl) ---------- */
.hero-slider .item { position: relative; height: 560px; background-size: cover; background-position: center; }
.hero-slider .item::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(31, 40, 102, .82) 0%, rgba(0, 151, 171, .45) 60%, rgba(0, 0, 0, 0) 100%); }
.hero-slider .item img { display: none; }
.hero-slider .caption { position: absolute; left: 0; right: 0; top: 50%; transform: translateY(-50%); z-index: 2; }
.hero-slider .caption .kicker { display: inline-block; background: rgba(255, 255, 255, .15); color: #fff; padding: 6px 16px; border-radius: 50px; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 18px; backdrop-filter: blur(4px); }
.hero-slider .caption h1 { color: #fff; font-size: 52px; font-weight: 700; line-height: 1.15; margin: 0 0 16px; text-shadow: 0 4px 20px rgba(0, 0, 0, .25); }
.hero-slider .caption p { color: rgba(255, 255, 255, .92); font-size: 18px; max-width: 560px; margin: 0 0 28px; }
.hero-slider .caption .btn-site { margin-right: 10px; margin-bottom: 10px; }
.hero-wrap { position: relative; }
.hero-wrap .mainslider_nav i { position: absolute; top: 50%; transform: translateY(-50%); z-index: 5; width: 50px; height: 50px; line-height: 50px; text-align: center; border-radius: 50%; background: rgba(255, 255, 255, .15); color: #fff; font-size: 24px; cursor: pointer; transition: all .25s; backdrop-filter: blur(4px); }
.hero-wrap .mainslider_nav i:hover { background: #fff; color: var(--p); }
.hero-wrap .mainslider_nav .testi_prev { left: 25px; }
.hero-wrap .mainslider_nav .testi_next { right: 25px; }
.hero-slider .owl-dots { position: absolute; bottom: 22px; left: 0; right: 0; text-align: center; }
.hero-slider .owl-dots .owl-dot { display: inline-block; width: 10px; height: 10px; border-radius: 50%; background: rgba(255, 255, 255, .45); margin: 0 4px; transition: all .25s; }
.hero-slider .owl-dots .owl-dot.active { background: #fff; width: 28px; border-radius: 10px; }
.hero-static { height: 480px; }

/* ---------- Quick info cards (overlapping hero) ---------- */
.quick-cards { margin-top: -70px; position: relative; z-index: 10; }
.quick-card { background: #fff; border-radius: var(--radius); padding: 28px 26px; box-shadow: var(--shadow); height: 100%; border-top: 4px solid var(--p); transition: all .3s ease; margin-bottom: 20px; }
.quick-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.quick-card.alt { border-top-color: var(--s); }
.quick-card.accent { border-top-color: var(--accent); }
.quick-card i.qc-icon { width: 56px; height: 56px; line-height: 56px; text-align: center; border-radius: 14px; background: var(--p-light); color: var(--p); font-size: 24px; margin-bottom: 16px; }
.quick-card.alt i.qc-icon { background: #EAEBF7; color: var(--s); }
.quick-card.accent i.qc-icon { background: #FFF0E5; color: var(--accent); }
.quick-card h3 { font-size: 18px; margin: 0 0 8px; }
.quick-card p { color: var(--muted); margin: 0 0 10px; font-size: 14px; }
.quick-card a.more { font-weight: 600; font-size: 13px; }
.quick-card a.more i { margin-left: 4px; transition: margin .2s; }
.quick-card a.more:hover i { margin-left: 8px; }

/* ---------- Welcome / about block ---------- */
.about-media { position: relative; }
.about-media img { border-radius: var(--radius); box-shadow: var(--shadow-lg); width: 100%; object-fit: cover; }
.about-media .exp-badge { position: absolute; bottom: -20px; right: -10px; background: var(--s); color: #fff; padding: 18px 24px; border-radius: var(--radius); box-shadow: var(--shadow-lg); text-align: center; }
.about-media .exp-badge strong { display: block; font-size: 32px; line-height: 1; color: #fff; }
.about-media .exp-badge span { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; }
.about-text p { color: var(--muted); }
.feature-list { list-style: none; padding: 0; margin: 20px 0 30px; }
.feature-list li { padding: 8px 0 8px 34px; position: relative; font-weight: 500; }
.feature-list li::before { content: "\f00c"; font-family: FontAwesome; position: absolute; left: 0; top: 8px; width: 24px; height: 24px; line-height: 24px; text-align: center; border-radius: 50%; background: var(--p-light); color: var(--p); font-size: 11px; }
.about-body { color: var(--ink); font-size: 15px; }
.about-body p { margin-bottom: 14px; }
.about-body p:first-of-type::first-letter { font-size: 42px; font-weight: 700; color: var(--p); float: left; line-height: 1; margin: 4px 8px 0 0; }

/* ---------- Department / service chips ---------- */
.dept-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 20px; text-align: center; transition: all .3s; margin-bottom: 24px; height: 100%; }
.dept-card:hover { border-color: var(--p); box-shadow: var(--shadow); transform: translateY(-4px); }
.dept-card i { width: 64px; height: 64px; line-height: 64px; border-radius: 50%; background: linear-gradient(135deg, var(--p), var(--s)); color: #fff; font-size: 26px; margin-bottom: 14px; display: inline-block; }
.dept-card h4 { font-size: 15px; margin: 0 0 6px; text-transform: uppercase; letter-spacing: .5px; }
.dept-card p { font-size: 13px; color: var(--muted); margin: 0; }
.dept-card a.stretch { color: inherit; display: block; }

/* ---------- Doctor cards ---------- */
.doc-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); margin-bottom: 30px; transition: all .3s; position: relative; }
.doc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.doc-card .doc-photo { position: relative; height: 280px; background: var(--p-light); overflow: hidden; }
.doc-card .doc-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform .5s; }
.doc-card:hover .doc-photo img { transform: scale(1.06); }
.doc-card .doc-photo .dept-tag { position: absolute; top: 12px; left: 12px; background: var(--s); color: #fff; font-size: 11px; padding: 4px 12px; border-radius: 50px; text-transform: uppercase; letter-spacing: .5px; }
.doc-card .doc-photo .avail-tag { position: absolute; top: 12px; right: 12px; background: #16A34A; color: #fff; font-size: 11px; padding: 4px 10px; border-radius: 50px; }
.doc-card .doc-photo .avail-tag.off { background: #94A3B8; }
.doc-card .doc-body { padding: 20px 20px 18px; }
.doc-card .doc-body h4 { margin: 0 0 4px; font-size: 17px; }
.doc-card .doc-body .spec { color: var(--p); font-weight: 600; font-size: 13px; margin-bottom: 4px; }
.doc-card .doc-body .qual { color: var(--muted); font-size: 12.5px; margin-bottom: 12px; min-height: 20px; }
.doc-card .doc-meta { list-style: none; padding: 12px 0 0; margin: 0 0 14px; border-top: 1px dashed var(--line); font-size: 13px; }
.doc-card .doc-meta li { padding: 3px 0; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.doc-card .doc-meta li i { width: 20px; color: var(--p); }
.doc-card .doc-meta li a { color: var(--ink); }
.doc-card .fee { display: inline-block; background: var(--p-light); color: var(--p-dark); padding: 3px 10px; border-radius: 50px; font-size: 12px; font-weight: 600; }
.doc-filter { text-align: center; margin-bottom: 40px; }
.doc-filter ul { list-style: none; padding: 0; margin: 0; }
.doc-filter li { display: inline-block; margin: 4px; }
.doc-filter li a, .doc-filter li.filter { display: inline-block; padding: 8px 20px; border-radius: 50px; border: 1px solid var(--line); background: #fff; color: var(--ink); font-size: 13px; font-weight: 500; cursor: pointer; transition: all .25s; }
.doc-filter li.filter:hover, .doc-filter li.filter.active { background: var(--p); border-color: var(--p); color: #fff; }
.doc-filter li.filter a { border: 0; padding: 0; background: transparent; color: inherit; }
.all_doctor_item .mix { display: none; }
.doc-search { max-width: 480px; margin: 0 auto 24px; position: relative; }
.doc-search input { border-radius: 50px; padding: 12px 20px 12px 46px; height: auto; border: 1px solid var(--line); box-shadow: none; }
.doc-search i { position: absolute; left: 18px; top: 50%; transform: translateY(-50%); color: var(--muted); }

/* ---------- Stats / counters ---------- */
.stat-box { text-align: center; padding: 30px 20px; }
.stat-box i { font-size: 40px; color: #9be6f0; margin-bottom: 12px; display: block; }
.stat-box .num { font-size: 46px; font-weight: 700; color: #fff; line-height: 1; margin: 0 0 8px; }
.stat-box .num small { font-size: 26px; }
.stat-box h4 { color: #fff; margin: 0 0 6px; font-size: 16px; text-transform: uppercase; letter-spacing: 1px; }
.stat-box p { color: rgba(255, 255, 255, .8); font-size: 13px; margin: 0; }
.stat-box + .stat-box { border-left: 1px solid rgba(255, 255, 255, .15); }

/* ---------- Testimonials ---------- */
.testi-card { background: #fff; border-radius: var(--radius); padding: 34px 30px; box-shadow: var(--shadow); position: relative; margin: 20px 10px; }
.testi-card::before { content: "\f10d"; font-family: FontAwesome; position: absolute; top: 18px; right: 24px; font-size: 48px; color: var(--p-light); }
.testi-card p { color: var(--ink); font-size: 15px; font-style: italic; margin: 0 0 20px; position: relative; }
.testi-card .who { display: flex; align-items: center; gap: 14px; }
.testi-card .who .avatar { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg, var(--p), var(--s)); color: #fff; font-weight: 700; font-size: 18px; text-align: center; line-height: 48px; flex-shrink: 0; }
.testi-card .who h5 { margin: 0; font-size: 15px; }
.testi-card .who span { color: var(--muted); font-size: 12.5px; }
.testi-card .stars { color: #F59E0B; font-size: 12px; margin-bottom: 8px; }
.testi-nav { text-align: center; margin-top: 10px; }
.testi-nav i { display: inline-block; width: 42px; height: 42px; line-height: 40px; border-radius: 50%; border: 1px solid var(--line); background: #fff; color: var(--p); cursor: pointer; margin: 0 5px; transition: all .25s; }
.testi-nav i:hover { background: var(--p); color: #fff; }

/* ---------- Gallery ---------- */
.gallery-item { position: relative; border-radius: var(--radius); overflow: hidden; margin-bottom: 30px; box-shadow: var(--shadow); background: #eef2f5; }
.gallery-item img { width: 100%; height: 240px; object-fit: cover; transition: transform .5s; display: block; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item .g-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(31, 40, 102, .85), rgba(0, 0, 0, 0) 60%); opacity: 0; transition: opacity .3s; display: flex; align-items: flex-end; padding: 18px; color: #fff; }
.gallery-item:hover .g-overlay { opacity: 1; }
.gallery-item .g-overlay h5 { color: #fff; margin: 0 0 4px; font-size: 15px; }
.gallery-item .g-overlay p { margin: 0; font-size: 12.5px; color: rgba(255, 255, 255, .85); }
.gallery-item .g-zoom { position: absolute; top: 14px; right: 14px; width: 36px; height: 36px; line-height: 36px; text-align: center; border-radius: 50%; background: #fff; color: var(--p); opacity: 0; transform: scale(.6); transition: all .3s; }
.gallery-item:hover .g-zoom { opacity: 1; transform: scale(1); }

/* ---------- Cards / forms ---------- */
.site-card { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 34px; margin-bottom: 30px; }
.site-card .card-head { margin-bottom: 24px; padding-bottom: 16px; border-bottom: 1px solid var(--line); display: flex; align-items: center; gap: 12px; }
.site-card .card-head i { width: 44px; height: 44px; line-height: 44px; text-align: center; border-radius: 12px; background: var(--p-light); color: var(--p); font-size: 18px; }
.site-card .card-head h3 { margin: 0; font-size: 20px; }
.site-card .card-head small { display: block; color: var(--muted); font-size: 12.5px; }
.form-site .form-group { margin-bottom: 18px; }
.form-site label { font-weight: 500; font-size: 13px; color: var(--ink); margin-bottom: 6px; }
.form-site label .req { color: #DC2626; }
.form-site .form-control { height: 46px; border-radius: 10px; border: 1px solid var(--line); box-shadow: none; padding: 10px 14px; font-size: 14px; transition: all .2s; background: #FAFBFC; }
.form-site textarea.form-control { height: auto; min-height: 110px; }
.form-site .form-control:focus { border-color: var(--p); background: #fff; box-shadow: 0 0 0 3px rgba(0, 151, 171, .12); }
.form-site .input-icon { position: relative; }
.form-site .input-icon i { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--muted); pointer-events: none; }
.form-site .input-icon .form-control { padding-left: 40px; }
.form-site .field-validation-error, .form-site .error, .form-site .text-danger { color: #DC2626; font-size: 12px; display: block; margin-top: 4px; }
.form-site .input-validation-error { border-color: #DC2626 !important; }
.form-site .gender-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.form-site .gender-pills label { flex: 1; text-align: center; border: 1px solid var(--line); border-radius: 10px; padding: 10px 8px; cursor: pointer; font-weight: 500; margin: 0; background: #FAFBFC; transition: all .2s; }
.form-site .gender-pills input { display: none; }
.form-site .gender-pills input:checked + label { background: var(--p); color: #fff; border-color: var(--p); }
.alert-site { border-radius: 12px; padding: 14px 18px; display: flex; gap: 12px; align-items: flex-start; margin-bottom: 20px; font-size: 14px; border: 1px solid transparent; }
.alert-site i { font-size: 18px; margin-top: 2px; }
.alert-site.success { background: #ECFDF5; color: #065F46; border-color: #A7F3D0; }
.alert-site.error { background: #FEF2F2; color: #991B1B; border-color: #FECACA; }
.alert-site.info { background: var(--p-light); color: var(--p-dark); border-color: #B7E7ED; }
.side-info { background: linear-gradient(160deg, var(--s) 0%, var(--p) 100%); color: #fff; border-radius: var(--radius); padding: 34px; height: 100%; position: relative; overflow: hidden; }
.side-info::after { content: ""; position: absolute; width: 220px; height: 220px; border-radius: 50%; background: rgba(255, 255, 255, .08); right: -70px; bottom: -70px; }
.side-info h3 { color: #fff; margin: 0 0 8px; font-size: 22px; }
.side-info > p { color: rgba(255, 255, 255, .85); font-size: 14px; }
.side-info ul { list-style: none; padding: 0; margin: 24px 0 0; position: relative; z-index: 1; }
.side-info li { display: flex; gap: 14px; margin-bottom: 20px; align-items: flex-start; }
.side-info li i { width: 42px; height: 42px; line-height: 42px; text-align: center; border-radius: 12px; background: rgba(255, 255, 255, .15); flex-shrink: 0; font-size: 16px; }
.side-info li small { display: block; text-transform: uppercase; letter-spacing: 1px; font-size: 11px; opacity: .75; }
.side-info li strong, .side-info li a { color: #fff; font-size: 15px; word-break: break-word; }
.side-info li a:hover { color: #9be6f0; }
.steps { list-style: none; padding: 0; margin: 20px 0 0; counter-reset: step; }
.steps li { position: relative; padding: 0 0 18px 46px; counter-increment: step; font-size: 14px; }
.steps li::before { content: counter(step); position: absolute; left: 0; top: 0; width: 32px; height: 32px; line-height: 32px; text-align: center; border-radius: 50%; background: rgba(255, 255, 255, .18); color: #fff; font-weight: 700; font-size: 13px; }
.steps li strong { display: block; color: #fff; }
.steps li span { opacity: .8; }

/* ---------- Contact ---------- */
.contact-tile { background: #fff; border-radius: var(--radius); padding: 28px 22px; text-align: center; box-shadow: var(--shadow); margin-bottom: 30px; height: 100%; transition: all .3s; }
.contact-tile:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.contact-tile i { width: 60px; height: 60px; line-height: 60px; border-radius: 50%; background: linear-gradient(135deg, var(--p), var(--s)); color: #fff; font-size: 22px; margin-bottom: 14px; display: inline-block; }
.contact-tile h4 { margin: 0 0 6px; font-size: 16px; }
.contact-tile p, .contact-tile a { color: var(--muted); font-size: 14px; margin: 0; word-break: break-word; }
.contact-tile a:hover { color: var(--p); }
.map-frame { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.map-frame iframe { width: 100%; height: 380px; border: 0; display: block; }

/* ---------- Tables / accordion ---------- */
.table-site { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.table-site table { margin: 0; }
.table-site thead th { background: var(--s); color: #fff; border: 0; font-weight: 600; font-size: 13px; text-transform: uppercase; letter-spacing: .5px; padding: 14px 16px; }
.table-site tbody td { padding: 12px 16px; vertical-align: middle; border-color: var(--line); font-size: 14px; }
.table-site tbody tr:hover { background: var(--p-light); }
.badge-site { display: inline-block; padding: 3px 10px; border-radius: 50px; font-size: 11.5px; font-weight: 600; background: var(--p-light); color: var(--p-dark); }
.badge-site.navy { background: #EAEBF7; color: var(--s); }
.badge-site.orange { background: #FFF0E5; color: var(--accent); }
.acc-site .panel { border: 1px solid var(--line); border-radius: 12px; box-shadow: none; margin-bottom: 12px; overflow: hidden; }
.acc-site .panel-heading { background: #fff; padding: 0; border: 0; }
.acc-site .panel-heading a { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; color: var(--ink); font-weight: 600; font-size: 15px; }
.acc-site .panel-heading a:hover, .acc-site .panel-heading a[aria-expanded="true"] { background: var(--p-light); color: var(--p-dark); }
.acc-site .panel-heading a .fa-chevron-down { transition: transform .25s; font-size: 12px; color: var(--muted); }
.acc-site .panel-heading a[aria-expanded="true"] .fa-chevron-down { transform: rotate(180deg); }
.acc-site .panel-body { padding: 0; border-top: 1px solid var(--line) !important; }
.acc-site .panel-body table { margin: 0; }
.acc-site .panel-body td { padding: 10px 20px; border-color: var(--line); font-size: 14px; }
.acc-site .price { color: #16A34A; font-weight: 700; white-space: nowrap; }
.emp-avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--p), var(--s)); color: #fff; font-weight: 700; text-align: center; line-height: 40px; display: inline-block; margin-right: 10px; font-size: 14px; }
.list-search { max-width: 420px; position: relative; margin-bottom: 20px; }
.list-search input { border-radius: 50px; padding-left: 42px; height: 44px; border: 1px solid var(--line); box-shadow: none; }
.list-search i { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); color: var(--muted); }

/* ---------- Report thumbnails ---------- */
.report-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); margin-bottom: 30px; transition: all .3s; }
.report-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.report-card img { width: 100%; height: 220px; object-fit: cover; display: block; background: #eef2f5; }
.report-card .rc-body { padding: 14px 16px; display: flex; justify-content: space-between; align-items: center; gap: 10px; }
.report-card .rc-body p { margin: 0; font-weight: 500; font-size: 14px; }
.empty-state { text-align: center; padding: 50px 20px; color: var(--muted); }
.empty-state i { font-size: 48px; color: var(--line); margin-bottom: 14px; display: block; }

/* ---------- CTA strip ---------- */
.cta-strip { background: linear-gradient(135deg, var(--p) 0%, var(--s) 100%); border-radius: var(--radius); padding: 44px 40px; color: #fff; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; box-shadow: var(--shadow-lg); }
.cta-strip h3 { color: #fff; margin: 0 0 6px; font-size: 26px; }
.cta-strip p { margin: 0; color: rgba(255, 255, 255, .85); }
.cta-strip .btns { display: flex; gap: 10px; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.site-footer { background: #131a3a; color: rgba(255, 255, 255, .78); font-size: 14px; }
.site-footer .footer-main { padding: 60px 0 30px; }
.site-footer h4 { color: #fff; font-size: 16px; text-transform: uppercase; letter-spacing: 1px; margin: 0 0 20px; position: relative; padding-bottom: 10px; }
.site-footer h4::after { content: ""; position: absolute; left: 0; bottom: 0; width: 36px; height: 3px; background: var(--p); border-radius: 3px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { margin-bottom: 10px; }
.site-footer ul li a { color: rgba(255, 255, 255, .78); }
.site-footer ul li a:hover { color: #9be6f0; padding-left: 4px; }
.site-footer ul.links li a::before { content: "\f105"; font-family: FontAwesome; margin-right: 8px; color: var(--p); }
.site-footer ul.contact li { display: flex; gap: 12px; align-items: flex-start; }
.site-footer ul.contact li i { color: #9be6f0; margin-top: 5px; width: 16px; }
.site-footer .footer-brand img { max-height: 70px; background: #fff; border-radius: 10px; padding: 6px; margin-bottom: 14px; }
.site-footer .footer-brand p { color: rgba(255, 255, 255, .7); }
.site-footer .social a { display: inline-block; width: 36px; height: 36px; line-height: 36px; text-align: center; border-radius: 50%; background: rgba(255, 255, 255, .08); color: #fff; margin-right: 6px; }
.site-footer .social a:hover { background: var(--p); }
.site-footer .footer-map iframe { width: 100%; height: 200px; border: 0; border-radius: 12px; }
.site-footer .footer-bottom { border-top: 1px solid rgba(255, 255, 255, .08); padding: 18px 0; font-size: 13px; }
.site-footer .footer-bottom a { color: #9be6f0; }
.scroll-top { position: fixed; right: 22px; bottom: 22px; width: 44px; height: 44px; line-height: 44px; text-align: center; border-radius: 50%; background: var(--p); color: #fff; cursor: pointer; z-index: 999; box-shadow: 0 6px 18px rgba(0, 151, 171, .4); opacity: 0; visibility: hidden; transition: all .3s; }
.scroll-top.show { opacity: 1; visibility: visible; }
.scroll-top:hover { background: var(--s); }
.wa-float { position: fixed; left: 22px; bottom: 22px; z-index: 999; width: 52px; height: 52px; line-height: 52px; text-align: center; border-radius: 50%; background: #25D366; color: #fff; font-size: 26px; box-shadow: 0 6px 18px rgba(37, 211, 102, .45); }
.wa-float:hover { color: #fff; transform: scale(1.08); }

/* ---------- Utilities ---------- */
.mt-0 { margin-top: 0 !important; } .mt-10 { margin-top: 10px; } .mt-20 { margin-top: 20px; } .mt-30 { margin-top: 30px; } .mt-40 { margin-top: 40px; }
.mb-0 { margin-bottom: 0 !important; } .mb-10 { margin-bottom: 10px; } .mb-20 { margin-bottom: 20px; } .mb-30 { margin-bottom: 30px; }
.text-muted-site { color: var(--muted); }
.row-flex { display: flex; flex-wrap: wrap; }
.row-flex > [class*="col-"] { display: flex; flex-direction: column; }
.row-flex > [class*="col-"] > * { flex: 1; }

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
    .site-brand { justify-content: center; text-align: center; }
    .header-cta { justify-content: center; padding-top: 0; }
    .hero-slider .item { height: 460px; }
    .hero-slider .caption h1 { font-size: 38px; }
    .stat-box + .stat-box { border-left: 0; }
    .site-topbar .topbar-right { text-align: center; }
    .site-topbar .topbar-left { text-align: center; }
}
@media (max-width: 767px) {
    .site-topbar { display: none; }
    .site-header { display: none; }
    .mobile-brand { display: flex; }
    .site-nav { display: none; }
    .page-hero { padding: 44px 0; }
    .page-hero h1 { font-size: 28px; }
    .sec { padding: 50px 0; }
    .sec-title h2 { font-size: 26px; }
    .hero-slider .item { height: 400px; }
    .hero-slider .caption h1 { font-size: 28px; }
    .hero-slider .caption p { font-size: 15px; }
    .hero-wrap .mainslider_nav i { display: none; }
    .quick-cards { margin-top: 20px; }
    .about-media .exp-badge { right: 10px; bottom: 10px; padding: 12px 16px; }
    .site-card { padding: 22px; }
    .cta-strip { padding: 30px 22px; text-align: center; justify-content: center; }
    .stat-box .num { font-size: 36px; }
}

/* =========================================================
   DOCCURE-STYLE OVERRIDES (header, hero, cards, footer)
   ========================================================= */
body { background: #fff; color: #374151; }
h1, h2, h3, h4, h5, h6 { color: var(--ink); font-weight: 700; letter-spacing: -.2px; }

/* Top bar : white, thin */
.site-topbar { background: #fff; color: var(--muted); border-bottom: 1px solid var(--line); font-size: 14px; }
.site-topbar li { padding: 10px 18px 10px 0; }
.site-topbar li i { color: var(--p); }
.site-topbar a { color: var(--ink); }
.site-topbar a:hover { color: var(--p); }
.site-topbar .social-link { width: 34px; height: 34px; line-height: 34px; background: #fff; border: 1px solid var(--line); color: var(--ink); }
.site-topbar .social-link:hover { background: var(--p); border-color: var(--p); color: #fff; }
.site-topbar .topbar-right li { margin-left: 6px; }
#google_translate_element .goog-te-combo { border: 1px solid var(--line); background: #fff; color: var(--ink); }

/* Header + nav merged into one white bar */
.site-header { border-bottom: 0; }
.site-brand { padding: 12px 0; gap: 12px; }
.site-brand img { max-height: 64px; }
.site-brand .brand-text h1 { font-size: 22px; color: var(--p); font-weight: 800; }
.site-brand .brand-text p { font-size: 12px; }
.header-cta { padding: 12px 0; }
.header-cta .cta-box i { background: var(--p-light); color: var(--p); border-radius: 12px; }
.site-nav { background: #fff; box-shadow: 0 2px 10px rgba(15, 23, 42, .05); border-top: 1px solid var(--line); }
.site-nav.is-sticky { box-shadow: 0 6px 20px rgba(15, 23, 42, .1); }
.site-nav ul.menu { justify-content: center; }
.site-nav ul.menu li a { color: var(--ink); text-transform: none; font-size: 15px; font-weight: 500; letter-spacing: 0; padding: 16px 16px; }
.site-nav ul.menu li a::after { background: var(--p); bottom: 8px; left: 16px; right: 16px; }
.site-nav ul.menu li a:hover, .site-nav ul.menu li.active a { color: var(--p); background: transparent; }
.site-nav ul.menu li.nav-cta { margin-left: auto; padding: 8px 0; }
.site-nav ul.menu li.nav-cta a { background: var(--p); color: #fff; border-radius: 8px; padding: 8px 18px; margin: 0 6px 0 10px; }
.site-nav ul.menu li.nav-cta a:hover { background: var(--p-dark); color: #fff; }
.site-nav ul.menu li.nav-login { padding: 8px 0; }
.site-nav ul.menu li.nav-login a { background: #fff; color: var(--ink); border: 1px solid var(--line); border-radius: 8px; padding: 7px 16px; }
.site-nav ul.menu li.nav-login a:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.mean-container .mean-bar { background: var(--p); }
.mean-container .mean-nav { background: var(--ink); }
.mobile-brand span { color: var(--p); }

/* Hero : Doccure blue gradient with curved shapes */
.hero-wrap { background: linear-gradient(115deg, #0E82FD 0%, #2B95FF 55%, #5CB0FF 100%); position: relative; overflow: hidden; }
.hero-wrap::before { content: ""; position: absolute; right: -12%; top: -55%; width: 70%; padding-top: 70%; border-radius: 50%; background: rgba(255, 255, 255, .12); pointer-events: none; z-index: 1; }
.hero-wrap::after { content: ""; position: absolute; right: -5%; bottom: -70%; width: 55%; padding-top: 55%; border-radius: 50%; background: rgba(255, 255, 255, .10); pointer-events: none; z-index: 1; }
.hero-slider .item { height: 600px; background-size: cover; background-position: center right; }
.hero-slider .item::before { background: linear-gradient(90deg, rgba(14, 130, 253, .96) 0%, rgba(14, 130, 253, .85) 45%, rgba(14, 130, 253, .35) 100%); }
.hero-slider .caption { top: 46%; }
.hero-slider .caption .container { position: relative; z-index: 3; }
.hero-slider .caption .kicker { background: #fff; color: var(--ink); text-transform: none; letter-spacing: 0; font-size: 14px; font-weight: 600; padding: 10px 18px 10px 12px; border-radius: 50px; box-shadow: var(--shadow); }
.hero-slider .caption .kicker .stars { color: #F59E0B; margin: 0 6px; }
.hero-slider .caption .kicker .avatars { display: inline-flex; margin-right: 8px; vertical-align: middle; }
.hero-slider .caption .kicker .avatars span { width: 30px; height: 30px; border-radius: 50%; border: 2px solid #fff; margin-left: -10px; background: linear-gradient(135deg, var(--p), var(--s)); color: #fff; font-size: 11px; font-weight: 700; text-align: center; line-height: 26px; }
.hero-slider .caption .kicker .avatars span:first-child { margin-left: 0; }
.hero-slider .caption h1 { font-size: 58px; font-weight: 800; letter-spacing: -1px; text-shadow: none; max-width: 640px; }
.hero-slider .caption p { font-size: 17px; max-width: 520px; opacity: .95; }
.hero-slider .owl-dots { bottom: 110px; text-align: left; padding-left: 15px; }
.hero-slider .owl-dots .owl-dot { background: rgba(255, 255, 255, .5); }
.hero-wrap .mainslider_nav i { background: rgba(255, 255, 255, .2); }
.hero-static { height: 560px; }

/* Hero search bar (over slider bottom) */
.hero-search { position: relative; z-index: 20; margin-top: -42px; }
.hero-search form { display: flex; background: #fff; border-radius: 50px; box-shadow: var(--shadow-lg); padding: 8px; align-items: center; max-width: 820px; }
.hero-search .hs-sel { position: relative; flex: 0 0 240px; border-right: 1px solid var(--line); }
.hero-search .hs-sel i, .hero-search .hs-inp i { position: absolute; left: 18px; top: 50%; transform: translateY(-50%); color: var(--p); }
.hero-search .hs-sel select, .hero-search .hs-inp input { width: 100%; border: 0; background: transparent; height: 48px; padding: 0 16px 0 44px; font-size: 14.5px; color: var(--ink); outline: none; box-shadow: none; -webkit-appearance: none; appearance: none; }
.hero-search .hs-sel::after { content: "\f107"; font-family: FontAwesome; position: absolute; right: 16px; top: 50%; transform: translateY(-50%); color: var(--muted); pointer-events: none; }
.hero-search .hs-inp { position: relative; flex: 1; }
.hero-search button { flex: 0 0 auto; background: var(--p); color: #fff; border: 0; border-radius: 50px; height: 48px; padding: 0 30px; font-weight: 600; font-size: 15px; transition: all .25s; }
.hero-search button:hover { background: var(--p-dark); }

/* Quick action links row (Doccure style pill list) */
.quick-links { padding: 26px 0 0; }
.quick-links ul { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.quick-links li a { display: inline-flex; align-items: center; gap: 8px; background: #fff; border: 1px solid var(--line); border-radius: 50px; padding: 10px 18px; color: var(--ink); font-weight: 500; font-size: 14px; box-shadow: var(--shadow); }
.quick-links li a i { width: 28px; height: 28px; line-height: 28px; text-align: center; border-radius: 50%; background: var(--p-light); color: var(--p); font-size: 13px; }
.quick-links li a:hover { border-color: var(--p); color: var(--p); transform: translateY(-2px); }

/* Section titles : Doccure */
.sec-title .kicker { color: var(--p); text-transform: none; letter-spacing: 0; font-size: 14px; background: var(--p-light); padding: 6px 16px; border-radius: 50px; }
.sec-title h2 { font-size: 36px; font-weight: 800; letter-spacing: -.5px; }
.sec-title h2 span { color: var(--p); }
.sec-title .bar { display: none; }
.sec-dark .sec-title .kicker { background: rgba(255, 255, 255, .15); color: #fff; }

/* Quick cards / features */
.quick-cards { margin-top: 40px; }
.quick-card { border-top: 0; border: 1px solid var(--line); box-shadow: none; border-radius: var(--radius); }
.quick-card:hover { border-color: transparent; box-shadow: var(--shadow-lg); }
.quick-card i.qc-icon { border-radius: 50%; }
.quick-card.alt i.qc-icon { background: #FFF1F2; color: #E11D48; }
.quick-card.accent i.qc-icon { background: #ECFDF5; color: #059669; }

/* Speciality cards (Doccure) */
.dept-card { border-radius: 16px; padding: 26px 16px; background: #fff; border: 1px solid var(--line); }
.dept-card i { width: 72px; height: 72px; line-height: 72px; border-radius: 50%; background: var(--p-light); color: var(--p); font-size: 28px; transition: all .3s; }
.dept-card:hover i { background: var(--p); color: #fff; }
.dept-card h4 { text-transform: none; letter-spacing: 0; font-size: 15px; font-weight: 600; }
.dept-card p { color: var(--muted); }

/* Doctor cards (Doccure) */
.doc-card { border: 1px solid var(--line); box-shadow: none; border-radius: 16px; }
.doc-card:hover { box-shadow: var(--shadow-lg); border-color: transparent; }
.doc-card .doc-photo { height: 260px; margin: 12px; border-radius: 12px; }
.doc-card .doc-photo .dept-tag { background: #fff; color: var(--p); box-shadow: var(--shadow); text-transform: none; letter-spacing: 0; font-weight: 600; }
.doc-card .doc-photo .avail-tag { background: #fff; color: #16A34A; box-shadow: var(--shadow); font-weight: 600; }
.doc-card .doc-photo .avail-tag::before { content: ""; display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: #16A34A; margin-right: 6px; }
.doc-card .doc-photo .avail-tag.off { color: #6B7280; }
.doc-card .doc-photo .avail-tag.off::before { background: #9CA3AF; }
.doc-card .doc-body { padding: 4px 20px 20px; }
.doc-card .doc-body h4 { font-size: 17px; font-weight: 700; }
.doc-card .doc-body h4 a { color: var(--ink); }
.doc-card .doc-body .spec { color: var(--muted); font-weight: 500; }
.doc-card .doc-body .qual { color: var(--p); font-weight: 500; }
.doc-card .doc-meta { border-top: 1px solid var(--line); }
.doc-card .fee { background: #ECFDF5; color: #059669; }
.doc-card .btn-site-light { background: #fff; border: 1px solid var(--line); color: var(--ink); }
.doc-card .btn-site-light:hover { background: var(--p); border-color: var(--p); color: #fff; }
.doc-filter li.filter { border-radius: 8px; }
.doc-filter li.filter:hover, .doc-filter li.filter.active { background: var(--ink); border-color: var(--ink); }
.doc-search input, .list-search input { border-radius: 8px; }

/* How it works steps */
.hiw-step { text-align: center; padding: 30px 20px; position: relative; }
.hiw-step .num { width: 64px; height: 64px; line-height: 64px; border-radius: 50%; background: var(--p-light); color: var(--p); font-size: 24px; margin: 0 auto 16px; position: relative; }
.hiw-step .num span { position: absolute; top: -6px; right: -6px; width: 26px; height: 26px; line-height: 26px; border-radius: 50%; background: var(--p); color: #fff; font-size: 12px; font-weight: 700; }
.hiw-step h4 { font-size: 17px; margin: 0 0 8px; }
.hiw-step p { color: var(--muted); font-size: 14px; margin: 0; }
.hiw-step::after { content: "\f105"; font-family: FontAwesome; position: absolute; right: -12px; top: 42px; color: #CBD5E1; font-size: 26px; }
.hiw-step.last::after { display: none; }

/* Why choose : image + text cards */
.why-card { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 28px; height: 100%; margin-bottom: 24px; transition: all .3s; }
.why-card:hover { box-shadow: var(--shadow-lg); border-color: transparent; }
.why-card .wc-icon { width: 54px; height: 54px; line-height: 54px; text-align: center; border-radius: 12px; background: var(--p); color: #fff; font-size: 22px; margin-bottom: 16px; }
.why-card h4 { font-size: 18px; margin: 0 0 8px; }
.why-card p { color: var(--muted); font-size: 14px; margin: 0; }

/* Stats : white cards on light bg (Doccure counters) */
.sec-dark { background: var(--p); }
.stat-box { background: rgba(255, 255, 255, .12); border-radius: 16px; margin-bottom: 20px; }
.stat-box + .stat-box { border-left: 0; }
.stat-box i { color: #fff; opacity: .85; }
.stat-box .num { font-weight: 800; }
.stat-box h4 { text-transform: none; letter-spacing: 0; font-weight: 600; }

/* Testimonials */
.testi-card { border: 1px solid var(--line); box-shadow: none; border-radius: 16px; }
.testi-card::before { color: var(--p-light); }
.testi-card p { font-style: normal; color: #374151; }
.testi-card .who .avatar { background: var(--p); }
.testi-nav i { border-radius: 8px; }
.testi-nav i:hover { background: var(--ink); }

/* FAQ */
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: 12px; margin-bottom: 12px; overflow: hidden; }
.faq-item .faq-q { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 18px 22px; font-weight: 600; color: var(--ink); cursor: pointer; }
.faq-item .faq-q:hover { color: var(--p); }
.faq-item .faq-q i { width: 28px; height: 28px; line-height: 28px; text-align: center; border-radius: 50%; background: var(--p-light); color: var(--p); font-size: 12px; transition: transform .25s; flex-shrink: 0; }
.faq-item.open .faq-q i { transform: rotate(45deg); background: var(--p); color: #fff; }
.faq-item .faq-a { display: none; padding: 0 22px 18px; color: var(--muted); font-size: 14px; }
.faq-item.open .faq-a { display: block; }

/* Gallery / cards / forms / misc */
.gallery-item { border-radius: 16px; box-shadow: none; border: 1px solid var(--line); }
.site-card { border: 1px solid var(--line); box-shadow: none; border-radius: 16px; }
.site-card .card-head i { border-radius: 50%; }
.form-site .form-control { border-radius: 8px; background: #fff; }
.form-site .form-control:focus { box-shadow: 0 0 0 3px rgba(14, 130, 253, .15); }
.form-site .gender-pills label { border-radius: 8px; background: #fff; }
.side-info { background: var(--p); border-radius: 16px; }
.side-info li i { border-radius: 50%; }
.contact-tile { border: 1px solid var(--line); box-shadow: none; border-radius: 16px; }
.contact-tile i { background: var(--p-light); color: var(--p); }
.contact-tile:hover i { background: var(--p); color: #fff; }
.map-frame { border-radius: 16px; }
.table-site { border: 1px solid var(--line); box-shadow: none; border-radius: 16px; }
.table-site thead th { background: var(--p-light); color: var(--ink); text-transform: none; letter-spacing: 0; }
.acc-site .panel-heading a[aria-expanded="true"], .acc-site .panel-heading a:hover { background: var(--p-light); color: var(--p); }
.badge-site.navy { background: var(--p-light); color: var(--p); }
.emp-avatar { background: var(--p); }
.report-card { border: 1px solid var(--line); box-shadow: none; border-radius: 16px; }
.cta-strip { background: var(--p); border-radius: 16px; box-shadow: none; }
.about-media img { border-radius: 16px; box-shadow: none; }
.about-media .exp-badge { background: var(--p); border-radius: 16px; }
.feature-list li::before { background: var(--p); color: #fff; }
.about-body p:first-of-type::first-letter { color: var(--p); }

/* Page hero */
.page-hero { background: var(--p-light); color: var(--ink); padding: 56px 0; }
.page-hero::before { opacity: .07; }
.page-hero::after { background: rgba(14, 130, 253, .08); }
.page-hero h1 { color: var(--ink); font-size: 36px; font-weight: 800; }
.page-hero p { color: var(--muted); }
.page-hero .crumbs li { color: var(--muted); }
.page-hero .crumbs a { color: var(--p); }
.page-hero .crumbs a:hover { color: var(--ink); }

/* Footer : dark navy (Doccure) */
.site-footer { background: #0B1B33; }
.site-footer h4 { text-transform: none; letter-spacing: 0; font-size: 17px; }
.site-footer h4::after { display: none; }
.site-footer ul.links li a::before { color: var(--p); }
.site-footer ul.contact li i { color: var(--p); }
.site-footer .social a:hover { background: var(--p); }
.site-footer .footer-bottom { background: #071324; }
.site-footer .footer-bottom a { color: #8FC3FF; }
.scroll-top { border-radius: 8px; }
.scroll-top:hover { background: var(--ink); }

@media (max-width: 991px) {
    .hero-slider .caption h1 { font-size: 40px; }
    .hero-search .hs-sel { flex-basis: 190px; }
    .hiw-step::after { display: none; }
}
@media (max-width: 767px) {
    .hero-slider .item { height: 460px; }
    .hero-slider .caption h1 { font-size: 30px; }
    .hero-slider .owl-dots { display: none; }
    .hero-search { margin-top: 16px; }
    .hero-search form { flex-direction: column; border-radius: 16px; gap: 6px; }
    .hero-search .hs-sel { flex-basis: auto; width: 100%; border-right: 0; border-bottom: 1px solid var(--line); }
    .hero-search button { width: 100%; border-radius: 10px; }
    .quick-links li a { font-size: 13px; padding: 8px 14px; }
    .sec-title h2 { font-size: 26px; }
    .page-hero h1 { font-size: 28px; }
}

/* Merged header (logo | menu | actions) */
.site-nav { border-top: 0; }
.site-nav .nav-flex { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.site-nav .site-brand { padding: 10px 0; flex-shrink: 0; }
.site-nav ul.menu { flex: 1; justify-content: center; }
.site-nav .nav-actions { display: flex; gap: 8px; flex-shrink: 0; }
.site-nav .nav-actions .btn-site { padding: 10px 18px; font-size: 14px; }
.site-nav .nav-actions .nav-login-btn { border-color: var(--line); color: var(--ink); }
.site-nav .nav-actions .nav-login-btn:hover { background: var(--ink); border-color: var(--ink); color: #fff; }
@media (max-width: 1199px) { .site-nav ul.menu li a { padding: 16px 10px; font-size: 14px; } .site-brand .brand-text p { display: none; } }
@media (max-width: 991px) { .site-nav .nav-flex { flex-wrap: wrap; justify-content: center; } .site-nav ul.menu { order: 3; width: 100%; } }

/* ---- Header fix: override old style.css .menu rules + stop wrapping ---- */
.site-nav .nav-flex { flex-wrap: nowrap; }
.site-nav ul.menu { flex-wrap: nowrap; white-space: nowrap; margin: 0 8px; }
.site-nav ul.menu li { display: inline-block; margin: 0; background: transparent !important; }
.site-nav ul.menu li.active, .site-nav ul.menu li:hover { background: transparent !important; }
.site-nav ul.menu li a { padding: 22px 12px; font-size: 14px; color: var(--ink) !important; background: transparent !important; }
.site-nav ul.menu li a::after { left: 12px; right: 12px; bottom: 14px; }
.site-nav ul.menu li.active a, .site-nav ul.menu li a:hover { color: var(--p) !important; }
.site-nav .site-brand img { max-height: 56px; }
.site-nav .site-brand .brand-text h1 { font-size: 19px; }
.site-nav .site-brand .brand-text p { font-size: 11px; margin-top: 2px; }
.site-nav .nav-actions .btn-site { padding: 9px 14px; font-size: 13px; white-space: nowrap; }
@media (min-width: 992px) and (max-width: 1199px) {
    .site-nav ul.menu li a { padding: 22px 8px; font-size: 13px; }
    .site-nav .site-brand .brand-text p { display: none; }
    .site-nav .nav-actions .btn-site i { display: none; }
}
@media (max-width: 991px) {
    .site-nav .nav-flex { flex-wrap: wrap; }
    .site-nav ul.menu { flex-wrap: wrap; white-space: normal; order: 3; width: 100%; justify-content: center; }
    .site-nav ul.menu li a { padding: 12px 10px; }
}

/* ---- Hero image: show clearly (light overlay only behind text) ---- */
.hero-wrap::before, .hero-wrap::after { display: none; }
.hero-slider .item { background-position: center center; }
.hero-slider .item::before { background: linear-gradient(90deg, rgba(7, 19, 36, .78) 0%, rgba(7, 19, 36, .55) 40%, rgba(7, 19, 36, .10) 75%, rgba(0, 0, 0, 0) 100%); }
.hero-slider .caption h1 { text-shadow: 0 2px 12px rgba(0, 0, 0, .35); }
.hero-slider .caption p { text-shadow: 0 1px 6px rgba(0, 0, 0, .35); }
.hero-slider .caption .kicker { box-shadow: 0 6px 20px rgba(0, 0, 0, .25); }
.hero-static { background: linear-gradient(115deg, #0E82FD 0%, #5CB0FF 100%); }
.hero-static::before { display: none; }
