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


body {
	font-family: 'Poppins', sans-serif;
	font-weight: 400;
	color: #1a1a1a;
}

a {
	text-decoration: none;
	-moz-transition: all .3s ease-in-out;
	-webkit-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}

a:hover {
	text-decoration: none;
}

section h2 {
	font-size: 32px;
	font-weight: 500;
}

/* Common Styles */
.section-title {
	margin-bottom: 50px;
}

.section-title h2 {
	position: relative;
	display: inline-block;
	margin-bottom: 15px;
}


section {
	padding: 50px 0;
}

.btn-primary {
	background-color: #f04e30;
	border-color: #f04e30;
	color: #fff;
	padding: 10px 25px;
	font-weight: 500;
	letter-spacing: 0.5px;
}

.btn-primary:hover {
	background-color: #e05a3b;
	border-color: #e05a3b;
}

.btn-light {
	background-color: #fff;
	border-color: #fff;
	color: #f04e30;
	padding: 10px 25px;
	font-weight: 500;
	letter-spacing: 0.5px;
}

.btn-light:hover {
	background-color: #f5f5f5;
	border-color: #f5f5f5;
	color: #e05a3b;
}

.btn-circle {
	display: inline-flex;
	align-items: center;
	color: #f04e30;
	font-weight: 500;
	font-size: 14px;
}

.btn-circle i {
	margin-left: 5px;
	transition: all 0.3s ease;
}

.btn-circle:hover i {
	transform: translateX(5px);
}

/* Header Styles */
.header {
	background-color: #fff;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
	position: sticky;
	top: 0;
	z-index: 100;
}

.navbar-brand img {
	max-height: 60px;
}

.nav-item .nav-link {
	color: #3d3d3d;
	font-size: 13px;
	padding: 5px 0;
	position: relative;
	font-weight: bold;
}

.nav-item .nav-link.active,
.nav-item .nav-link:hover {
	color: #f04e30;
}

.header-buttons {
	gap: 15px;
	margin-top: 10px;
}

.call-btn {
	background-color: #f04e30;
	border-color: #f04e30;
	color: #fff;
	font-size: 14px;
	font-weight: 500;
	padding: 8px 15px;
	white-space: nowrap;
}

.call-btn:hover {
	background-color: #e05a3b;
	border-color: #e05a3b;
}

.emergency-btn {
	color: #f04e30;
	border-color: #f04e30;
	font-size: 14px;
	font-weight: 500;
	padding: 8px 15px;
	white-space: nowrap;
}

.emergency-btn:hover {
	background-color: #f04e30;
	border-color: #f04e30;
	color: #fff;
}

.header-buttons .fa-phone {
	margin-right: 5px;
}

/* Responsive header adjustments */
@media (max-width: 1399px) {
	.navbar-brand img {
		max-height: 50px;
	}
}

@media (max-width: 1200px) {
	.header-buttons {
		flex-direction: row;
		gap: 10px !important;
	}

	.navbar-brand img {
		max-height: 60px;
	}
}

@media (max-width: 991px) {
	.navbar-collapse {
		padding: 15px 0;
	}

	.header-buttons {
		margin-top: 15px;
	}

	.navbar-nav {
		margin-bottom: 15px !important;
	}
}

/* Mobile-specific styles for header */
@media (max-width: 768px) {
	.header .container {
		display: flex;
		align-items: center;
		justify-content: space-between;
	}

	.navbar-brand {
		max-width: 150px;
		/* Adjust logo size if needed */
	}

	.navbar-toggler {
		padding: 5px 10px;
		border-radius: 5px;
	}

	.mobile-header-buttons {
		margin-top: 10px;
	}
}

/* Hero Section */
.hero-section {
	padding: 0;
	align-items: center;
	margin-top: 30px;
}

.lchs-logo-small img {
	width: 250px;
	margin-right: 10px;
}

.lchs-logo-small span {
	font-weight: 700;
	color: #f04e30;
	font-size: 22px;
}

.hero-image img {
	width: 100%;
}

.hero-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

/* Stats Section */
.stats-section {
	position: relative;
	z-index: 10;
	padding: 0;
	margin-top: -50px;
}

.stats-container {
	--statsspacing: 0;
	display: flex;
	box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
	border-radius: 10px;
	overflow: hidden;
	margin-left: -16px;
	margin-right: -16px;
	margin-top: calc(-1* var(--bs-gutter-y));
	margin-right: calc(-.5* var(--statsspacing));
	margin-left: calc(-.5* var(--statsspacing));
}

.stats-item {
	padding-right: calc(var(--statsspacing)* .5);
	padding-left: calc(var(--statsspacing)* .5);
	margin-top: var(--statsspacing);
	background-color: #fff;
	flex: 1;
}

.stats-item .stats-inner {
	display: flex;
	align-items: center;
	padding: 20px 10px;
	flex: 1;
	background-color: #fff;
	height: 100%;
}


.stats-item.primary-stats .stats-inner {
	background-color: #f04e30;
	color: #fff;
}

.stats-item .icon {
	width: 40px;
	height: 40px;
	display: flex;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
	margin-right: 10px;
	background-color: #e5e5e5;
	border-radius: 50%;
}

.stats-item .icon img {
	width: 25px;
	height: auto;
}

.stats-item.primary-stats .icon {
	background-color: #fff;
}

.stats-content h3 {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 0;
	line-height: 1.2;
}

.stats-content p {
	font-size: 12px;
	margin-bottom: 0;
	color: #666;
	font-weight: 400;
	line-height: 1.2;
}

.stats-item.primary-stats .stats-content p {
	color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 991px) {
	.hero-section {
		padding-bottom: 50px;
	}

	.hero-content {
		margin-bottom: 40px;
		flex-direction: column;
	}

	.hero-content h1 {
		text-align: center;
	}

	.hero-content h1 br {
		display: none;
	}

	.stats-container {
		--statsspacing: 1rem;
		flex-wrap: wrap;
		box-shadow: none;
		overflow: visible;
	}

	.stats-item.primary-stats {
		min-width: 100%;
	}

	.stats-item .stats-inner {
		border-radius: 10px;
		box-shadow: 0 0 10px 0px #c8c8c8;
	}

	.stats-container .stats-item {
		flex: 0 0 auto;
		width: 50%;
	}

	.stats-container .stats-item:not(.primary-stats) .stats-inner {
		background-color: #fff;
	}
}

@media (max-width: 767px) {
	.hero-section .row>.col-lg-6:first-child {
		padding-left: 0;
		padding-right: 0;
	}

	.hero-content {
		display: block;
		text-align: center;
		margin-bottom: 8px;
		margin-top: -70px;
	}

	.hero-content h1 {
		padding: 20px;
		border-radius: 10px;
		font-size: 30px;
		margin-bottom: 0;
		background-color: #efefef;
	}

	.hero-content h1 br {
		display: none;
	}

	.lchs-logo-small {
		justify-content: center;
		display: none;
	}

	.stats-container {
		flex-wrap: wrap;
		border-radius: 0;
	}

	.stats-item:nth-child(even) {
		border-right: none;
	}

	.stats-item:nth-last-child(-n+2) {
		border-bottom: none;
		margin-bottom: 0;
	}


}

@media (max-width: 400px) {
	.stats-content h3 {
		font-size: 14px;
		font-weight: 700;
		margin-bottom: 0;
		line-height: 1.2;
	}
}

/* Services Section */
.services-section {
	background-color: #fff;
	padding-top: 80px;
}

.services-nav {
	padding-right: 30px;
}

.services-nav h4 {
	font-size: 22px;
	font-weight: 400;
	margin-bottom: 10px;
}

.services-nav h2 {

	color: #222;
	margin-bottom: 35px;
}

.services-tabs {
	border: none;
}

.services-tabs .nav-link {
	border: none;
	padding: 0;
	background: transparent;
	border-radius: 0;
	transition: all 0.3s ease;
}

.service-tab-inner {
	display: flex;
	align-items: center;
	padding: 0 0 15px;
	margin-bottom: 15px;
	border-bottom: 1px solid #ddd;
}

.service-tab-inner .icon {
	margin-right: 15px;
}

.service-tab-inner .icon img {
	width: 20px;
	height: 20px;
	object-fit: contain;
}

.service-tab-inner span {
	flex: 1;
	font-size: 16px;
	font-weight: 500;
	color: #1a1a1a;
	text-align: left;
}

.service-tab-inner i {
	margin-left: 10px;
	color: #ccc;
	transition: all 0.3s ease;
}

.services-tabs .nav-link.active .service-tab-inner span,
.services-tabs .nav-link.active .service-tab-inner i {
	color: #f04e30;
}


.services-tab-content {
	background-color: #fff;
	border-radius: 10px;
	overflow: hidden;
	height: 100%;
}

.service-content {
	display: flex;
	flex-direction: column;
}

.service-image {
	width: 100%;
	border-radius: 10px;
}

.service-text {
	padding: 30px 0 0;
}

.service-text p {
	color: #666;
	line-height: 1.7;
	margin-bottom: 15px;
}

.service-text p:last-child {
	margin-bottom: 0;
}

@media (max-width: 991px) {
	.services-nav {
		margin-bottom: 40px;
		padding-right: 0;
	}
}

/* About Section */
.about-section {
	padding: 0;
}

.about-section h2 {
	margin-bottom: 20px;
}

.about-section h4 {
	font-size: 22px;
	font-weight: 400;
	margin-bottom: 5px;
}

.about-content {
	text-align: center;
}

.about-content p {
	margin-bottom: 20px;
	color: #666;
	line-height: 1.7;
}

.about-content .btn {
	margin-top: 10px;
}

.care-display-image img {
	border-radius: 10px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.care-display-text {
	background-color: #f9f9f9;
	border-radius: 10px;
	padding: 25px;
	height: 100%;
	display: flex;
	align-items: center;
}

.care-display-text p {
	color: #666;
	font-style: italic;
	line-height: 1.7;
	margin-bottom: 0;
}

/* Why Choose Us Section */
.why-choose-section {
	background-color: #f9f9f9;
	padding: 50px 0;
}

.reason-card {
	background-color: #fff;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
	height: 100%;
	position: relative;
	display: flex;
	flex-direction: column;
}

.reason-card.white-card {
	background-color: #fff;
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: auto;
}

.reason-img img {
	width: 100%;
	height: 240px;
	object-fit: cover;
}

.reason-content {
	padding: 30px;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.reason-content h3 {
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 15px;
	color: #333;
}

.reason-content p {
	color: #666;
	line-height: 1.6;
	margin-bottom: 20px;
	flex-grow: 1;
}

.reason-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: auto;
}

.know-more-btn {
	display: flex;
	align-items: center;
	color: #f04e30;
	font-weight: 500;
	transition: all 0.3s ease;
}

.know-more-btn .btn-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	background-color: #f04e30;
	border-radius: 50%;
	margin-left: 10px;
	color: #fff;
	font-size: 12px;
	transition: all 0.3s ease;
}

.know-more-btn:hover {
	color: #e05a3b;
}

.know-more-btn:hover .btn-icon {
	background-color: #e05a3b;
	transform: translateX(3px);
}

.reason-footer .icon {
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #f5f5f5;
	border-radius: 50%;
}

.reason-footer .icon img {
	width: 30px;
	height: 30px;
	object-fit: contain;
}

@media (max-width: 991px) {
	.reason-card {
		margin-bottom: 30px;
	}
}

/* Feature Card Styles */
.feature-card {
	background-color: #fff;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
	margin-bottom: 30px;
	position: relative;
	height: 100%;
}

.feature-image img {
	width: 100%;
	height: 200px;
	object-fit: cover;
}

.feature-card h3 {
	font-size: 20px;
	font-weight: 600;
	padding: 20px 20px 10px;
}

.feature-card p {
	padding: 0 20px 20px;
	color: #666;
	font-size: 14px;
	line-height: 1.7;
}

.feature-card .btn-circle {
	margin: 0 20px 20px;
}

.feature-card .icon-box {
	position: absolute;
	bottom: 20px;
	right: 20px;
	width: 40px;
	height: 40px;
	background-color: rgba(242, 109, 78, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Testimonials Section */
.testimonials-section {
	padding: 50px 0;
	position: relative;
	background-color: #f9f9f9;
}

.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: auto auto;
	grid-gap: 20px;
	grid-template-areas:
		"testimonial-1 testimonial-2 testimonial-4"
		"testimonial-1 testimonial-3 testimonial-4";
}

#testimonial-1 {
	grid-area: testimonial-1;
}

#testimonial-2 {
	grid-area: testimonial-2;
}

#testimonial-3 {
	grid-area: testimonial-3;
}

#testimonial-4 {
	grid-area: testimonial-4;
}

.testimonial-card {
	position: relative;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
	height: 100%;
	display: flex;
	flex-direction: column;
	background-color: #f14d31;
}

.testimonial-card:not(.large-card) .testimonial-image img {
	object-position: center;
}

.testimonial-image {
	position: relative;
	height: 100%;
}

.testimonial-image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.testimonial-card .play-btn {
	width: 50px;
	height: 50px;
	background-color: rgba(255, 255, 255, 0.3);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 18px;
	margin-bottom: 16px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.testimonial-card .play-btn:hover {
	background-color: rgba(255, 255, 255, 0.5);
}

.testimonial-info {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 20px;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

.testimonial-info h4 {
	font-size: 22px;
	font-weight: 600;
	margin-bottom: 0;
	color: #fff;
}

.testimonial-info p {
	font-size: 16px;
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 0;
}

.testimonial-card.large-card {
	height: 100%;
	min-height: 400px;
}

/* Responsive adjustments for the testimonial grid */
@media (max-width: 991px) {
	.testimonials-grid {
		grid-template-columns: 1fr 1fr;
		grid-template-areas:
			"testimonial-1 testimonial-4"
			"testimonial-2 testimonial-3";
	}

	.testimonial-card.large-card {
		min-height: 350px;
	}

	#testimonial-2,
	#testimonial-3 {
		min-height: 250px;
	}
}

@media (max-width: 767px) {
	.testimonials-grid {
		grid-template-columns: 1fr;
		grid-template-areas:
			"testimonial-1"
			"testimonial-2"
			"testimonial-3"
			"testimonial-4";
	}

	.testimonial-card,
	.testimonial-card.large-card,
	#testimonial-2,
	#testimonial-3 {
		min-height: 300px;
		margin-bottom: 0;
	}
}

/* CTA Section */
.cta-section {
	background-color: #f04e30;
	padding: 50px 0;
	color: #fff;
}

.cta-content h2 {
	margin-bottom: 20px;
}

.cta-content p {
	font-size: 18px;
	margin-bottom: 30px;
	opacity: 0.9;
	line-height: 1.7;
	max-width: 600px;
}

.cta-image {
	text-align: right;
}

.cta-image img {
	max-width: 100%;
	height: auto;
}


.counter-box {
	color: #fff;
	background-color: #ff5d3f;
	padding: 20px 25px;
	border-radius: 10px;
}

.counter-box h3 {
	font-size: 20px;
	font-weight: 500;
	margin-bottom: 10px;
}

.counter-box p {
	font-size: 16px;
	opacity: 0.8;
	margin-bottom: 0;
}

@media (max-width: 991px) {
	.cta-content {
		margin-bottom: 30px;
	}

	.cta-image {
		text-align: center;
	}

	.cta-image img {
		max-width: 300px;
	}

	.counter-box {
		margin-bottom: 20px;
	}
}

@media (max-width: 767px) {
	.cta-content h2 {
		font-size: 32px;
	}
}

/* Partners Section */
.partners-section {
	padding: 140px 0 0;
	background-image: url('../images/tie-up-bg.jpg');
	background-size: 100%;
	background-position: top;
	background-repeat: no-repeat;
}

.partners-section h2 {
	margin-bottom: 0px;
}

.partner-row {
	background-color: #fff;
	padding: 60px;
	border-radius: 10px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
	margin-bottom: -50px;
	position: relative;
	z-index: 5;
}

.partner-box {
	text-align: center;
	padding: 30px;
	height: 100%;
}

.partner-box img {
	height: 60px;
	margin-bottom: 20px;
}

.partner-box h3 {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 15px;
}

.partner-box p {
	font-size: 14px;
	color: #666;
	line-height: 1.7;
}

/* FAQ Section */
.faq-section {
	background-color: #fff;
	padding: 100px 0;
}

.faq-section .section-title h2 {
	margin-bottom: 0;
}

.accordion-item {
	border: 0;
	border-bottom: 1px solid #eaeaea;
	border-radius: 0;
	overflow: hidden;
	box-shadow: none;
	background-color: transparent;
	padding: 25px 0;
}

.accordion-button {
	padding: 0;
	font-size: 18px;
	font-weight: 600;
	background-color: #fff;
	color: #333;
	border: none;
}

.accordion-button:not(.collapsed) {
	background-color: #fff;
	color: #333;
	box-shadow: none;
}

.accordion-button:focus {
	box-shadow: none;
	border-color: #eaeaea;
}

.accordion-button::after {
	width: 20px;
	height: 20px;
	background-size: 20px;
	transition: all 0.3s ease;
}

.accordion-body {
	padding: 10px 0 0;
	background-color: #fff;
	color: #666;
	font-size: 16px;
	line-height: 1.7;
}

.accordion-body p:last-child {
	margin-bottom: 0;
}

@media (max-width: 767px) {

	.faq-section .section-title h2 {
		font-size: 32px;
	}

	.accordion-button {
		font-size: 16px;
	}

}

/* Registration Section */
.registration-section {
	padding: 0;
}

.registration-inner {
	background-color: #f5f5f5;
	padding: 50px 30px;
	border-radius: 10px;
}

.registration-section h2 {
	margin-bottom: 0px;
}

.registration-content {
	text-align: center;
}

.registration-content p {
	color: #666;
	line-height: 1.7;
	margin-bottom: 20px;
}



/* Footer Section */
.footer-section {
	background-color: #fff;
	color: #1a1a1a;
	padding: 0;
	border-top: 1px solid #eee;
}

.footer-top {
	padding: 60px 0 40px;
}

.footer-logo img {
	max-height: 60px;
	margin-bottom: 20px;
}

.footer-section p {
	font-size: 14px;
	color: #666;
	line-height: 1.7;
	margin-bottom: 20px;
}

.social-icons {
	display: flex;
	gap: 10px;
	margin-bottom: 20px;
}

.social-icons a {
	width: 36px;
	height: 36px;
	background-color: #f0f0f0;
	border-radius: 4px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #333;
	font-size: 16px;
}

.social-icons a.facebook {
	background-color: #3b5998;
	color: white;
}

.social-icons a.twitter {
	background-color: #1da1f2;
	color: white;
}

.social-icons a.instagram {
	background-color: #e1306c;
	color: white;
}

.social-icons a.linkedin {
	background-color: #0077b5;
	color: white;
}

.footer-section h4 {
	font-size: 22px;
	font-weight: 400;
	margin-bottom: 20px;
	color: #1a1a1a;
	position: relative;
}

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

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

.footer-links li a {
	color: #666;
	font-size: 14px;
	transition: all 0.3s ease;
}

.footer-links li a:hover {
	color: #f04e30;
	padding-left: 5px;
	text-decoration: none;
}

.footer-group {
	margin-bottom: 30px;
}

.footer-group:last-child {
	margin-bottom: 0;
}


.signup-form h4 {
	margin-bottom: 15px;
}

.signup-form .input-group-signup {
	display: flex;
	gap: 8px;
}

.signup-form input {
	border: 1px solid #ddd;
	border-radius: 4px;
	padding: 10px 15px;
	font-size: 14px;
	flex-grow: 1;
	height: 45px;
}

.signup-form button {
	background-color: #f04e30;
	border-color: #f04e30;
	color: #fff;
	font-size: 14px;
	font-weight: 500;
	border-radius: 4px;
	padding: 7px 20px;
	z-index: 5;
	flex-shrink: 0;
}

.signup-form button:hover {
	background-color: #e05a3b;
	border-color: #e05a3b;
}

.footer-bottom {
	padding: 15px 0;
	border-top: 1px solid #eee;
}

.footer-bottom p {
	margin-bottom: 0;
	font-size: 13px;
	color: #777;
}

.footer-bottom-links {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
}

.footer-bottom-links li {
	margin-right: 25px;
	position: relative;
}

.footer-bottom-links li:after {
	content: '';
	position: absolute;
	width: 1px;
	height: 12px;
	background-color: #ddd;
	right: -12px;
	top: 5px;
}

.footer-bottom-links li:last-child:after {
	display: none;
}

.footer-bottom-links li a {
	color: #777;
	font-size: 13px;
	transition: all 0.3s ease;
}

.footer-bottom-links li a:hover {
	color: #f04e30;
	text-decoration: none;
}

/* Responsive Styles */
@media (max-width: 991px) {


	.care-display-image,
	.care-display-text {
		margin-bottom: 30px;
	}

	.counter-box {
		margin-bottom: 30px;
	}

	.footer-section h4 {
		margin-top: 20px;
	}
}

@media (max-width: 767px) {

	.service-title {
		margin-bottom: 40px;
	}

	section {
		padding: 60px 0;
	}

	.cta-content {
		margin-bottom: 40px;
	}

	.footer-bottom-links {
		margin-bottom: 15px;
	}

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

	.footer-bottom p {
		text-align: center;
	}

	.text-md-end {
		text-align: center !important;
	}

	.footer-section .col-md-6:nth-child(odd) {
		clear: left;
	}
}

.about-us-banner {
	padding: 0;
}

.quality-certifications {
	margin-top: 20px;
}

.quality-certifications img {
	width: 100%;
	padding: 30px;
	background-color: #fff;
	border-radius: 10px;
	box-shadow: 0 5px 8px rgba(0, 0, 0, 0.1);
}

/* Beacon Section Styles */
.beacon-section {
	padding: 50px 0;
	background: #fff;
	position: relative;
	overflow: hidden;
}

.beacon-section .section-title {
	margin-bottom: 50px;
}

.beacon-section .section-title p {
	font-size: 18px;
	color: #666;
}

.doctor-carousel {
	position: relative;
	padding: 30px 0;
}

.doctor-card {
	background: linear-gradient(to right, #f8f9fa, #fff);
	border-radius: 8px;
	overflow: hidden;
	/* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08); */
	/* cursor: pointer; */
	transition: all 0.3s ease;
}

.doctor-carousel .owl-stage-outer {
	padding: 50px 0;
}

.doctor-carousel .owl-item {
	transition: all 0.3s ease;
	scale: 0.85;
	opacity: 0.5;
}

.doctor-carousel .owl-item.center {
	scale: 1.25;
	opacity: 1;
	position: relative;
	z-index: 5;
}

.card-inner {
	display: flex;
	align-items: center;
	position: relative;
	overflow: hidden;
	border-radius: 10px;
	aspect-ratio: 16 / 9;
}

.doctor-info {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	padding: 20px;
	display: flex;
	flex-direction: column;
	justify-content: end;
	align-items: center;
	text-align: center;
	color: #fff;
	background-color: rgba(0, 0, 0, 0.5);
}

.doctor-image {
	width: 100%;
}

.doctor-image img {
	width: 100%;
	object-fit: cover;
}

.doctor-info .play-btn {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.9);
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
	z-index: 2;
}

.doctor-image .play-btn i {
	color: #ff4444;
	font-size: 24px;
	margin-left: 4px;
}

.doctor-info p {
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 0;
}

.doctor-carousel-nav {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.doctor-carousel-nav button {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #f04e30;
	color: #fff;
	border: none;
	padding: 10px 20px;
	border-radius: 50%;
	cursor: pointer;
	transition: all 0.3s ease;

}

.doctor-carousel-nav button:hover {
	background-color: #e05a3b;
}

@media (max-width: 767px) {
	.beacon-section .section-title h2 {
		font-size: 32px;
	}

	.owl-item {
		transform: scale(0.9);
	}

	.owl-item.center {
		transform: scale(1);
	}
}

.mission-section {
	background-color: #f6f6f6;
}

.mission-content {
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
}

.mission-content p {
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 0;
	max-width: 550px;
}

.mission-section img {
	border-radius: 10px;
	box-shadow: 0 5px 8px rgba(0, 0, 0, 0.1);
}

.core-values-section .section-title p {
	max-width: 850px;
	margin: 0 auto;
	font-size: 15px;
	line-height: 1.6;
	margin-bottom: 30px;
}

.core-values-section .core-value-img {
	border-radius: 10px;
	box-shadow: 0 5px 8px rgba(0, 0, 0, 0.1);
	height: 100%;
	object-fit: cover;
}

/* Core Values Cards */
.value-card {
	text-align: center;
	border-radius: 10px;
	padding: 25px 20px;
	height: 100%;
	transition: all 0.3s ease;
}

.value-icon {
	margin-bottom: 15px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.value-icon img {
	height: 50px;
	width: auto;
}

.value-card h3 {
	font-size: 18px;
	font-weight: 600;
	color: #333;
	margin-bottom: 10px;
}

.value-card p {
	font-size: 14px;
	color: #666;
	line-height: 1.5;
	margin-bottom: 0;
}

@media (max-width: 767px) {
	.core-values-section .core-value-img {
		margin-bottom: 30px;
	}

	.value-card {
		margin-bottom: 20px;
	}
}

.award-section {
	padding: 50px 0;
	background-color: #fff;
}

.award-section .section-title {
	margin-bottom: 0px;
}

.award-card {
	position: relative;
	text-align: center;
	margin: 15px;
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
}


.award-card .leaf-left,
.award-card .leaf-right {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 40px !important;
	height: auto;
}

.award-card .leaf-left {
	left: 10px;
}

.award-card .leaf-right {
	right: 10px;
}

.award-content {
	padding: 40px 55px;
}

.award-content h3 {
	color: #FF4B4B;
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 15px;
}

.award-content p {
	color: #333;
	font-size: 16px;
	line-height: 1.5;
	margin: 0;
}

.award-carousel .owl-item {
	padding: 20px 0;
}

/* Responsive styles */
@media (max-width: 768px) {
	.award-card {
		padding: 30px 20px;
		margin: 15px;
	}

	.award-content {
		padding: 0 15px;
	}

	.award-content h3 {
		font-size: 24px;
	}

	.award-content p {
		font-size: 14px;
	}
}

/* ICU at Home Page Styles */
.icu-banner-section {
	padding: 0;
	position: relative;
}

.icu-banner {
	min-height: 600px;
	background-image: url('../images/icuAtHomeBanner.jpg');
	background-size: cover;
	background-position: center;
	position: relative;
	display: flex;
	align-items: center;
	padding: 80px 0;
}

.banner-content {
	color: #fff;
	padding: 0;
}

.banner-content h1 {
	font-size: 48px;
	font-weight: 700;
	margin-bottom: 10px;
	color: #fff;
}

.banner-content p {
	font-size: 20px;
	font-weight: 400;
	margin-bottom: 25px;
	color: #fff;
}

.rating {
	display: flex;
	align-items: center;
	gap: 10px;
}

.rating h2 {
	font-size: 36px;
	font-weight: 700;
	margin-bottom: 0;
	color: #fff;
}

.stars {
	color: #FFD700;
	font-size: 20px;
	margin-top: 5px;
}

.rating span {
	font-size: 16px;
	color: #fff;
	opacity: 0.9;
}

/* ICU Booking Form */
.booking-form {
	background-color: #fff;
	border-radius: 10px;
	box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
	padding: 30px 15px;
	width: 100%;
	max-width: 450px;
	margin-left: auto;
}

.booking-form h2 {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 16px;
}

.booking-form .form-label {
	font-size: 12px;
	font-weight: 400;
}

.booking-form .form-control,
.booking-form .form-select {
	border-radius: 4px;
	border: 1px solid #ddd;
	font-size: 14px;
}

.booking-form .form-text {
	font-size: 12px;
	color: #666;
	text-align: center;
}

.booking-form .form-text a {
	color: #f04e30;
	text-decoration: underline;
}

.booking-form .btn-primary {
	height: 50px;
	font-size: 16px;
	font-weight: 600;
	border-radius: 4px;
}

/* Responsive styles for ICU page */
@media (max-width: 991px) {
	.icu-banner {
		padding: 60px 0;
	}

	.banner-content {
		margin-bottom: 40px;
		text-align: center;
	}

	.rating {
		justify-content: center;
	}

	.booking-form {
		margin: 0 auto;
		max-width: 500px;
	}
}

@media (max-width: 767px) {
	.icu-banner {
		padding: 50px 0;
		min-height: auto;
	}

	.banner-content h1 {
		font-size: 36px;
	}

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

	.rating h2 {
		font-size: 30px;
	}

	.stars {
		font-size: 16px;
	}
}

/* Key Components Section */
.key-components-section {
	padding: 50px 0;
	background-color: #fff;
}

.component-title {
	font-size: 36px;
	font-weight: 700;
	color: #222;
	margin-bottom: 25px;
	line-height: 1.2;
}

.component-description {
	font-size: 18px;
	line-height: 1.6;
	color: #555;
	max-width: 550px;
}

.component-card {
	background-color: #f9f5f1;
	border-radius: 8px;
	padding: 25px 15px;
	text-align: center;
	height: 100%;
	transition: all 0.3s ease;
}

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

.component-icon {
	margin-bottom: 15px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.component-icon img {
	height: 40px;
	width: auto;
}

.component-card h3 {
	font-size: 15px;
	font-weight: 500;
	color: #333;
	margin-bottom: 0;
	line-height: 1.3;
}

/* Quality Indicators within Key Components */
.quality-indicator {
	text-align: center;
	padding: 20px 10px;
	border-radius: 8px;
	transition: all 0.3s ease;
}

.indicator-icon {
	margin-bottom: 15px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.indicator-icon img {
	height: 35px;
	width: auto;
	opacity: 0.7;
}

.quality-indicator p {
	font-size: 14px;
	line-height: 1.4;
	color: #555;
	margin: 0;
	font-weight: 500;
}

@media (max-width: 991px) {
	.component-title {
		font-size: 32px;
	}

	.component-description {
		margin-bottom: 40px;
	}

	.quality-indicator {
		margin-bottom: 20px;
	}
}

@media (max-width: 767px) {
	.component-card {
		margin-bottom: 15px;
	}

	.component-card h3 {
		font-size: 14px;
	}

	.quality-indicator p {
		font-size: 13px;
	}

	.indicator-icon {
		height: 40px;
	}

	.indicator-icon img {
		height: 30px;
	}
}

.why-choose-icu-section {
	padding: 50px 0;
	background-color: #f9f5f1;
}

.why-choose-title {
	margin-bottom: 15px;
}

.why-choose-description {
	font-size: 18px;
	color: #555;
	margin-bottom: 40px;
}

.why-choose-accordion {
	margin-top: 30px;
}

.why-choose-icu-section .accordion-item {
	border: none;
	background: transparent;
	margin-bottom: 15px;
	padding: 10px 0;
}

.why-choose-icu-section .accordion-button {
	background: transparent;
}


.why-choose-icu-section .accordion-body {
	background: transparent;
	padding-left: 45px;
}

.why-choose-icu-section .accordion-number {
	width: 30px;
	height: 30px;
	background-color: #fff;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-right: 15px;
	font-weight: 600;
	color: #333;
}

.why-choose-video {
	position: relative;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.why-choose-video img {
	width: 100%;
	border-radius: 12px;
}

.why-choose-play {
	position: absolute;
	bottom: 30px;
	right: 30px;
	display: flex;
	align-items: center;
	gap: 15px;
}

.why-choose-play-btn {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background-color: #fff;
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	color: #333;
	transition: all 0.3s ease;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.why-choose-play-btn:hover {
	transform: scale(1.1);
}

.why-choose-watch {
	color: #fff;
	font-weight: 500;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

@media (max-width: 991px) {
	.why-choose-icu-section {
		padding: 60px 0;
	}

	.why-choose-title {
		font-size: 32px;
	}

	.why-choose-video {
		margin-top: 40px;
	}
}

.critical-care-section {
	padding: 50px 0;
	background-color: #fff;
}

.critical-care-title {
	margin-bottom: 20px;
	line-height: 1.2;
}

.critical-care-description {
	font-size: 18px;
	line-height: 1.6;
	color: #555;
	margin-bottom: 40px;
}

.care-needs-list {
	margin-top: 30px;
	list-style: none;
	padding: 0;
}

.care-need-item {
	margin-bottom: 15px;
	padding-bottom: 15px;
	border-bottom: 1px solid #e0e0e0;
}

.care-need-item:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}


.care-need-item h3 {
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 0;
}

@media (max-width: 991px) {
	.critical-care-section {
		padding: 60px 0;
	}

	.critical-care-title {
		font-size: 32px;
	}

	.critical-care-section .booking-form {
		margin-top: 40px;
	}
}

@media (max-width: 767px) {
	.critical-care-section {
		padding: 40px 0;
	}

	.critical-care-title {
		font-size: 28px;
	}

	.care-need-item h3 {
		font-size: 16px;
	}
}

/* Meet Our Experts Section */
.experts-section {
	padding: 50px 0;
	background-color: #fff;
}

.experts-section h2 {
	text-align: center;
	margin-bottom: 10px;
}

.experts-section .subtitle {
	font-size: 18px;
	color: #555;
	text-align: center;
	margin-bottom: 40px;
}

.expert-card {
	background-color: #f9f9f9;
	border-radius: 8px;
	overflow: hidden;
	height: 100%;
}

.expert-image {
	width: 100%;
	aspect-ratio: 1;
	overflow: hidden;
}

.expert-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.expert-info {
	padding: 20px;
}

.expert-info h3 {
	font-size: 20px;
	font-weight: 600;
	color: #222;
	margin-bottom: 5px;
}

.designation {
	font-size: 1rem;
	color: #555;
	/* Default color for the text */
	margin-bottom: 10px;
}

.designation strong {
	font-weight: 700;
	/* Makes "Former Assistant Professor" bold */
	color: #000;
	/* Black color for emphasis */
}

.expert-info .designation {
	font-size: 14px;
	color: #666;
	margin-bottom: 5px;
}

.expert-info .experience {
	font-size: 14px;
	color: #666;
	margin-bottom: 0;
}

.team-info {
	margin-top: 50px;
}

.team-info p {
	font-size: 18px;
	color: #222;
	line-height: 1.5;
}

.team-info .highlight {
	color: #f04e30;
	font-weight: 600;
}

@media (max-width: 991px) {
	.experts-section {
		padding: 60px 0;
	}

	.expert-card {
		margin-bottom: 30px;
	}
}

@media (max-width: 767px) {
	.experts-section h2 {
		font-size: 32px;
	}

	.experts-section .subtitle {
		font-size: 16px;
	}

	.team-info p {
		font-size: 16px;
	}
}

/* Hear from the Healed Section */
.patient-testimonials-section {
	padding: 80px 0;
	background-color: #2B7CB5;
	color: #fff;
}

.patient-testimonials-section h2 {
	font-size: 42px;
	margin-bottom: 10px;
	color: #fff;
}

.patient-subtitle {
	font-size: 18px;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 0;
}

.patient-overall-rating {
	text-align: right;
}

.patient-overall-rating h3 {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 10px;
	color: rgba(255, 255, 255, 0.9);
}

.patient-rating-info {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 15px;
}

.patient-rating-number {
	font-size: 42px;
	font-weight: 700;
	line-height: 1;
}

.patient-rating-stars {
	color: #FFD700;
	font-size: 20px;
}

.patient-rating-count {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.9);
}

.patient-rating-count span {
	color: #FFD700;
}

.patient-review-card {
	background-color: #fff;
	border-radius: 10px;
	padding: 30px;
	height: 100%;
}

.patient-review-card h3 {
	font-size: 20px;
	font-weight: 600;
	color: #333;
	margin-bottom: 15px;
}

.patient-review-card .patient-rating-stars {
	font-size: 16px;
	color: #FFD700;
}

.patient-review-card p {
	color: #666;
	font-size: 15px;
	line-height: 1.6;
	margin-bottom: 15px;
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.patient-read-more {
	color: #2B7CB5;
	font-size: 14px;
	font-weight: 500;
	text-decoration: none;
	display: block;
	margin-bottom: 15px;
}

.patient-author {
	color: #333;
	font-size: 14px;
	font-weight: 500;
}

.patient-stats-row {
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	padding-top: 40px;
}

.patient-stat-item {
	display: flex;
	align-items: center;
	gap: 10px;
}

.patient-stat-item .icon {
	width: 50px;
	height: 50px;
	background-color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
}

.patient-stat-item .icon img {
	width: 25px;
}

.patient-stat-item h3 {
	font-size: 36px;
	font-weight: 700;
	margin-bottom: 0;
	color: #fff;
}

.patient-stat-item p {
	font-size: 16px;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 0;
	line-height: 1.4;
}

@media (max-width: 991px) {
	.patient-testimonials-section {
		padding: 60px 0;
	}

	.patient-overall-rating {
		text-align: left;
		margin-top: 30px;
	}

	.patient-rating-info {
		justify-content: flex-start;
	}

	.patient-review-card {
		margin-bottom: 30px;
	}
}

@media (max-width: 767px) {
	.patient-testimonials-section h2 {
		font-size: 32px;
	}

	.patient-rating-number {
		font-size: 32px;
	}

	.patient-stat-item {
		margin-bottom: 30px;
	}

	.patient-stat-item h3 {
		font-size: 28px;
	}
}

.faq-icu-section {
	padding: 50px 0;
	background-color: #f9f9f9;
}

.faq-icu-section .accordion-button,
.faq-icu-section .accordion-body {
	background-color: transparent;
}



/* Recent Blog Posts Section */
.recent-blogs-section {
	padding: 50px 0;
	background-color: #fff;
}

.recent-blogs-section h2 {
	margin-bottom: 40px;
}

.blog-card {
	background-color: #fff;
	border-radius: 8px;
	overflow: hidden;
	height: 100%;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
}

.blog-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.blog-image {
	width: 100%;
	height: 200px;
	overflow: hidden;
}

.blog-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

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

.blog-content {
	padding: 20px;
}

.blog-category {
	display: inline-block;
	padding: 4px 12px;
	background-color: #f8f9fa;
	color: #2B7CB5;
	font-size: 12px;
	font-weight: 500;
	border-radius: 4px;
	margin-bottom: 15px;
}

.blog-content h3 {
	font-size: 18px;
	font-weight: 600;
	line-height: 1.4;
	margin-bottom: 12px;
}

.blog-content h3 a {
	color: #222;
	text-decoration: none;
	transition: color 0.3s ease;
}

.blog-content h3 a:hover {
	color: #2B7CB5;
}

.blog-content p {
	font-size: 14px;
	color: #666;
	line-height: 1.6;
	margin-bottom: 0;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

@media (max-width: 991px) {
	.recent-blogs-section {
		padding: 60px 0;
	}

	.recent-blogs-section h2 {
		font-size: 32px;
		margin-bottom: 30px;
	}
}

@media (max-width: 767px) {
	.blog-card {
		margin-bottom: 20px;
	}

	.blog-content h3 {
		font-size: 16px;
	}
}

/* Contact Section Styles */
.contact-section {
	padding: 80px 0;
	background-color: #fff;
}

.map-block {
	background-color: #fff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
	height: 100%;
	position: relative;
}

.map-block iframe {
	height: 360px !important;
	width: 100% !important;
}

.testimonials-slider {
	background-color: #fff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
	height: 100%;
	position: relative;
}

.testimonials-slider .testimonial-carousel,
.testimonials-slider .testimonial-carousel .owl-stage-outer,
.testimonials-slider .testimonial-carousel .owl-stage-outer .owl-stage,
.testimonials-slider .testimonial-carousel .owl-stage-outer .owl-stage .owl-item {
	height: 100%;
}

.testimonials-slider .testimonial-slide {
	position: relative;
	height: 100%;
}

.testimonials-slider .testimonial-slide .testimonial-slide-image {
	height: 100%;
	width: 100%;
	object-fit: cover;
}

.testimonials-slider .testimonial-content {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 30px 30px 50px;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
	color: #fff;
}

.testimonials-slider .testimonial-content-inner {
	display: inline-flex;
	flex-direction: column;
	padding: 15px;
	background-color: #fff;
	border-radius: 10px;
	color: #000;
}

.testimonials-slider .testimonial-content h3 {
	color: #f04e30;
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 15px;
}

.testimonials-slider .testimonial-content p {
	font-size: 16px;
	margin-bottom: 10px;
}

.testimonials-slider .testimonial-author {
	font-size: 14px;
	font-style: italic;
	margin-bottom: 8px;
}

.testimonials-slider .learn-more {
	color: #f04e30;
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	align-self: flex-end;
}

.testimonials-slider .learn-more:hover {
	color: #000;
}

.testimonials-slider .learn-more i {
	transition: transform 0.3s ease;
}

.testimonials-slider .learn-more:hover i {
	transform: translateX(5px);
}

.testimonials-slider .testimonial-nav {
	position: absolute;
	top: 20px;
	right: 20px;
	display: flex;
	align-items: center;
	gap: 10px;
	z-index: 10;
}

.testimonials-slider .prev-btn,
.testimonials-slider .next-btn {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: rgba(0, 0, 0, 0.3);
	border: none;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
}

.testimonials-slider .prev-btn:hover,
.testimonials-slider .next-btn:hover {
	background-color: rgba(0, 0, 0, 0.5);
}

.testimonials-slider .testimonial-dots {
	display: flex;
	gap: 5px;
}

.testimonials-slider .testimonial-dots .owl-dot {
	width: 8px;
	height: 8px;
	background-color: rgba(255, 255, 255, 0.5);
	border-radius: 50%;
	transition: all 0.3s ease;
}

.testimonials-slider .testimonial-dots .owl-dot.active {
	background-color: #fff;
}

/* Contact Information Styles */
.contact-info {
	background-color: #f04e30;
	border-radius: 12px;
	padding: 40px 30px;
	height: 100%;
	color: #fff;
}

.contact-info h2 {
	font-size: 28px;
	margin-bottom: 24px;
	color: #fff;
}

.contact-details {
	display: flex;
	flex-direction: column;
}

.contact-item {
	background-color: #fff5f3;
	border: 1px solid #ffb1a3;
	border-radius: 10px;
	padding: 5px 5px;
	display: flex;
	align-items: center;
	gap: 10px !important;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.contact-item-icon {
	align-items: center;
	display: flex;
	gap: 10px !important;



}


.contact-item h3 {
	font-size: 14px;
	font-weight: 500;
	margin-bottom: 8px;
	color: rgba(255, 255, 255, 0.9);
}

.contact-item a {
	font-size: 16px;
	font-weight: bold;
	color: #f04e30;
	text-decoration: none;
}

.contact-item a:hover {
	text-decoration: underline;
}

.contact-item p {
	color: #fff;
	font-size: 16px;
	margin-bottom: 0;
}

.contact-info .contact-item-lg {
	margin-bottom: 16px;
}

.contact-info .contact-item-lg p {
	color: #fff;
	font-size: 14px;
	margin-bottom: 0;
}

.contact-info .contact-item-lg a {
	color: #fff;
	text-decoration: none;
	font-size: 20px;
	display: block;
	transition: opacity 0.3s ease;
}

.contact-info .contact-item-lg a:hover {
	opacity: 0.8;
}

.contact-info .contact-item-lg h3 {
	font-size: 28px;
	margin-bottom: 8px;
	color: #fff;
}


.icon-wrapper {
	width: 40px;
	height: 40px;
	background-color: #ffffff;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.icon-wrapper img {
	width: 24px;
	height: 24px;
}

.contact-item span {
	font-size: 14px;
	font-weight: bold;
	color: #333;
}

.icon-wrapper-header {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto;
	/* Center alignment */
}

.icon-wrapper-header img {
	width: 30px;
	/* Icon size */
	height: 30px;
}

.contact-item .contact-text-header {
	display: flex;
	flex-direction: column;
	align-items: start;
}

.contact-item.text-center {
	text-align: left !important;
}

@media (min-width: 992px) {
	.testimonials-slider {
		position: absolute;
		height: 100%;
		width: 100%;
		top: 0;
		left: 0;
	}

	.map-block {
		position: absolute;
		height: 100%;
		width: 100%;
		top: 0;
		left: 0;
	}

	.map-block iframe {
		height: 100% !important;
		width: 100% !important;
	}
}

@media (max-width: 991px) {
	.contact-section {
		padding: 60px 0;
	}

	.testimonial-slide {
		height: 400px;
	}

}

@media (max-width: 767px) {
	.testimonial-slide {
		height: 350px;
	}

	.testimonial-content {
		padding: 20px;
	}

	.testimonial-content h3 {
		font-size: 20px;
	}

	.contact-info h2 {
		font-size: 24px;
	}

	.contact-item a {
		font-size: 16px;
	}
}

/* Enquire Now Section */
.enquire-section {
	padding: 80px 0;
	background-color: #f9f9f9;
}

.enquire-section h2 {
	font-size: 36px;
	font-weight: 700;
	color: #222;
	margin-bottom: 15px;
	text-align: center;
}

.enquire-description {
	text-align: center;
	color: #666;
	font-size: 16px;
	line-height: 1.6;
	max-width: 800px;
	margin: 0 auto 50px;
}

.enquire-form {
	background-color: #fff;
	padding: 40px;
	border-radius: 12px;
	box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
	max-width: 1000px;
	margin: 0 auto;
}

.enquire-form .form-group {
	margin-bottom: 0;
}

.enquire-form label {
	font-size: 14px;
	color: #333;
	font-weight: 500;
	margin-bottom: 8px;
}

.enquire-form .form-control,
.enquire-form .form-select {
	height: 48px;
	border: 1px solid #e0e0e0;
	border-radius: 6px;
	padding: 8px 16px;
	font-size: 14px;
	color: #333;
	background-color: #fff;
	transition: all 0.3s ease;
}

.enquire-form .form-control:focus,
.enquire-form .form-select:focus {
	border-color: #f04e30;
	box-shadow: 0 0 0 3px rgba(240, 78, 48, 0.1);
}

.enquire-form textarea.form-control {
	height: auto;
	resize: vertical;
}

.enquire-form .btn-primary {
	height: 48px;
	font-size: 16px;
	font-weight: 600;
	padding: 0 30px;
	background-color: #f04e30;
	border-color: #f04e30;
	transition: all 0.3s ease;
}

.enquire-form .btn-primary:hover {
	background-color: #e03e20;
	border-color: #e03e20;
	transform: translateY(-2px);
}

@media (max-width: 991px) {
	.enquire-section {
		padding: 60px 0;
	}

	.enquire-section h2 {
		font-size: 32px;
	}

	.enquire-form {
		padding: 30px;
	}
}

@media (max-width: 767px) {
	.enquire-section {
		padding: 40px 0;
	}

	.enquire-section h2 {
		font-size: 28px;
	}

	.enquire-description {
		font-size: 15px;
		margin-bottom: 30px;
	}

	.enquire-form {
		padding: 20px;
	}

	.enquire-form .form-control,
	.enquire-form .form-select {
		height: 44px;
	}

	.enquire-form .btn-primary {
		height: 44px;
		font-size: 15px;
	}
}

/* Why Choose Nursing Care Section */
.why-choose-nursing-care-section {
	padding: 50px 0;
	background-color: #f9f9f9;
}

.why-choose-nursing-care-section .why-choose-title {
	margin-bottom: 20px;
}

.why-choose-nursing-care-section .why-choose-description {
	font-size: 18px;
	line-height: 1.6;
	max-width: 800px;
	margin: 0 auto;
}

.why-choose-nursing-care-section .feature-card {
	background-color: #fff;
	border-radius: 10px;
	padding: 40px 30px;
	height: 100%;
	transition: all 0.3s ease;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.why-choose-nursing-care-section .feature-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.why-choose-nursing-care-section .feature-icon {
	margin-bottom: 25px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.why-choose-nursing-care-section .feature-icon img {
	height: 120px;
	width: auto;
}

.why-choose-nursing-care-section .feature-card h3 {
	font-size: 22px;
	font-weight: 600;
	margin-bottom: 15px;
}

.why-choose-nursing-care-section .feature-card p {
	font-size: 16px;
	margin-bottom: 0;
}

@media (max-width: 991px) {
	.why-choose-nursing-care-section {
		padding: 60px 0;
	}

	.why-choose-nursing-care-section .why-choose-title {
		font-size: 36px;
	}

	.why-choose-nursing-care-section .feature-card {
		margin-bottom: 30px;
	}
}

@media (max-width: 767px) {
	.why-choose-nursing-care-section .why-choose-title {
		font-size: 32px;
	}

	.why-choose-nursing-care-section .why-choose-description {
		font-size: 16px;
	}

	.why-choose-nursing-care-section .feature-card {
		padding: 30px 20px;
	}

	.why-choose-nursing-care-section .feature-card h3 {
		font-size: 20px;
	}
}

/* Blog Page Styles */
.blog-banner {
	background: linear-gradient(rgba(0, 123, 255, 0.1), rgba(0, 123, 255, 0.1)), url('../images/blog-banner.jpg');
	background-size: cover;
	background-position: center;
	padding: 80px 0;
	margin-bottom: 60px;
}

.blog-banner h1 {
	font-size: 48px;
	color: #333;
	margin-bottom: 20px;
	font-weight: 700;
}

.blog-banner p {
	font-size: 18px;
	color: #666;
	margin-bottom: 0;
}

.search-box .input-group {
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	border-radius: 50px;
	overflow: hidden;
}

.search-box .form-control {
	border: none;
	padding: 15px 25px;
	font-size: 16px;
}

.search-box .btn {
	padding: 15px 30px;
	border-radius: 0 50px 50px 0;
}

/* Featured Posts Section */
/* .featured-posts {
	margin-bottom: 60px;
} */

.featured-posts h2 {
	font-size: 36px;
	margin-bottom: 30px;
	color: #333;
	font-weight: 600;
}

.featured-main-post {
	position: relative;
	height: 100%;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
}

.featured-main-post:hover {
	transform: translateY(-5px);
}

.featured-main-post img {
	width: 100%;
	height: 424px;
	object-fit: cover;
}

.featured-main-post .post-content {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 30px;
	background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
	color: #fff;
}

.featured-posts .post-category {
	display: inline-block;
	padding: 5px 15px;
	background-color: #f04e30;
	color: #fff;
	border-radius: 20px;
	font-size: 14px;
	margin-bottom: 15px;
}

.featured-main-post h3 {
	font-size: 28px;
	margin-bottom: 15px;
}

.featured-main-post h3 a {
	color: #fff;
	text-decoration: none;
}

.featured-main-post p {
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 15px;
}

.post-meta {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.8);
}

.post-meta span {
	margin-right: 20px;
}

.post-meta i {
	margin-right: 5px;
}

.featured-side-post {
	aspect-ratio: 16 / 10;
}

.featured-side-post {
	display: block;
	position: relative;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	height: 100%;
	transition: transform 0.3s ease;
}

.featured-side-post:hover {
	transform: translateY(-5px);
}

.featured-side-post img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.featured-side-post .post-content {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 20px;
	background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
	color: #fff;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: end;
}

.featured-side-post .post-content p {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.featured-side-post h4 {
	font-size: 18px;
	max-width: 400px;
	line-height: 1.35;
	font-weight: bold;
	margin: 10px 0;
}

.featured-side-post h4 a {
	color: #fff;
	text-decoration: none;
}

/* Latest Posts Section */
.latest-posts {
	padding: 60px 0;
	background-color: #f9f9f9;
}

.latest-posts h2 {
	font-size: 36px;
	margin-bottom: 40px;
	color: #333;
	font-weight: 600;
}

.blog-card {
	background: #fff;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
}

.blog-card:hover {
	transform: translateY(-5px);
}

.blog-image {
	height: 200px;
	overflow: hidden;
}

.blog-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
	transform: scale(1.1);
}

.blog-content {
	padding: 25px;
}

.blog-content h3 {
	font-size: 20px;
	margin: 15px 0;
}

.blog-content h3 a {
	color: #333;
	text-decoration: none;
	transition: color 0.3s ease;
}

.blog-content h3 a:hover {
	color: #f04e30;
}

.blog-content p {
	color: #666;
	margin-bottom: 15px;
	line-height: 1.6;
}

.blog-meta {
	font-size: 14px;
	color: #888;
}

.blog-meta span {
	margin-right: 15px;
}

/* Responsive Styles */
@media (max-width: 991px) {
	.blog-banner {
		padding: 60px 0;
	}

	.blog-banner h1 {
		font-size: 36px;
	}

	.featured-main-post img {
		height: 300px;
	}

	.featured-main-post h3 {
		font-size: 24px;
	}

}

@media (max-width: 767px) {
	.blog-banner {
		padding: 40px 0;
	}

	.blog-banner h1 {
		font-size: 28px;
	}

	.featured-main-post img {
		height: 250px;
	}

	.featured-main-post h3 {
		font-size: 20px;
	}

	.category-card {
		margin-bottom: 30px;
	}

	.blog-card {
		margin-bottom: 30px;
	}

	.featured-side-post .post-content p {
		display: none;
	}

	.featured-side-post h4 {
		max-width: unset;
		font-weight: 600;
	}

	.featured-side-post .post-content {
		padding: 15px;
	}
}

/* Blog Details Page Styles */
.blog-details-section {
	padding: 50px 0;
	background-color: #fff;
}

.blog-post {
	background: #fff;
	border-radius: 10px;
	overflow: hidden;
	margin-bottom: 0;
}

.post-header {
	margin-bottom: 30px;
}

.post-header h1 {
	font-size: 36px;
	font-weight: 700;
	color: #333;
	margin: 15px 0;
	line-height: 1.3;
}

.post-image {
	margin-bottom: 30px;
}

.post-image img {
	width: 100%;
	border-radius: 10px;
}

.blog-details-section .post-content {
	color: #666;
	line-height: 1.8;
}

.blog-details-section .post-content .lead {
	font-size: 20px;
	color: #333;
	margin-bottom: 30px;
	line-height: 1.6;
}

.blog-details-section .post-content h2 {
	font-size: 24px;
	color: #333;
	margin: 30px 0 15px;
}

.blog-details-section .post-content h3 {
	font-size: 20px;
	color: #333;
}

.blog-details-section .post-content h4 {
	font-size: 18px;
	color: #333;
}

.blog-details-section .post-content p {
	margin-bottom: 20px;
}

.blog-details-section .post-content blockquote {
	background-color: #f9f9f9;
	border-left: 4px solid #f04e30;
	padding: 20px;
	margin: 30px 0;
	border-radius: 0 10px 10px 0;
}

.blog-details-section .post-content blockquote p {
	font-size: 18px;
	font-style: italic;
	color: #333;
	margin-bottom: 10px;
}

.blog-details-section .post-content blockquote cite {
	font-size: 14px;
	color: #666;
}

.blog-details-section .post-content .info-box {
	background-color: #f9f9f9;
	border-radius: 10px;
	padding: 25px;
	margin: 30px 0;
}

.blog-details-section .post-content .info-box h2 {
	font-size: 20px;
	color: #333;
	margin-bottom: 15px;
	margin-top: 0;
}

.blog-details-section .post-content .info-box ul {
	padding-left: 20px;
	margin-bottom: 0;
}

.blog-details-section .post-content .info-box ul li {
	margin-bottom: 10px;
	color: #666;
}

/* Responsive Styles */
@media (max-width: 991px) {
	.blog-details-section .post-header h1 {
		font-size: 32px;
	}
}

@media (max-width: 767px) {
	.blog-details-section .post-header h1 {
		font-size: 28px;
	}

	.blog-details-section .post-content .lead {
		font-size: 18px;
	}

	.blog-details-section .post-content h2 {
		font-size: 22px;
	}
}


/* Legal Pages (Privacy Policy & Terms and Conditions) */
.legal-page-section {
	padding: 80px 0;
	background-color: #fff;
}

.legal-page-section .content-wrapper {
	max-width: 900px;
	margin: 0 auto;
	padding: 40px;
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.legal-page-section h1 {
	font-size: 36px;
	color: #333;
	margin-bottom: 10px;
	font-weight: 700;
}

.legal-page-section .last-updated {
	color: #666;
	font-size: 14px;
	margin-bottom: 30px;
}

.legal-page-section .section-block {
	margin-bottom: 40px;
}

.legal-page-section .section-block h2 {
	font-size: 24px;
	color: #333;
	margin-bottom: 20px;
	font-weight: 600;
}

.legal-page-section .section-block h3 {
	font-size: 20px;
	color: #444;
	margin: 20px 0 15px;
	font-weight: 500;
}

.legal-page-section .section-block p {
	color: #666;
	line-height: 1.8;
	margin-bottom: 15px;
}

.legal-page-section .section-block ul {
	padding-left: 20px;
	margin-bottom: 15px;
}

.legal-page-section .section-block ul li {
	color: #666;
	line-height: 1.8;
	margin-bottom: 10px;
}

.legal-page-section .contact-info {
	background-color: #f9f9f9;
	padding: 20px;
	border-radius: 8px;
	margin-top: 15px;
}

.legal-page-section .contact-info p {
	margin-bottom: 5px;
}

/* Responsive Styles */
@media (max-width: 991px) {
	.legal-page-section .content-wrapper {
		padding: 30px;
	}

	.legal-page-section h1 {
		font-size: 32px;
	}

	.legal-page-section .section-block h2 {
		font-size: 22px;
	}

	.legal-page-section .section-block h3 {
		font-size: 18px;
	}
}

@media (max-width: 767px) {
	.legal-page-section {
		padding: 60px 0;
	}

	.legal-page-section .content-wrapper {
		padding: 20px;
	}

	.legal-page-section h1 {
		font-size: 28px;
	}

	.legal-page-section .section-block {
		margin-bottom: 30px;
	}
}

/* Blog Sidebar Styles */

.sidebar-widget {
	background-color: #fff;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	padding: 25px;
	margin-bottom: 30px;
}

.widget-title {
	margin-bottom: 20px;
	position: relative;
	padding-bottom: 10px;
}

.widget-title:after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 50px;
	height: 2px;
	background-color: #f45a33;
}

.widget-title h4 {
	font-size: 20px;
	font-weight: 600;
	margin: 0;
}

/* Recent Posts Widget */
.recent-post {
	display: flex;
	margin-bottom: 20px;
}

.recent-post:last-child {
	margin-bottom: 0;
}

.recent-post .post-thumb {
	width: 80px;
	height: 80px;
	margin-right: 15px;
	flex-shrink: 0;
}

.recent-post .post-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 5px;
}

.recent-post .post-info {
	flex-grow: 1;
}

.recent-post .post-info h5 {
	font-size: 16px;
	margin: 0 0 8px;
	line-height: 1.4;
}

.recent-post .post-info h5 a {
	color: #333;
	text-decoration: none;
	transition: all 0.3s ease;
}

.recent-post .post-info h5 a:hover {
	color: #f45a33;
}

.recent-post .post-info span {
	font-size: 12px;
	color: #888;
}

.recent-post .post-info span i {
	margin-right: 5px;
}

/* Responsive Styles for Blog Details Page */
@media (min-width: 992px) {
	.blog-sidebar {
		position: sticky;
		top: 120px;
	}
}

@media (min-width: 1200px) {
	.blog-sidebar {
		top: 70px;
	}
}

@media (max-width: 991px) {
	.blog-details-section {
		padding: 60px 0;
	}

	.blog-sidebar {
		margin-top: 50px;
	}

	.author-bio {
		flex-direction: column;
		text-align: center;
	}

	.author-bio .author-image {
		margin: 0 auto 20px;
	}

	.author-bio .author-social {
		justify-content: center;
	}
}

@media (max-width: 767px) {
	.post-header h1 {
		font-size: 28px;
	}

	.post-meta {
		flex-wrap: wrap;
	}

	.post-meta span {
		margin-right: 15px;
		margin-bottom: 10px;
	}

}

/* Query Form Widget */
.query-form-widget .widget-title h4 {
	color: #444;
	font-size: 24px;
	margin-bottom: 15px;
}

.query-form-widget .form-label {
	color: #555;
	font-weight: 500;
	margin-bottom: 5px;
	font-size: 14px;
}

.query-form-widget .form-control {
	border: none;
	border-bottom: 1px solid #ddd;
	border-radius: 0;
	padding: 8px 0;
	font-size: 14px;
	background-color: transparent;
	box-shadow: none;
}

.query-form-widget .form-control:focus {
	border-color: #f45a33;
	box-shadow: none;
}

.query-form-widget .form-control::placeholder {
	color: #999;
	font-size: 14px;
}

.query-form-widget .btn-primary {
	margin-top: 10px;
	background-color: #f45a33;
	border-color: #f45a33;
	border-radius: 25px;
	padding: 10px 20px;
	font-weight: 500;
	transition: all 0.3s ease;
}

.query-form-widget .btn-primary:hover {
	background-color: #e04825;
	border-color: #e04825;
}

@media (max-width: 767px) {
	.query-form-widget .widget-title h4 {
		font-size: 22px;
	}
}

/* Post Meta Details Section */
.post-meta-details {
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-bottom: 1px solid #eee;
	padding-bottom: 15px;
	margin: 15px 0 20px;
}

.post-author-date {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.post-author {
	font-weight: 600;
	color: #333;
}

.post-category {
	color: #f45a33;
}

.post-date {
	color: #666;
}

.post-share-links {
	display: flex;
	gap: 8px;
}

.share-link {
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	color: #fff;
	font-size: 14px;
	transition: all 0.3s ease;
}

.share-link.copy-link {
	background-color: #666;
}

.share-link.facebook {
	background-color: #3b5998;
}

.share-link.linkedin {
	background-color: #0077b5;
}

.share-link.twitter {
	background-color: #1da1f2;
}

.share-link.email {
	background-color: #777;
}

.share-link.whatsapp {
	background-color: #25d366;
}

.share-link:hover {
	opacity: 0.8;
	transform: translateY(-2px);
	color: #fff;
}

@media (max-width: 767px) {
	.post-meta-details {
		flex-direction: column;
		align-items: flex-start;
		gap: 15px;
	}

	.post-author-date {
		flex-direction: column;
		gap: 5px;
	}

	.post-share-links {
		width: 100%;
		justify-content: space-between;
	}
}

/* Enhanced Dropdown Menu Styles */
.dropdown-menu {
	background: #fff;
	border: none;
	border-radius: 0;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	padding: 0;
	margin-top: 5px;
	min-width: 220px;
}

.dropdown-menu .dropdown-item {
	padding: 12px 20px;
	font-size: 14px;
	color: #444;
	font-weight: 500;
	border-bottom: 1px solid #f5f5f5;
	transition: all 0.3s ease;
}

.dropdown-menu .dropdown-item:last-child {
	border-bottom: none;
}

.dropdown-menu .dropdown-item:hover {
	background-color: #f8f9fa;
	color: #f04e30;
	padding-left: 25px;
}

.dropdown-menu .dropdown-item.active {
	background-color: #f04e30;
	color: #fff;
}

.dropdown-toggle::after {
	margin-left: 8px;
	vertical-align: middle;
}

@media (max-width: 991px) {
	.dropdown-menu {
		border: none;
		box-shadow: none;
		padding-left: 15px;
	}

	.dropdown-menu .dropdown-item {
		padding: 8px 15px;
	}
}


.banner-inner {
	background-color: #000;
	color: #fff;
	overflow: hidden;
	position: relative;
}

.banner-inner-top {
	padding: 60px 0;
	display: flex;
	height: 100%;
	min-height: 70vh;
	align-items: center;
}

.about-banner-img {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	object-fit: cover;
	object-position: right;
}


.banner-quote {
	padding: 20px 0;
	position: relative;
}

.quote-marks {
	font-size: 80px;
	line-height: 1;
	font-family: Georgia, serif;
	opacity: 0.3;
	position: absolute;
	top: -20px;
	left: -15px;
}

.closing-quote {
	position: absolute;
	bottom: 60px;
	right: 0;
}

.quote-text {
	font-size: 24px;
	line-height: 1.6;
	font-weight: 500;
	position: relative;
	z-index: 2;
	margin-bottom: 0;
}

.quote-text .highlight {
	color: #f04e30;
	font-weight: 700;
}

.quote-author {
	margin-top: 30px;
}

.quote-author h3 {
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 5px;
}

.quote-author p {
	font-size: 16px;
	opacity: 0.7;
}

.doctor-image {
	position: relative;
	height: 100%;
}

.doctor-image img {
	border-radius: 15px;
	/* box-shadow: 0 0 20px rgba(0, 0, 0, 0.3); */
	position: relative;
	z-index: 2;
}

@media (max-width: 991px) {
	.banner-inner-top {
		min-height: auto;
	}

	.about-banner-img {
		position: relative;
	}

	.banner-quote {
		padding: 0;
		text-align: center;
	}

	.closing-quote {
		position: static;
		text-align: center;
		display: block;
		height: 40px;
	}

	.quote-text {
		font-size: 20px;
	}

	.doctor-image {
		margin-top: 30px;
		text-align: center;
	}
}

#reviewModal .modal-header {
	background-color: #f04e30;
	color: #fff;
}

#reviewModal .btn-close {
	--bs-btn-close-color: #fff;
	--bs-btn-close-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e");

}

.join-us-highlight {
	color: #f04e30;
	font-size: 40px;
	line-height: 1.3;
	margin-bottom: 0;
}






@media screen and (max-width: 574px) {
	.stats-item.primary-stats {
		display: none;
	}

	.stats-item:nth-child(2) .stats-inner {
		background-color: #f04e30 !important;
		color: #fff;
	}

	.stats-item:nth-child(2) p {
		color: #fff;
	}
}





/* Mobile-specific styles for header buttons */
@media (max-width: 991px) {
	.mobile-header-buttons {
		display: flex;
		gap: 8px;
		justify-content: center;
	}

	.mobile-header-buttons .btn {
		display: inline-block;
		width: 100%;
	}

	.header-buttons {
		display: none;
	}

	.navbar-toggler:focus {
		box-shadow: none;
	}

	.mobile-header-buttons.mt-3 {
		margin-top: 0px !important;
	}

	/* .navbar .container {
	  display: flex;
	  flex-direction: column;
	  align-items: center;
	  position: relative;
	} */

	.navbar-brand {
		order: 2;
	}

	.navbar-toggler {
		order: 1;
		margin-right: 8px;
	}

	.navbar-collapse {
		order: 4;
	}

	.mobile-header-buttons {
		order: 3;
		margin-left: auto;
	}

	.mobile-header-buttons .btn {
		font-size: 12px;
	}

	.navbar-toggler-icon {
		width: 1.25em;
		height: 1.25em;
	}

	.navbar-toggler {
		padding: 0 5px;
		border-radius: 2px;
	}

	.navbar-collapse {
		align-self: normal;
	}
}

@media screen and (min-width: 992px) {
	.d-flex.header-buttons.d-lg-block {
		display: flex !important;
	}
}



@media (max-width: 767px) {
	.mobile-header-buttons {
		flex-wrap: wrap;
		width: 220px;
	}

	.mobile-header-buttons .btn {
		width: auto;
		flex: 1;
	}

	.footer-top .g-5,
	.footer-top .gy-5 {
		--bs-gutter-y: 1rem !important;
		--bs-gutter-x: 1rem !important;
	}
}

@media (max-width: 574px) {
	.navbar-brand {
		margin-right: 0;
	}

	.navbar-brand img {
		max-height: 45px;
	}

	.mobile-header-buttons {
		width: 164px;
		gap: 5px;
	}

	.mobile-header-buttons .btn {
		font-size: 10px;
		padding: 2px 6px;
	}

	.navbar-toggler {
		padding: 0;
		border-radius: 0;
		border: 0;
		height: 16px;
	}

	.navbar-toggler-icon {
		width: 1rem;
		height: 1rem;
	}
}

@media (max-width: 365px) {
	.navbar-brand img {
		max-height: 38px;
	}
}

@media (max-width: 330px) {
	.navbar-brand img {
		max-height: 32px;
	}
}




/* 10-05-2025 edit */
.contact-item-lg h3 {
	color: #ffffff;
	background-color: #f04e30;
	border-radius: 5px;
	font-size: 18px;
}

.contact-list {
	margin-top: 15px;
}

.contact-entry {
	display: flex;
	align-items: center;
	margin-bottom: 15px;
}

.icon-wrapper {
	width: 50px;
	height: 50px;
	background-color: #ffffff;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 10px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.icon-wrapper img {
	width: 30px;
	height: 30px;
}

.contact-entry div {
	display: flex;
	flex-direction: column;
}

.contact-entry span {
	font-size: 15px;
	/* font-weight: bold; */
	color: #fff;
}


@media only screen and (max-width: 767px) {
	.header .container {
		flex-direction: column;
		align-items: start;
	}

	.mobile-header-buttons {
		width: 100%;
	}

	.mobile-header-buttons {
		flex-wrap: nowrap;
	}

	.icon-wrapper-header img {
		width: 25px;
		height: 25px;
	}

	.contact-item span {
		font-size: 13px;
	}

	.contact-item a {
		font-size: 14px;
	}

	.contact-item {
		gap: 5px !important;
		padding: 5px 8px;
	}

	.navbar-brand {
		order: 1;
	}

	.navbar-brand img {
		max-height: 60px;
	}

	.navbar-toggler {
		position: absolute;
		right: 20px;
		top: 20px;
		height: 45px;
	}

	.navbar-toggler-icon {
		width: 2rem;
		height: 2rem;
	}
}



.whatsapp-float {
	position: fixed;
	bottom: 120px;
	right: 20px;
	z-index: 1000;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;

}

.whatsapp-float img {
	width: 60px;
	height: 60px;
}








/* 26-05-25 styles */

.specialist-section {
	padding: 50px 0;
	background-color: #f9f9f9;
}

.doctor-card {
	display: flex;
	align-items: flex-start;
	background: #F9F9F9;
	/* border: 1px solid #ddd; */
	border-radius: 8px;
	overflow: hidden;
	padding: 20px 0;
	/* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
	flex-wrap: wrap;
}

.doctor-image {
	width: 100%;
	max-width: 290px;
	margin-bottom: 20px;
}

.doctor-image img {
	width: 100%;
	height: auto;
	border-radius: 15px;
}

.doctor-details {
	flex: 1;
	padding-left: 20px;
}

.doctor-details h3 {
	font-size: 1.8rem;
	color: #f04e30;
	margin-bottom: 10px;
	font-weight: 800;
}

.doctor-details .qualification,
.doctor-details .designation,
.doctor-details .registration {
	font-size: 1rem;
	color: #555;
	margin-bottom: 10px;
}

.doctor-details h4 {
	font-size: 1.2rem;
	color: #333;
	margin-top: 20px;
	margin-bottom: 10px;
}

.specialties-list {
	display: flex;
	flex-wrap: wrap;
	/* Ensures wrapping on smaller screens */
	gap: 20px;
}

.specialties-column {
	flex: 1;
	min-width: 200px;
	/* Ensures columns stack on smaller screens */
}

.specialties-column ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.specialties-column li {
	font-size: 1rem;
	color: #555;
	margin-bottom: 5px;
	display: flex;
	align-items: center;
}

.specialties-column li::before {
	content: "✔";
	color: #f04e30;
	margin-right: 10px;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
	.doctor-card {
		flex-direction: column;
		align-items: center;
		text-align: center;
		padding: 0;
	}

	.doctor-image {
		margin-bottom: 20px;
		margin-top: 0;
	}

	.doctor-details {
		padding-left: 0;
	}

	.specialties-list {
		flex-direction: column;
		gap: 0;
		padding: 10px;
		text-align: left;
		border: 1px solid #f04e30;
		background-color: #ffece8;
		border-radius: 10px;
	}

	.specialties-column {
		min-width: 100%;
		/* Ensures full width for smaller screens */
	}

	.doctor-details .registration {
		justify-content: center;
		flex-direction: column;
		align-items: center;
		gap: 10px;
	}

	.registration-icon img {
		margin-right: 0;
	}

	.clinic-timings {
		gap: 10px !important;
		/* Adjusts spacing for smaller screens */
	}

}

@media (max-width: 576px) {
	.doctor-details h3 {
		font-size: 1.5rem;
	}

	.doctor-details .qualification,
	.doctor-details .designation,
	.doctor-details .registration {
		font-size: 0.9rem;
	}

	.doctor-details h4 {
		font-size: 1rem;
	}

	.specialties-column li {
		font-size: 0.9rem;
	}
}



.registration {
	display: flex;
	align-items: flex-start;
	/* Aligns icon and text properly */
	font-size: 1rem;
	color: #555;
	margin-bottom: 10px;
}

.registration-icon img {
	width: 40px;
	/* Adjust size as needed */
	height: 40px;
	margin-right: 10px;
	/* Adds spacing between the icon and text */
}

.registration-text {
	display: flex;
	flex-direction: column;
	/* Stacks the text and number vertically */
}

.registration-text strong {
	color: #f04e30;
	/* Red color for "Registration Number" */
}

.registration-number {
	color: #555;
	/* Default color for the registration number */
	margin-top: 5px;
	/* Adds spacing between the text and number */
}









.doctor-profile {
	padding: 0;
	border-radius: 15px;
	background-color: #F9F9F9;
}

.profile-card {
	display: flex;
	align-items: center;
	padding: 20px;
	background: #f04e30;
	border-radius: 15px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.profile-image img {
	width: 320px;
	height: auto;
	border-radius: 15px;
	margin-right: 20px;
}

.profile-details {
	flex: 1;
}

.doctor-name {
	font-size: 1.8rem;
	color: #fff;
	margin-bottom: 10px;
	font-weight: bold;
}

.doctor-qualification {
	font-size: 1rem;
	color: #fff;
	margin-bottom: 20px;
}

.clinic-timings-title {
	font-size: 1.2rem;
	color: #fff;
	margin-bottom: 10px;
}

.clinic-timings {
	display: flex;
	align-items: center;
	gap: 20px;
	/* Adds spacing between morning and evening timings */
	font-size: 1rem;
	color: #fff;
}

.timing {
	display: flex;
	align-items: center;
}

.timing img {
	width: 15px;
	height: 15px;
	margin-right: 10px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
	.profile-card {
		flex-direction: column;
		/* Stack image and details vertically */
		text-align: center;
	}

	.profile-image img {
		margin: 0 auto 20px;
		/* Center the image and add spacing below */
		width: 100%;
		/* Full width on smaller screens */
	}

	.doctor-name {
		font-size: 1.5rem;
		/* Adjust font size for smaller screens */
	}

	.doctor-qualification {
		font-size: 0.9rem;
		/* Adjust font size for smaller screens */
	}

	.clinic-timings-title {
		font-size: 1rem;
		/* Adjust font size for smaller screens */
	}

	.clinic-timings {
		font-size: 0.7rem;
		/* Adjust font size for smaller screens */
		justify-content: center;
		gap: 10px;
	}

	.registration {
		justify-content: center;
	}

	.doctor-image img {
		width: 100%;
		height: auto;
		border-radius: 15px;
		margin-right: 0;
		/* Remove right margin for smaller screens */
	}


}




.team-text {
	font-size: 40px !important;
}









/* 27-05-25 slider  */
.our-specialists-heading {
	margin-bottom: 30px;
}

.card-slider {
	min-height: 300px;
	border: 0;
	box-shadow: none;
	background-color: #f1f1f1;
}

.card-slider .card-body {
	padding: 16px 20px 16px 16px;
	color: #6e6f74;
}

.card-slider .card-text {
	font-size: 14px;
	color: #6e6f74;
	line-height: 1.15;
}

.card-slider .card-body .card-title {
	font-size: 1.2rem;
	font-weight: bold;
	color: #f04e30;
}

.card-slider .card-body .more-details {
	display: none;
	justify-content: space-between;
}

.card-slider .card-body .more-details-registration-icon {
	width: 40px;
}

.card-slider .card-body .more-details .more-details-text {
	width: 40%;
}

.card-slider .card-body .more-details-registration-text span {
	font-weight: 600;
}

.card-slider .card-body .more-details .more-details-text span {
	font-weight: 600;
}

.card-slider .card-body .more-details p {
	font-size: 14px;
	line-height: 1.25;
}

.card-slider .card-body .more-details p span {
	display: block;
	color: #f04e30;
}



.card-slider .text-danger {
	color: #f04e30 !important;
}

.card-slider .list-unstyled li {
	font-size: 14px;
	margin-bottom: 0;
	display: flex;
	align-items: center;
	line-height: 1.15;
	color: #555;
}

.card-slider .list-unstyled li::before {
	content: "✔";
	color: #f04e30;
	margin-right: 10px;
}

.card-slider .list-unstyled li i {
	color: #28a745;
	margin-right: 10px;
}

.card-slider .clinic-timings li::before {
	content: none;
}

.our-specialists-container {
	overflow: hidden;
}

.our-specialists-container .owl-carousel {
	position: relative;
	display: block;
	margin: 0 auto;
}

.our-specialists-container .owl-carousel .owl-stage-outer {
	overflow: visible;
	padding: 0px 0px 0px;
}

.our-specialists-container .owl-stage {
	min-height: 530px;
	padding-top: 90px;
}

.our-specialists-container .owl-carousel .owl-item {
	transition: all 0.3s ease-in-out;
	transform: scale(0.75);
	opacity: 0.65;
}

.our-specialists-container .owl-item.active.center {
	transform: scale(1.25);
	z-index: 5;
	opacity: 1;
}

.our-specialists-container .owl-item.active.center .card-slider {
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.our-specialists-container .owl-item.active.center .card-slider .card-body .more-details {
	display: flex;
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	color: #fff;
	background-color: #f04e30;
	font-size: 12px;
}

@media screen and (min-width:1660px) {

	.our-specialists-container .owl-carousel {
		max-width: 620px;
	}
}

@media screen and (max-width:1659px) {
	.our-specialists-container .owl-carousel {
		max-width: 550px;
	}
}

@media screen and (max-width:1440px) {
	.our-specialists-container .owl-carousel {
		max-width: 500px;
	}

	.our-specialists-container .owl-stage {
		min-height: 600px;
	}
}

@media screen and (max-width:1299px) {
	.our-specialists-container .owl-carousel {
		max-width: 660px;
	}

	.our-specialists-container .owl-stage {
		min-height: 580px;
	}
}

@media screen and (max-width:1199px) {
	.our-specialists-container .owl-carousel {
		max-width: 620px;
	}

	.our-specialists-container .owl-stage {
		min-height: 500px;
	}
}

@media screen and (max-width:992px) {
	.our-specialists-container .owl-carousel {
		max-width: 80%;
	}

	.our-specialists-container .owl-stage {
		min-height: auto;
		padding-top: 0;
	}

	.our-specialists-container .card-slider {
		min-height: 400px;
	}

	.our-specialists-container .owl-carousel .owl-item {
		transform: scale(0.95);
		opacity: 0.65;
	}

	.our-specialists-container .owl-item.active.center {
		transform: scale(1);
	}
}

@media screen and (max-width:767px) {
	.our-specialists-container .owl-carousel {
		max-width: 100%;
	}

	.our-specialists-container .owl-stage {
		min-height: auto;
		padding-top: 0;
	}

	.our-specialists-container .card-slider {
		min-height: 400px;
		text-align: center;
	}

	.our-specialists-container .card-slider .img-fluid {
		max-width: 250px;
		margin: 0 auto;
	}

	.our-specialists-container .owl-item.active.center .card-slider .card-body .more-details {
		justify-content: center;
		flex-direction: column;
		align-items: center;
	}

	.more-details-registration {
		display: flex;
		gap: 10px;
		align-items: center;
		margin-bottom: 16px;
		flex-direction: column;
		justify-content: center;
	}

	.more-details-registration .more-details-registration-text {
		margin-bottom: 0;
	}

	.our-specialists-container .card-slider {
		background-color: #fff;
		border-radius: 10px;
		overflow: hidden;
		min-height: 840px;
	}

	.our-specialists-container .card-slider .list-unstyled {
		padding: 10px;
		text-align: left;
		border: 1px solid #f04e30;
		background-color: #ffece8;
		border-radius: 10px;
		flex-direction: column;
	}
}






.clinic-timings-second {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 1rem;
    color: #555;
}
.clinic-timings-title-second {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 10px;
}



.contact-details {
	display: flex;
	align-items: center;
	gap: 10px; 
	flex-direction: row;
  }
  
  .contact-icon img {
	width: 20px; 
	height: 20px;
  }
  
  .contact-text {
	font-size: 16px; 
	color: #333; 
  }
  .contact-text-white {
	font-size: 16px; 
	color: #fff; 
  }
  .contact-icon-white {
	font-size: 16px; 
	color: #fff; 
  }
.contact-icon-white img {
	width: 20px; 
	height: 20px;
}
.registration-text-second {
	display: flex;
	flex-direction: column;
}
.registration-text-second strong {
	color: #fff;
}
.registration-number-second {
	color: #fff;
}

.specialties-column-white li {
	font-size: 1rem;
    color: #fff;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
}
.specialties-column-white {
    flex: 1;
    min-width: 200px;
}
.specialties-column-white ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.specialties-list-white{
	display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.specialties-column-white li::before {
    content: "✔";
    color: #fff;
    margin-right: 10px;
}


@media (max-width: 991px){
	.contact-details{
		justify-content: center !important;
	}
}