/* ==========================================================================
   Dr. D.K. Gulati's Path Lab  —  Frontend Styles
   ========================================================================== */

/* ---------- Helvetica Font ---------- */
@font-face {
	font-family: 'Helvetica';
	src: url('../fonts/Helvetica-Light.ttf') format('truetype');
	font-weight: 300;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Helvetica';
	src: url('../fonts/Helvetica.ttf') format('truetype');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Helvetica';
	src: url('../fonts/Helvetica-Oblique.ttf') format('truetype');
	font-weight: 400;
	font-style: italic;
	font-display: swap;
}
@font-face {
	font-family: 'Helvetica';
	src: url('../fonts/Helvetica-Bold.ttf') format('truetype');
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Helvetica';
	src: url('../fonts/Helvetica-BoldOblique.ttf') format('truetype');
	font-weight: 700;
	font-style: italic;
	font-display: swap;
}

/* ---------- Design Tokens ---------- */
:root {
	--primary: #2a2778;      /* brand deep indigo-blue */
	--primary-dark: #1d1a5c;
	--secondary: #eb0707;    /* brand red accent */
	--dark: #16283a;
	--body: #4a5568;
	--muted: #7b8794;
	--light: #f4f8fb;
	--white: #ffffff;
	--border: #e6edf2;
	--shadow: 0 10px 30px rgba(16, 40, 58, .08);
	--shadow-lg: 0 18px 45px rgba(16, 40, 58, .14);
	--radius: 14px;
	--transition: .3s ease;
}

/* ---------- Base ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { overflow-x: hidden; }

body {
	font-family: 'Helvetica', 'Segoe UI', Arial, sans-serif;
	color: var(--body);
	font-size: 16px;
	line-height: 1.7;
	background: var(--white);
	overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 { color: var(--dark); font-weight: 700; line-height: 1.25; }
p { margin-bottom: 1rem; }
a { text-decoration: none; color: var(--primary); transition: var(--transition); }
a:hover { color: var(--primary-dark); }
img { max-width: 100%; height: auto; }
ul { list-style: none; }
section { position: relative; }

/* ---------- Buttons ---------- */
.btn.cus-btn,
.btn.cus-btn-light,
.btn.cus-btn-outline {
	display: inline-block;
	font-weight: 700;
	font-size: 15px;
	padding: 11px 26px;
	border-radius: 50px;
	transition: var(--transition);
	border: 2px solid transparent;
}
.btn.cus-btn-light,
.btn.cus-btn {
	background: var(--primary);
	color: var(--white);
	box-shadow: 0 8px 18px rgba(42, 39, 120, .25);
}
.btn.cus-btn-light:hover,
.btn.cus-btn:hover {
	background: var(--primary-dark);
	color: var(--white);
	transform: translateY(-2px);
}
.btn.cus-btn-outline {
	background: transparent;
	color: var(--white);
	border-color: rgba(255, 255, 255, .8);
}
.btn.cus-btn-outline:hover {
	background: var(--white);
	color: var(--primary);
}

/* ---------- Section Headings ---------- */
.section_heading,
.section_heading_light {
	text-align: center;
	margin-bottom: 45px;
}
.sub_heading {
	display: inline-block;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-size: 13px;
	font-weight: 700;
	color: var(--secondary);
	margin-bottom: 8px;
}
.section_heading h2,
.section_heading_light h2 {
	font-size: 36px;
	position: relative;
	display: inline-block;
	padding-bottom: 16px;
}
.section_heading h2::after,
.section_heading_light h2::after {
	content: '';
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
	width: 70px;
	height: 3px;
	border-radius: 3px;
	background: var(--secondary);
}
.section_heading .sub_heading,
.section_heading_light .sub_heading { display: block; }
.section_heading_light .sub_heading { color: rgba(255, 255, 255, .85); }
.section_heading_light h2 { color: var(--white); }

/* ==========================================================================
   Social Sidebar
   ========================================================================== */
.social {
	position: fixed;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	z-index: 999;
	border-radius: 0 8px 8px 0;
	overflow: hidden;
	box-shadow: 0 6px 18px rgba(16, 40, 58, .18);
}
.social ul { margin: 0; padding: 0; }
.social ul li a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	color: var(--white);
	font-size: 17px;
}
.social ul li.faceb a { background: #3b5998; }
.social ul li.yt a { background: #ff0000; }
.social ul li.inst a { background: #e1306c; }
.social ul li.ph a { background: var(--primary); }
.social ul li a:hover { padding-left: 8px; opacity: .92; }

/* Floating WhatsApp button (bottom-right) */
.whatsapp_float {
	position: fixed;
	right: 24px;
	bottom: 24px;
	width: 56px;
	height: 56px;
	line-height: 56px;
	text-align: center;
	background: #25d366;
	color: var(--white);
	border-radius: 50%;
	font-size: 30px;
	z-index: 999;
	box-shadow: 0 8px 22px rgba(37, 211, 102, .45);
	animation: wa-pulse 2s infinite;
}
.whatsapp_float:hover { background: #1ebe57; color: var(--white); transform: scale(1.06); }
@keyframes wa-pulse {
	0%   { box-shadow: 0 0 0 0 rgba(37, 211, 102, .5); }
	70%  { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
	100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ==========================================================================
   Top Header
   ========================================================================== */
.top_header {
	background: var(--primary-dark);
	color: #d7eaf3;
	padding: 9px 0;
	font-size: 14px;
}
.top_header .top_box h5 { color: #d7eaf3; font-size: 14px; margin: 0; font-weight: 400; }
.top_header .top_box i { color: var(--secondary); }
.top_call ul { display: flex; align-items: center; justify-content: flex-end; gap: 22px; margin: 0; }
.top_call ul li a { color: #d7eaf3; font-size: 14px; }
.top_call ul li a:hover { color: var(--white); }
.top_call ul li a.cus-btn { padding: 7px 20px; font-size: 13px; background: var(--secondary); box-shadow: none; }
.top_call ul li a.cus-btn:hover { background: var(--white); color: var(--primary); }

/* ==========================================================================
   Navbar
   ========================================================================== */
.header {
	background: var(--white);
	box-shadow: 0 4px 20px rgba(16, 40, 58, .06);
}
.header .navbar { padding: 8px 30px; }
.navbar-brand img { max-height: 62px; }
.logo-mobile { display: none; }
.navbar-nav .nav-link {
	color: var(--dark);
	font-weight: 700;
	font-size: 15px;
	padding: 10px 15px !important;
	position: relative;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active { color: var(--primary); }
.navbar-nav .nav-link:not(.dropdown-toggle)::after {
	content: '';
	position: absolute;
	left: 15px;
	bottom: 4px;
	width: 0;
	height: 2px;
	background: var(--secondary);
	transition: var(--transition);
}
.navbar-nav .nav-link:not(.dropdown-toggle):hover::after,
.navbar-nav .nav-link:not(.dropdown-toggle).active::after { width: calc(100% - 30px); }
.dropdown-menu {
	border: none;
	box-shadow: var(--shadow);
	border-radius: 10px;
	padding: 10px 0;
	margin-top: 8px;
}
.dropdown-item { font-weight: 500; padding: 8px 20px; font-size: 14px; }
.dropdown-item:hover { background: var(--light); color: var(--primary); }

/* ==========================================================================
   Hero Banner
   ========================================================================== */
.banner .carousel-item img {
	display: block;
	width: 100%;
	height: 500px;
	object-fit: cover;
	object-position: center;
}
.hero_content {
	position: relative;
	z-index: 2;
	max-width: 620px;
	color: var(--white);
}
.hero_badge {
	display: inline-block;
	background: rgba(255, 255, 255, .15);
	border: 1px solid rgba(255, 255, 255, .35);
	padding: 6px 16px;
	border-radius: 50px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .5px;
	margin-bottom: 18px;
}
.hero_content h1 { color: var(--white); font-size: 52px; margin-bottom: 18px; }
.hero_content h1 span { color: var(--secondary); }
.hero_content p { font-size: 18px; color: rgba(255, 255, 255, .9); margin-bottom: 28px; }
.hero_actions { display: flex; gap: 15px; flex-wrap: wrap; }
.carousel-indicators [data-bs-target] { width: 12px; height: 12px; border-radius: 50%; }

/* ==========================================================================
   Highlights
   ========================================================================== */
.highlights { margin-top: -60px; z-index: 5; }
.highlight_box {
	background: var(--white);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	padding: 28px 20px;
	text-align: center;
	transition: var(--transition);
	height: 100%;
}
.highlight_box:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.highlight_box i {
	font-size: 34px;
	color: var(--primary);
	background: var(--light);
	width: 72px;
	height: 72px;
	line-height: 72px;
	border-radius: 50%;
	display: inline-block;
	margin-bottom: 14px;
}
.highlight_box h5 { font-size: 18px; margin-bottom: 4px; }
.highlight_box p { color: var(--muted); font-size: 14px; margin: 0; }

/* ==========================================================================
   Welcome / About
   ========================================================================== */
.welcome { padding: 90px 0; }
.welcome_heading { margin-bottom: 18px; }
.welcome_heading h2 { font-size: 34px; }
.accreditation { display: flex; flex-wrap: wrap; gap: 16px; margin: 28px 0; }
.accreditation_badge {
	display: flex;
	align-items: center;
	gap: 14px;
	flex: 1 1 220px;
	padding: 14px 18px;
	background: var(--white);
	border: 1px solid rgba(42, 39, 120, .12);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	transition: var(--transition);
}
.accreditation_badge:hover {
	transform: translateY(-4px);
	border-color: var(--primary);
	box-shadow: var(--shadow-lg);
}
.accreditation_badge__logo {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 66px;
	height: 66px;
}
.accreditation_badge__logo img { max-width: 100%; max-height: 66px; width: auto; height: auto; }
.accreditation_badge__text { display: flex; flex-direction: column; line-height: 1.3; }
.accreditation_badge__text strong { color: var(--dark); font-size: 15px; font-weight: 700; }
.accreditation_badge__text span { color: var(--secondary); font-size: 13px; font-weight: 600; letter-spacing: .3px; }
.welcome_video iframe { border-radius: var(--radius); box-shadow: var(--shadow); }

/* ==========================================================================
   Services
   ========================================================================== */
.our_services { padding: 90px 0; background: var(--light); }
.tm-service {
	display: flex;
	flex-direction: column;
	align-items: center;
	background: var(--white);
	border-radius: var(--radius);
	padding: 40px 28px;
	box-shadow: var(--shadow);
	transition: var(--transition);
	height: 100%;
	border-bottom: 3px solid transparent;
}
.tm-service:hover { transform: translateY(-8px); border-bottom-color: var(--secondary); box-shadow: var(--shadow-lg); }
.tm-service-icon {
	width: 86px;
	height: 86px;
	line-height: 86px;
	border-radius: 50%;
	display: inline-block;
	background: linear-gradient(135deg, var(--primary), var(--secondary));
	color: var(--white);
	font-size: 34px;
	margin-bottom: 22px;
	box-shadow: 0 10px 22px rgba(42, 39, 120, .22);
	transition: var(--transition);
}
.tm-service:hover .tm-service-icon { transform: translateY(-4px) scale(1.05); }
.tm-service h5 { font-size: 20px; margin-bottom: 10px; }
.tm-service h5 a { color: var(--dark); }
.tm-service:hover h5 a { color: var(--primary); }
.tm-service p { color: var(--muted); font-size: 15px; margin-bottom: 22px; flex-grow: 1; }
.tm-service .cus-btn-light { margin-top: auto; }

/* ==========================================================================
   Health Packages
   ========================================================================== */
.health_packages {
	padding: 90px 0;
	background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}
.package_box {
	position: relative;
	display: flex;
	flex-direction: column;
	background: var(--white);
	border-radius: var(--radius);
	padding: 30px 26px;
	box-shadow: var(--shadow);
	transition: var(--transition);
	height: 100%;
	text-align: center;
	overflow: hidden;
	border-top: 4px solid transparent;
}
.package_box:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-lg);
	border-top-color: var(--secondary);
}
.package_off {
	position: absolute;
	top: 16px;
	right: -34px;
	transform: rotate(45deg);
	background: var(--secondary);
	color: var(--white);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .5px;
	padding: 5px 40px;
	box-shadow: 0 4px 10px rgba(235, 7, 7, .3);
}
.package_heading {
	font-size: 18px;
	min-height: 52px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--dark);
	margin: 0;
}
.package_price {
	display: flex;
	align-items: baseline;
	justify-content: center;
	gap: 10px;
	margin: 10px 0 6px;
}
.package_price__now { font-size: 30px; font-weight: 700; color: var(--primary); }
.package_price__old { color: var(--muted); font-size: 16px; font-weight: 400; }
.package_save {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	align-self: center;
	background: rgba(16, 170, 90, .1);
	color: #0f9d58;
	font-size: 13px;
	font-weight: 600;
	padding: 5px 14px;
	border-radius: 20px;
	margin: 0 0 18px;
}
.package_save i { color: #0f9d58; }
.package_list {
	padding-top: 18px;
	border-top: 1px dashed var(--border);
}
.package_list ul { text-align: left; margin-bottom: 22px; }
.package_list ul li {
	display: flex;
	align-items: center;
	padding: 7px 0;
	font-size: 14px;
	color: var(--body);
	border-bottom: 1px solid #f1f5f8;
}
.package_list ul li i { color: #0f9d58; margin-right: 10px; font-size: 15px; }
.package_box .cus-btn-light { margin-top: auto; }

/* Equal-height carousel cards */
.owl-carousel .owl-stage { display: flex; }
.owl-carousel .owl-item { display: flex; }
.owl-carousel .owl-item .item { display: flex; width: 100%; }
.owl-carousel .owl-item .item > * { width: 100%; }

/* ==========================================================================
   New Technology
   ========================================================================== */
.new_product { padding: 90px 0; }
.new_product .clr { color: var(--primary); font-weight: 700; }
.new_product h3 { color: var(--secondary); font-size: 22px; margin-bottom: 16px; }
.new_product h4 { font-size: 19px; margin: 18px 0 10px; }
.feature_list { margin: 0 0 22px; padding-left: 0; list-style: none; }
.feature_list li { position: relative; padding-left: 28px; margin-bottom: 8px; color: var(--body); }
.feature_list li::before {
	content: '\f058';
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	position: absolute;
	left: 0;
	top: 2px;
	color: var(--secondary);
}
.new_product img { box-shadow: var(--shadow); }

/* ==========================================================================
   Why Choose Us
   ========================================================================== */
.why_choose { padding: 90px 0; background: var(--light); }
.why_us_box ul li {
	position: relative;
	padding: 12px 0 12px 40px;
	border-bottom: 1px solid var(--border);
	color: var(--body);
}
.why_us_box ul li::before {
	content: '\f00c';
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	position: absolute;
	left: 0;
	top: 12px;
	width: 26px;
	height: 26px;
	line-height: 26px;
	text-align: center;
	background: var(--primary);
	color: var(--white);
	border-radius: 50%;
	font-size: 12px;
}
.image_box img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; object-fit: cover; }

/* ==========================================================================
   Gallery
   ========================================================================== */
.home_gallery { padding: 90px 0; }
.gallery_box {
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow);
	position: relative;
}
.gallery_box { display: block; cursor: pointer; }
.gallery_box img { width: 100%; height: 210px; object-fit: cover; transition: var(--transition); }
.gallery_box:hover img { transform: scale(1.08); }
.gallery_box__overlay {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(42, 39, 120, .55);
	color: var(--white);
	font-size: 30px;
	opacity: 0;
	transition: var(--transition);
}
.gallery_box:hover .gallery_box__overlay { opacity: 1; }

/* ---- Lightbox preview ---- */
.lightbox {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 40px 20px;
	background: rgba(16, 40, 58, .92);
	opacity: 0;
	visibility: hidden;
	transition: opacity .3s ease;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img {
	max-width: 90vw;
	max-height: 85vh;
	border-radius: 8px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, .5);
	transform: scale(.94);
	transition: transform .3s ease;
}
.lightbox.open img { transform: scale(1); }
.lightbox__btn {
	position: absolute;
	background: rgba(255, 255, 255, .12);
	color: var(--white);
	border: 0;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	font-size: 22px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: var(--transition);
}
.lightbox__btn:hover { background: var(--secondary); }
.lightbox__close { top: 22px; right: 22px; }
.lightbox__prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 24px; top: 50%; transform: translateY(-50%); }
.lightbox__counter {
	position: absolute;
	bottom: 24px;
	left: 50%;
	transform: translateX(-50%);
	color: rgba(255, 255, 255, .8);
	font-size: 14px;
	letter-spacing: 1px;
}
@media (max-width: 767px) {
	.lightbox__prev { left: 10px; }
	.lightbox__next { right: 10px; }
	.lightbox__btn { width: 44px; height: 44px; font-size: 18px; }
}

/* ==========================================================================
   Sample Collection
   ========================================================================== */
.sample_collection { padding: 90px 0; background: linear-gradient(135deg, var(--primary-dark), var(--primary)); }
.sample_collection .section_heading_light h2::after { background: var(--white); }
.collection_address {
	background: rgba(255, 255, 255, .08);
	border: 1px solid rgba(255, 255, 255, .18);
	border-radius: var(--radius);
	padding: 22px 26px;
	margin-bottom: 20px;
	color: var(--white);
}
.collection_address h4 { color: var(--white); font-size: 18px; margin-bottom: 4px; }
.collection_address p { color: rgba(255, 255, 255, .88); margin-bottom: 6px; font-size: 14px; }
.collection_address p i { color: var(--secondary); margin-right: 8px; }

/* ==========================================================================
   Doctors
   ========================================================================== */
.our_doctors { padding: 90px 0; }
.doctor_wrap {
	display: flex;
	gap: 22px;
	background: var(--white);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	padding: 24px;
	height: 100%;
	transition: var(--transition);
}
.doctor_wrap:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.doctor_img { flex: 0 0 130px; }
.doctor_img img { width: 130px; height: 150px; object-fit: cover; border-radius: 10px; }
.doctor_info h2 { font-size: 22px; margin-bottom: 4px; }
.doctor_info h5 { font-size: 14px; color: var(--primary); margin-bottom: 2px; font-weight: 700; }
.doctor_info p { font-size: 14px; color: var(--muted); margin-top: 8px; }

/* ==========================================================================
   Empanelment
   ========================================================================== */
.empanelment { padding: 90px 0; background: var(--light); }
.empanelment_box {
	background: var(--white);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	padding: 22px;
	text-align: center;
}
.empanelment_box img { height: 80px; object-fit: contain; margin-bottom: 12px; }
.empanelment_box h5 { font-size: 15px; margin: 0; }

/* ==========================================================================
   Blog
   ========================================================================== */
.blog { padding: 90px 0; background: linear-gradient(135deg, var(--primary-dark), var(--primary)); }
.blog_wrap {
	background: var(--white);
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow);
	height: 100%;
	transition: var(--transition);
	padding-bottom: 22px;
	text-align: center;
}
.blog_wrap:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.blog_image img { width: 100%; height: 220px; object-fit: cover; }
.blog_info { padding: 20px 22px 8px; text-align: left; }
.blog_author { display: flex; justify-content: space-between; color: var(--muted); font-size: 13px; }
.blog_author p { margin: 0; }
.blog_info h3 { font-size: 19px; margin: 10px 0; }
.blog_info h3 a { color: var(--dark); }
.blog_info h3 a:hover { color: var(--primary); }
.blog_info p { font-size: 14px; color: var(--muted); }

/* ==========================================================================
   Have a Question
   ========================================================================== */
.have_question { padding: 46px 0; background: var(--dark); }
.have_question .phone_icon {
	float: left;
	width: 66px;
	height: 66px;
	line-height: 66px;
	text-align: center;
	background: var(--secondary);
	color: var(--white);
	border-radius: 50%;
	font-size: 26px;
	margin-right: 22px;
}
.have_question .media_body { overflow: hidden; }
.have_question h2 { color: var(--white); font-size: 24px; margin-bottom: 4px; }
.have_question p { color: rgba(255, 255, 255, .75); margin: 0; font-size: 15px; }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer { background: #0e1f2e; color: #a9bccb; padding: 70px 0 40px; }
.footer_title h3 { color: var(--white); font-size: 19px; margin-bottom: 20px; position: relative; padding-bottom: 12px; }
.footer_title h3::after { content: ''; position: absolute; left: 0; bottom: 0; width: 40px; height: 2px; background: var(--secondary); }
.footer p { color: #a9bccb; font-size: 14px; }
.footer_links { list-style: none; padding-left: 0; margin: 0; }
.footer_links li { margin-bottom: 10px; }
.footer_links li a {
	color: #a9bccb;
	font-size: 14px;
	display: inline-flex;
	align-items: center;
	transition: var(--transition);
}
.footer_links li a::before {
	content: '\f105';
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	color: var(--secondary);
	font-size: 13px;
	margin-right: 9px;
	transition: var(--transition);
}
.footer_links li a:hover { color: var(--secondary); padding-left: 5px; }
.footer_links li a:hover::before { margin-right: 12px; }
.footer .address { list-style: none; padding-left: 0; margin: 0; }
.footer .address li { display: flex; gap: 12px; margin-bottom: 14px; font-size: 14px; }
.footer .address li i { color: var(--secondary); margin-top: 4px; flex-shrink: 0; }
.footer .address li .desc { line-height: 1.6; }
.footer .address li .desc a { color: #a9bccb; }
.footer .address li .desc a:hover { color: var(--secondary); }
.footer .address .phone_list { display: flex; flex-wrap: wrap; gap: 4px 14px; }
.footer .address .phone_list a { white-space: nowrap; }
.footer iframe { border-radius: 10px; }

/* ---------- Copyright ---------- */
.copyright { background: #0a1722; padding: 18px 0; text-align: center; }
.copyright h6 { color: #7b93a5; font-size: 13px; margin: 0; font-weight: 400; }

/* ---------- Back to top ---------- */
#button {
	position: fixed;
	right: 24px;
	bottom: 92px;
	width: 46px;
	height: 46px;
	line-height: 46px;
	text-align: center;
	background: var(--primary);
	color: var(--white);
	border-radius: 50%;
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	transition: var(--transition);
	z-index: 998;
	box-shadow: var(--shadow);
}
#button.show { opacity: 1; visibility: visible; }
#button:hover { background: var(--primary-dark); }

/* ---------- Owl dots ---------- */
.owl-theme .owl-dots .owl-dot span { width: 10px; height: 10px; background: #cdd9e1; }
.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span { background: var(--secondary); }
.health_packages .owl-theme .owl-dots .owl-dot span,
.blog .owl-theme .owl-dots .owl-dot span { background: rgba(255, 255, 255, .5); }
.health_packages .owl-theme .owl-dots .owl-dot.active span,
.blog .owl-theme .owl-dots .owl-dot.active span { background: var(--white); }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 991px) {
	.hero_content h1 { font-size: 38px; }
	/* Show the full banner graphic (no crop) once it collapses to one column */
	.banner .carousel-item img { height: auto; object-fit: contain; }
	.header .navbar { padding: 8px 15px; flex-wrap: nowrap; }
	/* Keep logo + hamburger on one line as soon as the navbar collapses */
	.navbar-brand { flex: 0 1 auto; min-width: 0; margin-right: 8px; }
	.navbar-brand img { max-height: 46px; max-width: 100%; height: auto; }
	.navbar-toggler { flex: 0 0 auto; }
	.logo-desktop { display: none; }
	.logo-mobile { display: block; }
	.navbar-collapse { background: var(--white); padding: 15px; border-radius: 10px; margin-top: 10px; box-shadow: var(--shadow); }
	.navbar-nav .nav-link::after { display: none; }
	.section_heading h2, .section_heading_light h2 { font-size: 28px; }
	.highlights { margin-top: 30px; }
	.welcome, .our_services, .health_packages, .new_product, .why_choose,
	.home_gallery, .sample_collection, .our_doctors, .empanelment, .blog { padding: 60px 0; }
	.welcome_video iframe { margin-top: 26px; }
	.image_box { margin-top: 26px; }
}

@media (max-width: 767px) {
	.top_header { padding: 8px 0; }
	.top_call ul { flex-wrap: nowrap; align-items: center; justify-content: center; gap: 10px; margin: 0; }
	.top_call ul li { line-height: 1; white-space: nowrap; }
	.top_call ul li a { font-size: 12px; }
	.top_call ul li a.cus-btn { padding: 6px 14px; font-size: 12px; }
	/* Order: phone -> email -> Book Now */
	.top_call ul li:nth-child(3) { order: 1; } /* phone */
	.top_call ul li:nth-child(2) { order: 2; } /* email */
	.top_call ul li:nth-child(1) { order: 3; } /* Book Now */
	.hero_content h1 { font-size: 30px; }
	.hero_content p { font-size: 16px; }
	.doctor_wrap { flex-direction: column; text-align: center; }
	.doctor_img { flex: none; }
	.doctor_img img { width: 100%; height: 260px; }
	.have_question .phone_icon { float: none; margin: 0 auto 16px; }
	.have_question { text-align: center; }
	.section_heading h2, .section_heading_light h2 { font-size: 24px; }
}

/* ==========================================================================
   Inner Pages — Breadcrumb Banner
   ========================================================================== */
.page_banner {
	position: relative;
	background-size: cover;
	background-position: center;
	padding: 55px 0;
	text-align: center;
}
.page_banner .overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(29, 26, 92, .78), rgba(42, 39, 120, .62));
}
.page_banner_inner { position: relative; z-index: 2; }
.page_banner_inner h1 { color: var(--white); font-size: 40px; margin-bottom: 12px; }
.page_banner .breadcrumb {
	display: inline-flex;
	justify-content: center;
	background: transparent;
	margin: 0;
	padding: 0;
}
.page_banner .breadcrumb-item,
.page_banner .breadcrumb-item a { color: rgba(255, 255, 255, .85); font-size: 15px; font-weight: 500; }
.page_banner .breadcrumb-item a:hover { color: var(--white); }
.page_banner .breadcrumb-item.active { color: var(--secondary); }
.page_banner .breadcrumb-item + .breadcrumb-item::before { color: rgba(255, 255, 255, .6); content: "\203A"; }

/* ==========================================================================
   Inner Pages — Content
   ========================================================================== */
.content_box { padding: 80px 0; }
.content_box .section_heading { margin-bottom: 30px; text-align: left; }
.content_box .section_heading h2 { font-size: 30px; }
.content_box .section_heading h2::after { left: 0; transform: none; }
.content_box h2 { font-size: 26px; margin: 22px 0 12px; }
.content_box h3 { font-size: 21px; margin: 18px 0 10px; color: var(--primary); }
.content_box p { color: var(--body); }
.content_box .gulati_image img,
.content_box .side_image img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; }

/* Compact "Book Now" button inside the tests tables */
.content_box table .btn.cus-btn-light {
	font-size: 12px;
	font-weight: 600;
	padding: 6px 14px;
	border-radius: 30px;
	white-space: nowrap;
	box-shadow: 0 4px 10px rgba(42, 39, 120, .2);
}
.content_box table .btn.cus-btn-light:hover { transform: translateY(-1px); }

/* Cards used across inner pages */
.info_card {
	background: var(--white);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	padding: 30px;
	height: 100%;
	transition: var(--transition);
}
.info_card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }

/* ==========================================================================
   Blog Sidebar (modern)
   ========================================================================== */
.sidebar_widget {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	padding: 26px 24px;
	margin-bottom: 26px;
}
.sidebar_widget__title {
	position: relative;
	font-size: 19px;
	font-weight: 700;
	color: var(--dark);
	margin: 0 0 20px;
	padding-bottom: 14px;
}
.sidebar_widget__title::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 46px;
	height: 3px;
	border-radius: 3px;
	background: var(--secondary);
}
/* Search */
.sidebar_search { display: flex; }
.sidebar_search input {
	flex: 1;
	border: 1px solid var(--border);
	border-right: 0;
	border-radius: 8px 0 0 8px;
	padding: 11px 16px;
	font-size: 14px;
	outline: none;
	transition: var(--transition);
}
.sidebar_search input:focus { border-color: var(--primary); }
.sidebar_search button {
	border: 0;
	background: var(--primary);
	color: var(--white);
	padding: 0 18px;
	border-radius: 0 8px 8px 0;
	cursor: pointer;
	transition: var(--transition);
}
.sidebar_search button:hover { background: var(--secondary); }
/* Recent posts */
.recent_post {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 12px 0;
	border-bottom: 1px solid #f1f5f8;
}
.recent_post:last-child { border-bottom: 0; padding-bottom: 0; }
.recent_post:first-child { padding-top: 0; }
.recent_post__thumb {
	flex: 0 0 62px;
	width: 62px;
	height: 62px;
	border-radius: 10px;
	object-fit: cover;
}
.recent_post__body { min-width: 0; }
.recent_post__body a {
	display: block;
	font-size: 15px;
	font-weight: 600;
	color: var(--dark);
	line-height: 1.35;
	transition: var(--transition);
}
.recent_post__body a:hover { color: var(--primary); }
.recent_post__date { font-size: 12px; color: var(--muted); margin-top: 5px; }
.recent_post__date i { color: var(--secondary); margin-right: 5px; }
/* Categories */
.category_list { margin: 0; padding: 0; list-style: none; }
.category_list li { border-bottom: 1px solid #f1f5f8; }
.category_list li:last-child { border-bottom: 0; }
.category_list a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 11px 4px;
	color: var(--body);
	font-weight: 500;
	transition: var(--transition);
}
.category_list a::before {
	content: '\f105';
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	margin-right: 10px;
	color: var(--secondary);
	transition: var(--transition);
}
.category_list a span:first-of-type { flex: 1; }
.category_list a:hover { color: var(--primary); padding-left: 10px; }
.category_list .cat_count {
	background: var(--light);
	color: var(--muted);
	font-size: 12px;
	font-weight: 600;
	min-width: 26px;
	text-align: center;
	padding: 2px 8px;
	border-radius: 20px;
}
.category_list a:hover .cat_count { background: var(--primary); color: var(--white); }
/* Sidebar CTA */
.sidebar_cta {
	position: relative;
	overflow: hidden;
	background: linear-gradient(135deg, var(--primary), var(--primary-dark));
	border-radius: var(--radius);
	padding: 30px 26px;
	text-align: center;
	color: var(--white);
}
.sidebar_cta i.cta_icon { font-size: 34px; color: var(--secondary); margin-bottom: 12px; }
.sidebar_cta h4 { color: var(--white); font-size: 20px; margin: 0 0 8px; }
.sidebar_cta p { color: rgba(255, 255, 255, .85); font-size: 14px; margin: 0 0 18px; }
.sidebar_cta .cus-btn { background: var(--secondary); border: 0; }
.sidebar_cta .cus-btn:hover { background: var(--white); color: var(--primary); }

/* Lead paragraph */
.lead_text { font-size: 18px; color: var(--dark); font-weight: 500; }

/* ==========================================================================
   Inner Pages — Tables (tests / preparation)
   ========================================================================== */
.cus_table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.cus_table thead th {
	background: var(--primary);
	color: var(--white);
	font-weight: 700;
	font-size: 15px;
	padding: 14px 18px;
	text-align: left;
}
.cus_table tbody td { padding: 13px 18px; border-bottom: 1px solid var(--border); font-size: 15px; color: var(--body); vertical-align: top; }
.cus_table tbody tr:nth-child(even) { background: var(--light); }
.cus_table tbody tr:hover { background: #eaf3f8; }
.cus_table tbody td:first-child { font-weight: 600; color: var(--dark); }

/* ==========================================================================
   Health Package cards (list page)
   ========================================================================== */
.package_grid .package_box { margin-bottom: 30px; }

/* ==========================================================================
   FAQ Accordion
   ========================================================================== */
.faq_accordion .accordion-item { border: 1px solid var(--border); border-radius: 10px !important; margin-bottom: 14px; overflow: hidden; box-shadow: var(--shadow); }
.faq_accordion .accordion-button { font-weight: 700; color: var(--dark); font-size: 16px; padding: 18px 22px; }
.faq_accordion .accordion-button:not(.collapsed) { background: var(--primary); color: var(--white); box-shadow: none; }
.faq_accordion .accordion-button:focus { box-shadow: none; }
.faq_accordion .accordion-button::after { filter: none; }
.faq_accordion .accordion-button:not(.collapsed)::after { filter: brightness(0) invert(1); }
.faq_accordion .accordion-body { color: var(--body); font-size: 15px; }

/* ==========================================================================
   Contact Page
   ========================================================================== */
.contact_info_card {
	background: var(--white);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	padding: 28px 24px;
	text-align: center;
	height: 100%;
	transition: var(--transition);
}
.contact_info_card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.contact_info_card i {
	font-size: 26px;
	color: var(--white);
	background: linear-gradient(135deg, var(--primary), var(--secondary));
	width: 64px; height: 64px; line-height: 64px; border-radius: 50%;
	display: inline-block; margin-bottom: 16px;
}
.contact_info_card h5 { font-size: 18px; margin-bottom: 8px; }
.contact_info_card p { font-size: 14px; color: var(--muted); margin: 0; }
.contact_form {
	background: var(--white);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	padding: 36px;
}
.contact_form .form-control {
	border: 1px solid var(--border);
	border-radius: 10px;
	padding: 12px 16px;
	margin-bottom: 18px;
	font-size: 15px;
}
.contact_form .form-control:focus { border-color: var(--primary); box-shadow: 0 0 0 .2rem rgba(42, 39, 120, .12); }

/* ==========================================================================
   Blog list / detail
   ========================================================================== */
.blog_list_card {
	background: var(--white);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	overflow: hidden;
	height: 100%;
	transition: var(--transition);
	margin-bottom: 30px;
}
.blog_list_card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.blog_list_card .blog_image img { height: 230px; width: 100%; object-fit: cover; }
.blog_list_card .blog_info { padding: 22px; }
.blog_detail_img img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); margin-bottom: 24px; }
.blog_meta { color: var(--muted); font-size: 14px; margin-bottom: 14px; }
.blog_meta span { margin-right: 18px; }
.blog_meta i { color: var(--secondary); margin-right: 6px; }

/* Blog article body (HTML authored in the admin editor) */
.blog_content { color: var(--body); font-size: 16px; line-height: 1.8; }
.blog_content p { margin-bottom: 16px; }
.blog_content h2 { font-size: 25px; margin: 28px 0 12px; }
.blog_content h3 { font-size: 21px; margin: 24px 0 10px; color: var(--primary); }
.blog_content h4 { font-size: 18px; margin: 20px 0 10px; }
.blog_content ul,
.blog_content ol { margin: 0 0 18px; padding-left: 20px; }
.blog_content ul { list-style: disc; }
.blog_content ol { list-style: decimal; }
.blog_content li { margin-bottom: 8px; padding-left: 4px; }
.blog_content li::marker { color: var(--secondary); }
.blog_content a { color: var(--primary); text-decoration: underline; }
.blog_content a:hover { color: var(--primary-dark); }
.blog_content img { border-radius: var(--radius); box-shadow: var(--shadow); margin: 8px 0 18px; }
.blog_content blockquote {
	border-left: 4px solid var(--primary);
	background: var(--light);
	padding: 14px 20px;
	margin: 0 0 18px;
	border-radius: 0 8px 8px 0;
	color: var(--dark);
}
.blog_content table { width: 100%; border-collapse: collapse; margin: 0 0 18px; }
.blog_content th,
.blog_content td { border: 1px solid var(--border); padding: 10px 14px; text-align: left; }

@media (max-width: 767px) {
	.page_banner { padding: 40px 0; }
	.page_banner_inner h1 { font-size: 28px; }
	.content_box { padding: 55px 0; }
	.contact_form { padding: 24px; }
}

/* ==========================================================================
   Health Package Detail
   ========================================================================== */
.pkg_detail .lead_text { margin-bottom: 4px; }

/* Quick highlight stats */
.pkg_highlights {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
	margin: 26px 0 36px;
}
.pkg_highlight {
	display: flex;
	align-items: center;
	gap: 12px;
	background: var(--light);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 14px 16px;
}
.pkg_highlight > i {
	font-size: 20px;
	color: var(--primary);
	background: var(--white);
	width: 46px;
	height: 46px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	box-shadow: var(--shadow);
	flex-shrink: 0;
}
.pkg_highlight div { display: flex; flex-direction: column; line-height: 1.25; }
.pkg_highlight span { font-size: 17px; font-weight: 700; color: var(--dark); }
.pkg_highlight small { font-size: 12.5px; color: var(--muted); }

/* Included-tests checklist grid */
.pkg_tests_title {
	font-size: 20px;
	margin: 0 0 18px;
	padding-bottom: 12px;
	border-bottom: 2px solid var(--border);
}
.pkg_tests_title i { color: var(--secondary); margin-right: 8px; }
.pkg_tests_grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px 20px;
}
.pkg_test_item {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 11px 16px;
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: 10px;
	font-size: 15px;
	font-weight: 500;
	color: var(--dark);
	transition: var(--transition);
}
.pkg_test_item:hover { border-color: var(--primary); box-shadow: var(--shadow); transform: translateY(-2px); }
.pkg_test_item i { color: #0f9d58; font-size: 15px; flex-shrink: 0; }

/* Sticky summary card */
.pkg_summary {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	padding: 26px 24px;
	position: sticky;
	top: 100px;
}
.pkg_summary_head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	margin-bottom: 4px;
}
.pkg_summary_head h3 { font-size: 20px; margin: 0; }
.pkg_summary_off {
	background: var(--secondary);
	color: var(--white);
	font-size: 12px;
	font-weight: 700;
	padding: 5px 12px;
	border-radius: 20px;
	flex-shrink: 0;
}
.pkg_summary .package_price { justify-content: flex-start; margin: 6px 0 6px; }
.pkg_summary .package_save { margin: 0 0 18px; }
.pkg_summary_meta {
	border-top: 1px dashed var(--border);
	border-bottom: 1px dashed var(--border);
	padding: 10px 0;
	margin-bottom: 20px;
}
.pkg_summary_meta li {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 14.5px;
	color: var(--body);
	padding: 7px 0;
}
.pkg_summary_meta li i { color: var(--primary); width: 18px; text-align: center; flex-shrink: 0; }
.pkg_summary_meta li span { flex: 1; }
.pkg_summary_meta li strong { color: var(--dark); }
.pkg_book_btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	margin-bottom: 12px;
}
.pkg_call_btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	background: transparent;
	color: var(--primary);
	border: 2px solid var(--primary);
	font-weight: 700;
	font-size: 15px;
	padding: 9px 26px;
	border-radius: 50px;
	transition: var(--transition);
}
.pkg_call_btn:hover { background: var(--primary); color: var(--white); }
.pkg_summary_note {
	font-size: 13px;
	color: var(--muted);
	text-align: center;
	margin: 16px 0 0;
	line-height: 1.55;
}
.pkg_summary_note i { color: var(--secondary); }

@media (max-width: 991px) {
	.pkg_summary { position: static; margin-top: 8px; }
}
@media (max-width: 767px) {
	.pkg_highlights { grid-template-columns: repeat(2, 1fr); }
	.pkg_tests_grid { grid-template-columns: 1fr; }
}
