/* @import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Reddit+Sans:ital,wght@0,200..900;1,200..900&display=swap');
* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	font-family: 'Poppins', sans-serif;
}

html {
	scroll-behavior: smooth;
}

:root {

	--thm-base: #4245BE;
	--thm-base-rgb: 239, 65, 75;
	--orange-color: #E88B13;
	--heading-color: #221E4C;
	--dark-heading: #2B264F;
	--primary-blue: #0c71b5;
	--dark-blue: #0042a3;
	--purple-gradient: #6b1fb5;
	--light-gray: #f8f9fa;
	--white-color: #ffffff;
	--green-color: #128c7e;
	--gradient-primary: linear-gradient(135deg, #0042a3, #6b1fb5);
	--gradient-secondary: linear-gradient(135deg, #25d366, #128c7e, #0d7377);
}

body {
	margin: 0;
	padding: 0;
	list-style: 1.8;
	font-size: 14px;
	color: var(--main-ancient-color);
	font-family: "Poppins", sans-serif;
	/* font-family: "Roboto", sans-serif; */
	font-optical-sizing: auto;
	font-variation-settings: "wdth" 100;
	overflow-x: hidden;
}

header,
footer,
section {
	width: 100%;
}

footer {
	float: left;
}

h1,
h2,
h3,
h4,
h5 {
	font-family: "Reddit Sans", sans-serif;
}

p,
a,
span,
ul li,
ol li {
	font-family: "Poppins", sans-serif;
	font-optical-sizing: auto;
	font-variation-settings: "wdth" 100;
}

a {
	text-decoration: none;
}

/* .container-fluid {
    width: 90%;
} */

section {
	padding: 60px 0;
	/* 
	width:100%;float:left; */
}

@media (max-width: 991px) {
	.container-fluid {
		width: 97%;
	}

	section {
		padding: 40px 0;
	}
}

.top-links i {
	color: #E88B13;
}

.top-links {
	color: #2B264F;
}

.logo-img {
	width: 30%;
	padding: 6px 0;
}

/* Navbar */
.navbar {
	background: #fff;
}

.navbar-nav .nav-link {
	font-weight: 500;
	color: #2B264F !important;
	margin-left: 20px;
}

.navbar-nav .nav-link.active {
	color: #E88B13 !important;
}

.navbar .dropdown:hover .dropdown-menu {
	display: block;
}

.navbar-expand-lg .navbar-nav .dropdown-menu.service-dropdown-menu {
	left: unset;
}

.navbar-brand.dr-enquiry-heading {
	font-family: "Montserrat", sans-serif;
	font-size: 26px;
	letter-spacing: 2px;
	font-weight: 800;
	display: flex;
	text-transform: uppercase;
	justify-content: center;
	align-items: center;
	text-align: center;
	line-height: 1.1;
	gap: 10px;
	color: transparent;
	background: linear-gradient(130deg,
			#E72069,
			#221E4C,
			#431784,
			#B153D2,
			#284EB3,
			#1CC6E5,
			#02707B,
			#6AD74E,
			#108E4B);
	background-size: cover;
	-webkit-background-clip: text;
	background-clip: text;
	/* animation: gradient-flow 20s linear infinite;  */
}

@keyframes gradient-flow {
	0% {
		background-position: 0% 50%;
	}

	50% {
		background-position: 100% 50%;
	}

	100% {
		background-position: 0% 50%;
	}
}

@media(max-width:767px) {
	.logo-img {
		width: 35%;
	}

	.navbar-brand.dr-enquiry-heading {
		font-size: 24px;
	}
}

@media (max-width: 600px) {
	.navbar-brand.dr-enquiry-heading {
		font-size: 20px;
	}
}


@media (max-width: 425px) {
	.navbar-brand.dr-enquiry-heading {
		font-size: 20px;
	}
}

@media (max-width: 325px) {
	.navbar-brand.dr-enquiry-heading {
		font-size: 18px;
	}
}


.navbar .dropdown-item {
	display: flex;
	align-items: center;
	font-weight: 600;
	color: #2B264F !important;
	text-decoration: none;
	transition: all 0.35s ease;
	border-radius: 8px;
	padding: 0.5rem 0.75rem;
}

.navbar .first-letter-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	object-fit: contain;
	border-radius: 50%;
	font-size: 15px;
	font-weight: 700;
	color: #111;
	margin-right: 0.6rem;
	transition: all 0.3s ease;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.navbar .list-group-item:hover {
	background: linear-gradient(135deg, #0042a3, #6b1fb5) !important;
	color: #fff !important;
	transform: translateX(5px);
	box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.navbar .list-group-item:hover .dropdown-item {
	color: #fff !important;
}

.navbar .list-group-item:hover .first-letter-icon {
	background: rgba(255, 255, 255, 0.2) !important;
	color: #fff;
	transform: scale(1.1);
	filter: brightness(0) invert(1);
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.navbar .list-group-item.active,
.navbar .dropdown-item.active {
	background: linear-gradient(135deg, #0042a3, #6b1fb5) !important;
	color: #fff !important;
	border-radius: 8px;
	box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

.navbar .list-group-item.active .first-letter-icon {
	background: rgba(255, 255, 255, 0.2) !important;
	color: #fff;
}

.navbar-expand-lg .navbar-nav .dropdown-menu {
	position: absolute;
	border-top: 0 !important;
	border: 2px solid #e2e2e2;
	left: 0;
	background: #f2f2f2;
	margin: ;
	z-index: 9999;
}

div#navbarNav .navbar-nav {
	padding: 0 0 0;
	margin: 10px 0 0 0;
}

.callexttop {
	background: #36B441;
	margin: 7px 0;
	float: right;
	padding: 3px 17px;
	border-radius: 14px;
	color: #fff;
}

.quote-btn {
	background: #4245be;
	color: #fff !important;
	padding: 10px 21px;
	border: none;
	text-decoration: none;
	border-radius: 10px;
}

.quote-btn i {
	margin-right: 8px;
}

@media (max-width: 991px) {
	.hero-section .category-chips {
		margin-top: 50px;
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
	}

	section#home {
		padding: 40px 0;
		height: 110vh;
	}

	a.navbar-brand {
		font-size: 14px;
	}

	.top-header {
		display: none;
	}

	.main-header-row {
		align-items: center;
	}

	div#navbarNav .navbar-nav {
		padding: 25px 15px;
		position: absolute;
		z-index: 999;
		background-color: #000000;
		width: 100%;
		left: 0;
		text-align: start !important;
		margin-top: 27px;
	}

	.navbar-nav .nav-link {
		font-weight: 500;
		color: #2B264F !important;
		margin-left: 20px;
		background-color: #fff;
		margin: 5px 0;
		padding-left: 15px;
	}
}

.nav-item {
	padding: 0.5rem 0xp;
}

.dropdown-hover:hover>.dropdown-menu {
	display: inline-block;
}

.dropdown-hover>.dropdown-toggle:active {
	/*Without this, clicking will make it sticky*/
	pointer-events: none;
}


/* .footer {
	background-color: #021637;
	padding: 60px 0 10px;
	color: #fff;
}

.footer-logo {
	height: 100px;
}

ul.footer-contact {
	list-style: none;
	padding: 0;
	line-height: 40px;
}

ul.footer-contact li a {
	color: #fff;
}

ul.footer-contact li a:hover {
	color: var(--orange-color);
}

ul.footer-contact li i {
	color: var(--orange-color);
	margin-right: 5px;
}

.footer-heading {
	color: #fff;
	margin-bottom: 20px;
}

.footer-social {
	display: flex;
	gap: 20px;
}

.footer-social a i {
	color: #fff;
	font-size: 22px;
	background-color: #ffffff26;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.footer-social a i:hover {
	color: var(--orange-color);
	background-color: #ffffff40;
} */


/* responsive */
#sequence a {
	width: 33.3333%;
	float: left;
	text-align: center;
	padding: 5px 0;
	font-size: 15px;
	color: #fff !important;
	font-weight: 600;
	text-decoration: none !important;

}

#sequence a:not(:last-child) {
	border-right: 1px solid #fffdfd;
}

#sequence {
	width: 100%;
	float: left;
	background: #2b264f;
	position: fixed;
	bottom: 0px;
	z-index: 99;
	padding: 0;
	color: #fff !important;
	margin: 0 !important;
}

/* Whats app icon */
.first-fold {
	margin-bottom: 16px;
	padding: 60px 68px 0 50px;
}

.wa-chat-btn {
	position: fixed;
	right: 10px;
	bottom: 45px;
	z-index: 99;
	width: 64px;
	height: 64px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
	cursor: pointer;
}

.wa-badge {
	position: absolute;
	top: -6px;
	right: -6px;
	min-width: 22px;
	height: 22px;
	padding: 0 6px;
	border-radius: 999px;
	font-size: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.wa-icon {
	width: 30px;
	height: 30px;
	display: block;
}

.wa-offcanvas-footer {
	position: sticky;
	bottom: 0;
	background: #fff;
	padding: 12px;
	border-top: 1px solid #e9ecef;
}

.wa-quick .btn {
	margin: 4px 4px 0 0;
}

.offcanvas-header .wa-agent {
	display: flex;
	gap: 8px;
	align-items: center;
}

.page-title-bar {
	background: linear-gradient(135deg, #1E52B6 0%, #B63494 90%);
	color: #fff;
	padding: 2% 0;
	position: relative;
	overflow: hidden;
	margin-bottom: 3.8%;
}

.page-title-bar h1 {
	font-size: 21px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: capitalize;
	margin-top: 5px;
	position: relative;
	z-index: 2;
	margin: 20px 0 20px 0;
}

.breadcrumb {
	background: transparent;
	margin: 0;
	font-size: 1rem;
	position: relative;
	z-index: 2;
	font-weight: bold;
}

.breadcrumb-item a {
	color: #FFD700;
	text-decoration: none;
	transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
	color: #ffae00;
}

.breadcrumb-item.active {
	color: #fff;

}

@media(max-width:767px) {
	.page-title-bar {
		padding: 8% 0;
	}

	.page-title-bar h1 {
		margin: 20px 0 0px 0;
	}
}

.sidebar-div .first-letter-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	font-weight: 700;
	font-size: 1rem;
	color: #111;
	text-transform: uppercase;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	padding: 0 10px;
}

.sidebar-div .treatment-icon-img {
	width: 25px;
	height: 25px;
	object-fit: contain;
}

.sidebar-div .first-letter-icon:hover {
	transform: scale(1.08);
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

@media(max-width:767px) {
	.sidebar-div {
		padding: 10px !important
	}

	.sidebar-div .dropdown-item {
		font-size: 11px !important;
	}
}

/* .dropdown-item {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s ease;
} */
/* .dropdown-item:hover {
    color: #FFD700;
} */
.initial-circle {
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, #007bff, #0056b3);
	color: #fff;
	font-weight: 600;
	font-size: 1.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	transition: all 0.3s ease;
}

/* New CSS  */
/* Hero Section */
.call-btn {
	background: linear-gradient(135deg, #25d366, #128c7e, #0d7377);
	border: none;
	border-radius: 30px;
	padding: 12px 25px;
	color: white;
	font-weight: 700;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	margin-right: 15px;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
	position: relative;
	overflow: hidden;
}

/* Pulse effect wrapped in a separate inner wrapper to avoid transform conflicts */
.call-btn .pulse-effect {
	display: inline-block;
	animation: pulse 3s infinite ease-in-out;
}

@keyframes pulse {
	0% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.1);
	}

	100% {
		transform: scale(1);
	}
}

.call-btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
	transition: left 0.6s;
}

.call-btn:hover::before {
	left: 100%;
}

.call-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

/* Section Titles */
.section-title {
	font-size: 2.5rem;
	font-weight: 700;
	background: var(--gradient-primary);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 3rem;
	position: relative;
}

.section-title::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 4px;
	background: var(--gradient-primary);
	border-radius: 2px;
}

#services .owl-carousel .owl-stage-outer,
#doctors .owl-carousel .owl-stage-outer {
	padding: 40px 0;
	overflow: unset;
}

#services .owl-carousel .owl-nav,
#doctors .owl-carousel .owl-nav {
	text-align: center;
}

/* Card Styles */
.service-card,
/* .doctor-card, */
.city-service-card {
	border: none;
	border-radius: 20px;
	transition: all 0.3s ease;
	box-shadow: 0 5px 8px rgba(0, 0, 0, 0.08);
	height: 100%;
	overflow: hidden;
	position: relative;
	z-index: 1;
}

section#doctors {
	overflow-x: hidden;
}

.service-card:hover,
/* .doctor-card:hover, */
.city-service-card:hover {
	transform: translateY(-10px) scale(1.02);
	box-shadow: 0 10px 10px rgba(0, 0, 0, 0.15);
}

.service-icon {
	background: #fff;
	border-radius: 50%;
	width: 80px;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px auto;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);

	position: relative;
	z-index: 2;
}

.service-icon::before {
	content: '';
	position: absolute;
	width: 105px;
	height: 105px;
	top: -11px;
	left: -11px;
	border-radius: 50%;
	border: 3px dashed #FFD700;
	opacity: 0;
	transition: all 0.4s ease-out;
	z-index: -1;
}

.service-card:hover .service-icon,
/* .doctor-card:hover .service-icon, */
.city-service-card:hover .service-icon {
	transform: rotateY(180deg);
}

.service-card:hover .service-icon::before,
/* .doctor-card:hover .service-icon::before, */
.city-service-card:hover .service-icon::before {
	opacity: 1;
	animation: rotateDots 6s linear infinite;
}

@keyframes rotateDots {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

#about .section-title::after {
	display: none;
}

/* Button Styles */
.btn-primary {
	background: var(--gradient-primary);
	border: none;
	border-radius: 25px;
	padding: 12px 30px;
	font-weight: 600;
	transition: all 0.3s ease;
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(12, 113, 181, 0.4);
}

.btn-outline-primary {
	border: 2px solid var(--primary-blue);
	color: var(--primary-blue);
	border-radius: 25px;
	/* padding: 10px 25px; */
	font-weight: 600;
	transition: all 0.3s ease;
}

.btn-outline-primary:hover {
	background: var(--gradient-primary);
	border-color: transparent;
	transform: translateY(-2px);
}

/* Premium Doctor Images with Animations */
.doctor-img {
	width: 140px;
	height: 140px;
	border-radius: 50%;
	background: var(--gradient-primary);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 3.5rem;
	color: white;
	margin: 0 auto 25px;
	position: relative;
	overflow: hidden;
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.doctor-img::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
	transform: rotate(45deg);
	transition: all 0.6s ease;
	opacity: 0;
}

.doctor-card:hover .doctor-img::before {
	animation: shimmer 1.5s ease-in-out;
	opacity: 1;
}

@keyframes shimmer {
	0% {
		transform: translateX(-100%) translateY(-100%) rotate(45deg);
	}

	50% {
		transform: translateX(0%) translateY(0%) rotate(45deg);
	}

	100% {
		transform: translateX(100%) translateY(100%) rotate(45deg);
	}
}


/* .doctor-card:hover .doctor-img {
	transform: scale(1.1) rotate(5deg);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
} */

/* Premium Owl Carousel Styles */
.owl-nav button {
	background: linear-gradient(135deg, var(--primary-blue), var(--purple-gradient)) !important;
	color: white !important;
	border-radius: 50% !important;
	width: 60px !important;
	height: 60px !important;
	font-size: 20px !important;
	margin: 0 15px !important;
	border: 3px solid rgba(255, 255, 255, 0.2) !important;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2) !important;
	position: relative !important;
	overflow: hidden !important;
}

.owl-nav button::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
	transition: left 0.6s;
}

.owl-nav button:hover::before {
	left: 100%;
}

.owl-nav button:hover {
	transform: scale(1.15) !important;
	box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3) !important;
}

.owl-dots .owl-dot span {
	background: var(--gradient-primary) !important;
	width: 15px !important;
	height: 15px !important;
	border-radius: 50% !important;
	transition: all 0.3s ease !important;
}

.owl-dots .owl-dot:hover span,
.owl-dots .owl-dot.active span {
	transform: scale(1.3) !important;
	box-shadow: 0 0 15px rgba(12, 113, 181, 0.6) !important;
}


/* Scrolling Testimonials Styles */
.testimonials-scroll-container {
	height: 500px;
	overflow: hidden;
	position: relative;
	border-radius: 20px;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(248, 250, 252, 0.05));
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonials-scroll-wrapper {
	height: 100%;
	overflow: hidden;
}

.testimonials-scroll-content {
	display: flex;
	flex-direction: column;
	animation: scrollTestimonials 20s linear infinite;
	gap: 20px;
	padding: 20px;
}

.testimonials-scroll-content:hover {
	animation-play-state: paused;
}

.testimonial-scroll-item {
	flex-shrink: 0;
	width: 100%;
}

.testimonial-bg .testimonial-overlay {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to top,
			rgba(0, 0, 0, 0.6) 0%,
			rgba(0, 0, 0, 0.4) 40%,
			transparent 70%);
	z-index: 1;
}

.testimonial-card {
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	border: 1px solid rgba(0, 0, 0, 0.05);
}

.testimonial-card:hover {
	transform: translateY(-5px) scale(1.02);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15) !important;
}

@keyframes scrollTestimonials {
	0% {
		transform: translateY(0);
	}

	100% {
		transform: translateY(-100%);
	}
}

/* Fade effect at top and bottom */
.testimonials-scroll-container::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 40px;
	background: linear-gradient(to bottom, rgba(248, 249, 250, 1), rgba(248, 249, 250, 0));
	z-index: 10;
	pointer-events: none;
}

.testimonials-scroll-container::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 40px;
	background: linear-gradient(to top, rgba(248, 249, 250, 1), rgba(248, 249, 250, 0));
	z-index: 10;
	pointer-events: none;
}

/* Review Cards */
.review-card {
	background: linear-gradient(135deg, #f8f9fa, #e9ecef);
	border-radius: 20px;
	padding: 30px;
	border: none;
	height: 100%;
}

.stars {
	color: #ffc107;
	font-size: 1.2rem;
}

/* Premium Footer */
/* .footer {
	background: linear-gradient(135deg, #0a1929, #1e3a8a, #6b1fb5);
	color: var(--white-color);
	position: relative;
	margin: 100px 0 0 0;
	float: left;
	width: 100%;
}
.h4, h4 {
	font-size: 1.0rem !important;
}
.footer h3,
.footer h5 {
	background: linear-gradient(135deg, #ffffff, #e2e8f0);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	font-weight: 800;
	margin-bottom: 1.5rem;
}

.footer a {
	color: #cbd5e0;
	text-decoration: none;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	display: inline-block;
}

.footer a::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 0;
	height: 2px;
	background: linear-gradient(90deg, #60a5fa, #a78bfa);
	transition: width 0.3s ease;
}

.footer a:hover::after {
	width: 100%;
}

.footer a:hover {
	color: white;
	transform: translateX(5px);
}

.social-icons a {
	display: inline-block;
	width: 50px;
	height: 50px;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	text-align: center;
	line-height: 50px;
	margin-right: 15px;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
}

.social-icons a::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
	transition: left 0.6s;
}

.social-icons a:hover::before {
	left: 100%;
}

.social-icons a:hover {
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
	transform: translateY(-5px) scale(1.1);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
} */

footer.footer-bg {
	position: relative;
	background: var(--dark-blue);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	color: #ffffff;
	padding-top: 60px;
	padding-bottom: 40px;
}

/* Background overlay */
footer .footer-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.80);
}

footer .footer-bg .container {
	position: relative;
	z-index: 2;
}

footer .footer-title {
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--white-color);
	margin-bottom: 20px;
}

footer .footer-links {
	list-style: none;
	padding: 0;
}

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

footer .footer-links a {
	text-decoration: none;
	color: #cbd5e0;
	transition: 0.3s;
}

footer .footer-links a:hover {
	color: white;
	padding-left: 6px;
}

footer .footer-line {
	border-color: rgba(255, 255, 255, 0.18);
}

footer .social-icons a {
	width: 40px;
	height: 40px;
	display: inline-block;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	color: white;
	text-align: center;
	line-height: 40px;
	margin-right: 10px;
	transition: 0.3s;
	border: 1px solid rgba(255, 255, 255, 0.2);
}

footer .social-icons a:hover {
	background: var(--primary-blue);
	transform: translateY(-4px);
}

footer .footer-icon {
	width: 100%;
	filter: brightness(95%);
}

footer .ft-label {
	font-weight: 700;
	position: relative;
	margin-top: 10px;
}

footer .ft-text {
	color: #e5e7eb;
	opacity: 0.85;
}

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


/* Form Styles */
.form-control {
	border-radius: 15px;
	border: 2px solid #e9ecef;
	padding: 12px 15px;
	transition: all 0.3s ease;
}

.form-control:focus {
	border-color: var(--primary-blue);
	box-shadow: 0 0 0 0.2rem rgba(12, 113, 181, 0.25);
}

/* Alternating Backgrounds */
.bg-alternate {
	background: var(--light-gray);
}


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

	.hero-section h1 {
		font-size: 2.5rem;
	}

	.search-container {
		padding: 5px;
	}

	.navbar-nav .nav-link {
		margin: 5px 0;
	}
}

/* Navigation & Font Updates */
.navbar-nav .nav-item .nav-link,
.callexttop,
.navbar-brand {
	letter-spacing: 0.5px;
	position: relative;
	font-family: 'Poppins', sans-serif;
}

.dropdown-menu .list-group-item:hover {
	background-color: rgba(12, 113, 181, 0.05);
	color: var(--primary-blue);
	border-left: 4px solid var(--primary-blue);
	transform: translateX(5px);
}

.treatment-type-heading {
	font-size: 16px;
	margin: auto;
	font-weight: 500;
}

/* departments page */
.departments .card {
	border: none !important;
	border-radius: 14px !important;
	background-color: var(--white-color) !important;
	transition: all 0.35s ease !important;
	overflow: hidden !important;
	box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05) !important;
	position: relative !important;
}

/* .departments .card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .departments .card:hover::before {
    opacity: 1;
  } */

.departments .card:hover {
	transform: translateY(-8px) !important;
	/* box-shadow: 0 10px 32px rgba(0, 0, 0, 0.15) !important; */
}

.departments .card-body {
	text-align: center;
	padding: 2rem 1.5rem;
}

.departments .initial-circle {
	width: 75px;
	height: 75px;
	border-radius: 50%;
	font-size: 30px;
	font-weight: 600;
	display: flex;
	border: 1px solid #ccc;
	align-items: center;
	justify-content: center;
	color: var(--white-color);
	background: no-repeat;
	margin: 0 auto 1rem;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	padding: 5px;
}

.departments .card:hover .initial-circle {
	transform: scale(1.1);
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
}

.departments .card-title {
	font-size: 1.15rem;
	font-weight: 700;
	color: var(--heading-color);
	margin-bottom: 0.5rem;
}

.departments .card-text {
	font-size: 0.92rem;
	color: #6c757d;
	line-height: 1.55;
	min-height: 60px;
}

.departments .card-footer {
	background: transparent;
	border: none;
	text-align: center;
	padding-bottom: 1.5rem;
}

.departments .quote-btn.btn-appointment {
	background: var(--gradient-secondary);
}

.departments .quote-btn {
	display: inline-block;
	padding: 9px 22px;
	background: var(--gradient-primary);
	color: var(--white-color);
	font-size: 0.95rem;
	font-weight: 600;
	border-radius: 30px;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 5px 14px rgba(0, 66, 163, 0.35);
}

.departments .quote-btn:hover {
	background: var(--dark-blue);
	box-shadow: 0 8px 20px rgba(0, 66, 163, 0.45);
	transform: translateY(-2px);
}

.departments .quote-btn.btn-appointment:hover {
	background: var(--green-color);
}

.departments .transition-all {
	transition: all 0.3s ease-in-out;
}

/* Sidebar */
.sidebar-div {
	background: var(--white-color);
	border-radius: 12px;
	padding: 1rem;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.sidebar-div .list-group {
	border: none;
}

.departments .sidebar-div .list-group-item {
	background: transparent;
	padding: 0;
	transition: all 0.35s ease;
	border-radius: 8px;
	border: none;
}

.sidebar-div .list-group-item:not(:last-child) {
	border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
}

.sidebar-div .dropdown-item {
	display: flex;
	align-items: center;
	font-size: 0.95rem;
	font-weight: 600;
	color: var(--dark-heading);
	text-decoration: none;
	border-radius: 8px;
	padding: 0.5rem 0.75rem;
	transition: all 0.35s ease;
}

.sidebar-div .dropdown-item:hover {
	background: var(--gradient-primary);
	color: var(--white-color);
	transform: translateX(6px);
	box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

.sidebar-div .first-letter-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	font-size: 15px;
	font-weight: 700;
	color: var(--dark-heading);
	margin-right: 0.6rem;
	transition: all 0.3s ease;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
	flex-shrink: 0;
}

.sidebar-div .dropdown-item:hover .first-letter-icon {
	background: rgba(255, 255, 255, 0.25) !important;
	color: var(--white-color);
	filter: brightness(0) invert(1);
	transform: scale(1.1);
	box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.sidebar-div .list-group-item.active,
.sidebar-div .dropdown-item.active {
	background: var(--gradient-primary);
	color: var(--white-color);
	border-radius: 8px;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
	transform: translateX(3px);
}


.sidebar-div .dropdown-item.active .first-letter-icon {
	background: rgba(255, 255, 255, 0.25) !important;
	color: var(--white-color);
	filter: brightness(0) invert(1);
}


/* ==========================================================================
   1. ACTION AMBULANCE CSS (EMERGENCY)
   ========================================================================== */
.ambulance .page-title-bar {
	background-color: var(--thm-base-rgb);
}

.ambulance .page-title-bar h1 {
	color: var(--white-color);
}

.emergency-cta {
	background-color: var(--dark-heading);
}

.emergency-cta .btn-warning {
	background-color: var(--orange-color);
	border-color: var(--orange-color);
	color: var(--dark-heading);
	transition: all 0.3s ease;
	font-size: 1.5rem;
}

.emergency-cta .btn-warning:hover {
	background-color: #f7a53c;
	border-color: #f7a53c;
}

.ambulance-details {
	padding: 60px 0;
}

.ambulance-details .text-danger {
	color: var(--thm-base-rgb) !important;
}

.ambulance-details .list-group-item {
	border: none;
	padding-left: 0;
	font-size: 15px;
	color: var(--dark-heading);
}

.ambulance-details .list-group-item i {
	font-size: 1.1em;
}

/* FAQ Section */
.ambulance-faqs .accordion-item {
	border-radius: 8px !important;
	border: 1px solid var(--light-gray);
	margin-bottom: 1rem;
	overflow: hidden;
}

.ambulance-faqs .accordion-button {
	color: var(--dark-heading);
	font-weight: 600;
	padding: 1rem 1.25rem;
}

.ambulance-faqs .accordion-button:not(.collapsed) {
	background-color: var(--light-gray);
	color: var(--thm-base-rgb);
}

/* ==========================================================================
   2. HOME CARE CSS
   ========================================================================== */
.home-care .page-title-bar {
	background-color: var(--thm-base);
}

.home-care .page-title-bar h1 {
	color: var(--white-color);
}

.home-care-intro {
	padding: 60px 0;
}

.home-care-intro .text-success {
	color: var(--thm-base) !important;
}

.home-care-intro .list-unstyled li i {
	color: var(--thm-base);
	font-size: 1.1em;
}

.home-care-intro .btn-success {
	background-color: var(--orange-color);
	border-color: var(--orange-color);
	color: var(--white-color);
	font-weight: 600;
	transition: background-color 0.3s ease;
}

.home-care-intro .btn-success:hover {
	background-color: #cf7911;
	border-color: #cf7911;
}

/* Care Packages Section */
.care-packages {
	background-color: var(--light-gray);
}

.care-packages .card {
	border-top: 5px solid var(--orange-color) !important;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.care-packages .card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.care-packages .card i {
	color: var(--primary-blue);
}

/* ==========================================================================
   3. LAB TEST / PREVENTIVE HEALTH PACKAGE CSS
   ========================================================================== */
.lab-test .page-title-bar {
	background: var(--gradient-primary);
}

.lab-test .page-title-bar h1 {
	color: var(--white-color);
}

.lab-service-intro {
	padding: 60px 0;
}

.lab-service-intro .text-primary {
	color: var(--primary-blue) !important;
}

.lab-service-intro .list-unstyled li i {
	color: var(--orange-color);
	font-size: 1.1em;
}

.lab-service-intro .btn-success {
	background-color: var(--thm-base);
	border-color: var(--thm-base);
	font-weight: 600;
	transition: background-color 0.3s ease;
}

.lab-service-intro .btn-success:hover {
	background-color: #3538a8;
	border-color: #3538a8;
}

/* Popular Packages Section */
.popular-packages {
	background-color: var(--light-gray);
}

.popular-packages .card {
	border: none;
	border-radius: 12px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
	transition: box-shadow 0.3s ease;
}

.popular-packages .card:hover {
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.popular-packages .text-warning {
	color: var(--orange-color) !important;
}

.popular-packages .border-warning {
	border-color: var(--orange-color) !important;
}

.popular-packages .btn-warning {
	background-color: var(--orange-color);
	border-color: var(--orange-color);
}

.popular-packages .btn-warning:hover {
	background-color: #cf7911;
	border-color: #cf7911;
}

.lab-faqs .accordion-button {
	color: var(--heading-color);
}

/* ==========================================================================
   4. RADIOLOGY CSS
   ========================================================================== */
.radiology .page-title-bar {
	background-color: var(--dark-blue);
}

.radiology .page-title-bar h1 {
	color: var(--white-color);
}

.radiology-intro {
	padding: 60px 0;
}

.radiology-intro .text-info {
	color: var(--primary-blue) !important;
}

.radiology-intro .list-unstyled li i {
	color: var(--primary-blue);
	font-size: 1.1em;
}

.radiology-intro .btn-info {
	background-color: var(--primary-blue);
	border-color: var(--primary-blue);
	color: var(--white-color);
	font-weight: 600;
	transition: background-color 0.3s ease;
}

.radiology-intro .btn-info:hover {
	background-color: var(--dark-blue);
	border-color: var(--dark-blue);
}

.radiology-features {
	background-color: var(--light-gray);
	padding: 40px 0;
}

.radiology-features i {
	color: var(--orange-color);
	margin-bottom: 10px;
}

/* ==========================================================================
   5. ONLINE CONSULTATION CSS
   ========================================================================== */
.online-consultation .page-title-bar {
	background: var(--purple-gradient);
}

.online-consultation .page-title-bar h1 {
	color: var(--white-color);
}

.consultation-features {
	padding: 60px 0;
}

.consultation-features .feature-box {
	text-align: center;
	padding: 20px;
	border-radius: 8px;
	border: 1px solid var(--light-gray);
	transition: all 0.3s ease;
}

.consultation-features .feature-box:hover {
	background-color: var(--light-gray);
	border-color: var(--thm-base);
}

.consultation-features .feature-box i {
	color: var(--thm-base);
	margin-bottom: 15px;
}

.online-consultation .btn-secondary {
	background-color: var(--purple-gradient);
	border-color: var(--purple-gradient);
	color: var(--white-color);
	font-weight: 600;
}

.online-consultation .btn-secondary:hover {
	background-color: #5d17a3;
	border-color: #5d17a3;
}

/* ==========================================================================
   6. DOCTOR AT HOME CSS
   ========================================================================== */
.doctor-home .page-title-bar {
	background-color: var(--primary-blue);
}

.doctor-home .page-title-bar h1 {
	color: var(--white-color);
}

.doctor-home-intro {
	padding: 60px 0;
}

.doctor-home-intro .list-unstyled li i {
	color: var(--primary-blue);
	font-size: 1.1em;
}

.doctor-home .service-card {
	border: none;
	border-radius: 10px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s ease;
}

.doctor-home .service-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.doctor-home .service-card i {
	color: var(--orange-color);
}

/* ==========================================================================
   7. HEALTH INSURANCE CSS
   ========================================================================== */
.health-insurance .page-title-bar {
	background: var(--dark-blue);
}

.health-insurance .page-title-bar h1 {
	color: var(--white-color);
}

.insurance-intro {
	padding: 60px 0;
}

.insurance-intro .text-success {
	color: var(--thm-base) !important;
}

.insurance-intro .btn-success {
	background-color: var(--orange-color);
	border-color: var(--orange-color);
	font-weight: 600;
}

.insurance-intro .btn-success:hover {
	background-color: #cf7911;
	border-color: #cf7911;
}

.plan-comparison .plan-box {
	background-color: var(--white-color);
	padding: 25px;
	border-radius: 10px;
	border: 1px solid var(--light-gray);
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.plan-comparison .plan-box i {
	color: var(--primary-blue);
	margin-bottom: 10px;
}

/* ==========================================================================
   END OF SERVICE SPECIFIC CSS
   ========================================================================== */

@media (min-width: 1299px) {
	.row-cols-lg-8>* {
		flex: 0 0 calc(100% / 8);
		max-width: calc(100% / 8);
	}

	.row-cols-lg-7>* {
		flex: 0 0 calc(100% / 7);
		max-width: calc(100% / 7);
	}
}

#specialists .specialist-heading,
#services .service-heading {
	font-size: 14px;
}

#specialists .card {
	border: none;
	border-radius: 20px;
	transition: all 0.3s ease;
	box-shadow: 0 5px 8px rgba(0, 0, 0, 0.08);
	height: 100%;
	overflow: hidden;
	transition: transform 0.3s ease;
}

#specialists img.speciality-logo {
	width: 70px;
	height: 70px;
	object-fit: contain;
	margin: 0 auto;
	transition: transform 0.3s ease;
}

#specialists .card:hover img.speciality-logo {
	transform: scale(1.15);
}

/* Sticky Sidebar */
.sticky-sidebar {
	position: fixed;
	/* top: 30%; */
	top: 40%;
	right: 0;
	z-index: 99;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
}

.sticky-sidebar .sidebar-toggle {
	width: 60px;
	height: 35px;
	background: #000;
	border-radius: 10px 0 0 0;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	position: absolute;
	top: -35px;
	right: 0;
	transition: .3s;
}

.sticky-sidebar .arrow-icon {
	color: #fff;
	font-size: 18px;
	transition: .3s;
}

.sticky-sidebar .sidebar-item {
	/* width: 60px;
height: 80px; */
	width: 60px;
	height: 170px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	writing-mode: vertical-rl;
	color: #fff;
	font-size: 16px;
	cursor: pointer;
	transition: .3s;
}

.sticky-sidebar .sidebar-item i {
	transform: rotate(90deg);
}

.sticky-sidebar .contact-item {
	background: #6c4cf5;
}

.sticky-sidebar .whatsapp-item {
	background: #25d366;
	height: 70px;
	transition: all 0.5s ease;
}

.sticky-sidebar .messenger-item {
	background: #0084ff;
	height: 70px;
	transition: all 0.5s ease;
}

.sticky-sidebar.sidebar-collapsed .sidebar-item {
	transform: translateX(120px);
	opacity: 0;
}

.sticky-sidebar.sidebar-collapsed .sidebar-toggle {
	top: 50%;
	transform: translateY(-50%);
	border-radius: 10px 0 0 10px;
}

.sticky-sidebar.sidebar-collapsed .arrow-icon {
	transform: rotate(180deg);
}

.sticky-sidebar .side-popup {
	position: absolute;
	right: 60px;
	background: #fff;
	display: none;
	border-radius: 10px;
	padding: 12px 26px;
	box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
	opacity: 0;
	animation: fadeIn .2s ease forwards;
}

.sticky-sidebar .contact-popup {
	top: 50%;
	transform: translateY(-50%);
	width: 430px;
	padding: 30px;
	height: 500px;
	overflow-y: auto;
}

@media(min-width:1299px) {
	.sticky-sidebar .contact-popup {
		height: auto;
	}
}

.sticky-sidebar .whatsapp-popup {
	top: 80px;
	background: #25d366;
	color: #fff;
	height: 70px;
	justify-content: center;
	font-weight: 600;
	border-radius: 10px 0 0 10px;
	align-items: center;
}

.sticky-sidebar .messenger-popup {
	top: 150px;
	background: #0084ff;
	color: #fff;
	height: 70px;
	font-weight: 600;
	justify-content: center;
	font-weight: 600;
	border-radius: 10px 0 0 10px;
	align-items: center;
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@media(max-width:767px) {
	.sticky-sidebar .contact-popup {
		width: 90%;
		position: relative;
		top: 0;
		transform: translateY(-75%);
	}
}

/* Ambulance BUtton */
