.navbar {
	background-color: #fff;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.navbar-brand img {
	height: 50px;
	/* margin-right: 8px; */
}

.navbar-brand strong {
	color: #003b5c;
}

.nav-link {
	color: #000;
	font-weight: 500;
	margin: 0 10px;
	font-family: 'Poppins', sans-serif;
	font-size: 18px;
	line-height: 30.4px;
	letter-spacing: 0%;
	text-align: center;
}

.nav-link:hover,
.nav-link.active {
	text-decoration: underline;
}

.nav-item {
	/* display: flex;
	justify-content: center; */
	width: 140px;
}

.btn-appointment {
	border: 1px solid #003b5c;
	color: #003b5c;
	border-radius: 50px;
	padding: 6px 20px;
	font-weight: 500;
	transition: all 0.3s;
}

.btn-appointment:hover {
	background-color: #003b5c;
	color: #fff;
}

.nav-item .dropdown-menu .dropdown-item:hover {
	background-color: #a0a0a0;
	color: #003b5c;
}


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

@media (max-width: 1200px) {
	.nav-item {
		width: 100px;
	}
	.nav-link {
		font-size: 11px;
	}

	.btn-appointment {
		font-size: 11px;
	}
}

/* --------------hero section----------------- */

.hero-section {
	background: linear-gradient(99.15deg, #0c4f79 0%, #1692df 99.51%);
	color: #fff;
	padding: 80px 20px;
	position: relative;
	overflow: hidden;
}

.hero-content h2 {
	font-weight: 600;
	margin-bottom: 30px;
	font-family: 'Open Sans', sans-serif;
	font-size: 38px;
	line-height: 50px;
	letter-spacing: 0%;
}

.btn-appointment_hero {
	border: 1px solid #fff;
	color: #fff;
	border-radius: 50px;
	padding: 10px 25px;
	font-weight: 400;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 18px;
}

.btn-appointment_hero:hover {
	background-color: #fff;
	color: #0071bc;
	text-decoration: none;
}

/* Hexagon Images */
.hexagon-wrapper {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
}

.hexagon {
	width: 160px;
	height: 180px;
	clip-path: polygon(50% 0%, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
	overflow: hidden;
	background-color: rgba(255, 255, 255, 0.1);
	transition: transform 0.3s ease;
}

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

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

@media (max-width: 992px) {
	.hero-section {
		text-align: center;
		padding: 80px 20px;
	}

	.hero-content h1 {
		font-size: 2rem;
	}

	.hexagon-wrapper {
		margin-top: 40px;
	}
}

/*-------Doctor Section Styling------------------ */
.doctor-section {
	padding: 80px 0;
}

.doctor-section h2 {
	color: #0c4f79;
	position: relative;
	display: inline-block;
	margin-bottom: 60px;
	font-family: 'Open Sans', sans-serif;
	font-weight: 600;
	font-size: 38px;
	line-height: 50px;
	letter-spacing: 0%;
	text-align: center;
}

/* Green line under heading */
.doctor-section h2::before {
	content: "";
	position: absolute;
	width: 150px;
	height: 3px;
	background-color: #33cc33;
	bottom: -8px;
	left: 90px;
	border-radius: 5px;
}

/* Doctor Image box */
.doctor-img {
	/* border: 6px solid #004b87; */
	/* border-radius: 15px; */
	overflow: hidden;
	display: inline-block;
	padding: 5px;
}

.doctor-img img {
	border-top: 10px solid #004b87;
	border-right: 10px solid #004b87;
	border-radius: 20px ;
	width: 100%;
}

/* Doctor Info */
.doctor-info h3 {
	color: #000000;
	position: relative;
	display: inline-block;
	margin-bottom: 20px;
	font-family: 'Open Sans', sans-serif;
	font-weight: 600;
	font-size: 38px;
	line-height: 50px;
	letter-spacing: 0%;
}

.doctor-info h3::before {
	content: "";
	position: absolute;
	width: 150px;
	height: 2px;
	background-color: #33cc33;
	bottom: -8px;
	left: 35px;
	border-radius: 5px;
}

.doctor-info ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.doctor-info ul li {
	color: #000000;
	margin-bottom: 10px;
	font-family: 'Poppins', sans-serif;
	font-weight: 400;
	font-size: 18px;
	line-height: 30px;
}

.doctor-info ul li::before {
	content: "✔";
	color: #33cc33;
	margin-right: 8px;
	font-weight: 700;
}

.appointment-title {
	color: #0c4f79;
	position: relative;
	display: inline-block;
	margin-top: 20px;
	margin-bottom: 10px;

	font-family: 'Poppins', sans-serif;
	font-weight: 600;

	font-size: 18px;

	line-height: 32px;
}

.appointment-title::before {
	content: "";
	position: absolute;
	width: 150px;
	height: 2px;
	background-color: #33cc33;
	bottom: 0px;
	left: 38px;
	border-radius: 5px;
}

@media (max-width: 767px) {
	.doctor-img {
		margin-bottom: 30px;
	}
}

/*----------Service Section------------------ */
.services-section {
	background: linear-gradient(126.65deg, #0c4f79 0%, #1692df 99.66%);
	padding: 80px 0;
	color: #fff;
}

.services-section h2 {
	text-align: center;
	margin-bottom: 15px;
	position: relative;
	display: inline-block;
	font-family: 'Open Sans', sans-serif;
	font-weight: 600;
	font-size: 26px;
	line-height: 50px;
	letter-spacing: 0%;
}

.services-section h2::before {
	content: "";
	position: absolute;
	width: 380px;
	height: 2px;
	background-color: #33cc33;
	bottom: 2px;
	left: 30px;
	border-radius: 5px;
}

.service-card {
	height: 100%;
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-card img {
	width: 100%;
    height: 380px;         
    object-fit: cover;
}

.service-card .card-body {
	padding: 20px;
    flex-grow: 1;         
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card h5 {
	color: #000000;
	margin-bottom: 10px;
	font-family: 'Poppins', sans-serif;
	font-weight: 500;
	font-size: 24px;
	line-height: 27px;
	text-align: center;
}

.service-card p {
	color: #000000;
	margin: 0;
	font-family: 'Poppins', sans-serif;
	font-weight: 400;
	font-size: 18px;
	line-height: 24px;
	letter-spacing: 0%;
	text-align: left;
}

/*-------------------- Testimonial Section Styling--------------- */
.testimonial-section {
	padding: 80px 0 0 0;
	background-color: #fff;
}

.testimonial-section h2 {
	color: #0c4f79;
	position: relative;
	display: inline-block;
	margin-bottom: 10px;
	font-family: 'Open Sans', sans-serif;
	font-weight: 600;
	font-size: 38px;
	line-height: 50px;
	letter-spacing: 0%;
	text-align: center;
}

.testimonial-section h2::before {
	content: "";
	position: absolute;
	width: 400px;
	height: 2px;
	background-color: #33cc33;
	bottom: -4px;
	left: 120px;
	border-radius: 5px;
}

.testimonial-section p.subtitle {
	text-align: center;
	font-style: italic;
	color: #000000;
	margin-bottom: 50px;
	font-family: 'Open Sans', sans-serif;
	font-weight: 400;
	font-size: 24px;
	line-height: 50px;
}

/* Swiper cards */
.testimonial-card {
	background: #fff;
	border: 2px solid #ddd;
	border-radius: 15px;
	padding: 10px 25px 25px 25px;
	height: 100%;
	transition: 0.3s ease;
	display: flex;
	flex-direction: column;
	align-items: start;
}

/* .testimonial-card:hover {
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
            transform: translateY(-5px);
        } */

.stars {
	color: #ffcc00;
	font-size: 28px;
	margin-bottom: 10px;
}

.testimonial-card p {
	font-size: 0.95rem;
	color: #555;
	line-height: 1.6;
}

.profile {
	display: flex;
	align-items: center;
	margin-top: 20px;
}

.profile img {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	margin-right: 15px;
	object-fit: cover;
}

.profile h6 {
	margin: 0;
	color: #111827;
	font-family: 'Poppins', sans-serif;
	font-weight: 500;
	font-size: 18px;
	line-height: 24px;
}

.profile span {
	color: #64748b;
	font-family: 'Poppins', sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 20px;
}

/* ✅ Custom pagination style */
.swiper-pagination {
	position: relative;
	margin-top: 30px !important;
	text-align: center;
}

.swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	background-color: #64748b;
	opacity: 0.4;
	margin: 0 6px !important;
	transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
	background-color: #64748b;
	width: 12px;
	height: 12px;
	opacity: 1;
}

@media (max-width: 991px) {
	.testimonial-card {
		padding: 20px;
	}
}

/* gallery Section styling */

.happy-moments {
	text-align: center;
	padding: 70px 0;
	background-color: #fff;
}

.happy-moments h2 {
	position: relative;

	color: #0c4f79;
	display: inline-block;
	margin-bottom: 15px;
	font-family: 'Open Sans', sans-serif;
	font-weight: 600;
	font-size: 38px;
	line-height: 50px;
	letter-spacing: 0%;
	text-align: center;
}

.happy-moments h2::before {
	content: "";
	position: absolute;
	width: 385px;
	height: 2px;
	background-color: #33cc33;
	bottom: -6px;
	left: 320px;
	transform: translateX(-50%);
	border-radius: 3px;
}

.happy-moments p.subtitle {
	font-style: italic;
	color: #000000;
	margin-bottom: 40px;
	font-family: 'Open Sans', sans-serif;
	font-weight: 400;
	font-size: 24px;
	line-height: 50px;
	text-align: center;
}

/* ===== Image Gallery ===== */
.gallery-img {
	border-radius: 10px;
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-img img {
	/* min-height: 335px; */
	width: 100%;
	height: auto;
	display: block;
	border-radius: 10px;
}

.gallery-img:hover {
	transform: scale(1.03);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 767px) {
	.happy-moments h2::before {
		width: 40px;
	}
}

/*----------Appointment Section------------------ */

.appointment-section {
	background-color: #0b4b75;
	color: #fff;
	padding: 80px 0;
	overflow-x: hidden;
}

.form-title {
	margin-bottom: 20px;
	position: relative;
	display: inline-block;
	font-family: 'Open Sans', sans-serif;
	font-weight: 400;
	font-size: 38px;
	line-height: 100%;
	letter-spacing: 0%;
}

.form-title::after {
	content: "";
	position: absolute;
	left: 90px;
	bottom: -9px;
	width: 155px;
	height: 2px;
	background-color: #00b050;
	border-radius: 5px;
}

.form-control {
	border-radius: 0;
	border: none;
	padding: 12px 15px;
	font-family: 'Poppins', sans-serif;
	font-weight: 400;
	font-size: 16px;
	color: #9a9ea5;
}

.form-control:focus {
	box-shadow: 0 0 0 2px #00b050;
}

textarea.form-control {
	resize: none;
}

.send-btn {
	background-color: #fff;
	color: #000;
	border: none;
	border-radius: 25px;
	padding: 14px 80px;
	transition: all 0.3s ease;
	box-shadow: 0px 4px 8px rgba(0, 176, 80, 0.4);
	font-family: 'Poppins', sans-serif;
	font-size: 18px;
}

.send-btn:hover {
	background-color: #00b050;
	color: #fff;
	transform: translateY(-2px);
}

.right-side-contact {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding-left: 40px;
}

.contact-info {
	padding: 0 150px;

	border-left: 2px solid #33cc33;
	border-right: 2px solid #33cc33;
}

.contact-info img {
	width: 100px;
	height: auto;
	margin-bottom: 15px;
}

.contact-info a {
	color: #ffffff;
	margin-bottom: 40px;
	font-size: 1.1rem;
	line-height: 1.6;
}

.contact-info a:hover {
	color: #33cc33;
}

@media (max-width: 991px) {
	.right-side-contact {
		border-left: none;
		padding-left: 0;
		padding-top: 40px;
		margin-top: 40px;
		text-align: center;
	}

	.contact-info {
		padding: 0 65px;
	}

	.contact-info img {
		width: 50px;
	}

	.appointment-section {
		padding: 60px 15px;
	}
}

/*----------Footer Section------------------ */

.footer-section {
	background-color: #0b4b75;
	width: 100%;
	display: flex;
	flex-wrap: nowrap;
	align-items: stretch;
	justify-content: space-between;
	border-top: 3px solid #00b050;
	overflow: hidden;
}

.footer-left {
	color: #ffffff;
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 14px 20px;
	font-family: "Poppins", sans-serif;
	white-space: nowrap;
	font-weight: 300;
	font-size: 18px;
	line-height: 100%;
	text-align: center;
}

.footer-right {
	margin-right: 45px;
	background-color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 30px;
	padding: 0px 75px;
}

.footer-right a {
	color: #0b4b75;
	font-size: 35px;
	transition: all 0.3s ease;
}

.footer-right a:hover {
	color: #00b050;
	transform: translateY(-3px);
}

@media (max-width: 992px) {
	.footer-section {
		flex-direction: column;
	}

	.footer-left,
	.footer-right {
		width: 100%;
		text-align: center;
	}

	.footer-right {
		border-top: 1px solid rgba(0, 0, 0, 0.1);
		padding: 15px 0;
	}
}

/* Show dropdown on hover */
#servicesMenu:hover .dropdown-menu {
	display: block;
}

/* Keep hover dropdown smooth */
.dropdown-menu {
	margin-top: 0;
}

/* ---------------------services pages----------- */

.injury-section .title {
	position: relative;
	font-family: 'Open Sans', sans-serif;
	font-weight: 600;
	font-size: 38px;
	line-height: 50px;
	letter-spacing: 0%;
	text-align: center;
	text-transform: capitalize;
	color: #0c4f79;
}

.injury-section .title::before {
	content: "";
	position: absolute;
	width: 305px;
	height: 2px;
	background-color: #33cc33;
	bottom: -7px;
	left: 272px;
	border-radius: 5px;
}

.injury-section .subtitle {
	font-family: 'Poppins', sans-serif;
	color: #000000;
	font-weight: 400;
	font-size: 18px;
	line-height: 22px;
	letter-spacing: 0%;
	text-align: start;
	vertical-align: middle;
	text-transform: capitalize;
}

.image-wrapper {
	border: 2px solid #dce3ea;
	border-radius: 8px;
	overflow: hidden;
	background: #fff;
}

img.img-fluid {
	transition: transform 0.3s ease;
}

/* img.img-fluid:hover {
	transform: scale(1.02);
} */

.section-title {
	position: relative;
	display: inline-block;
	color: #0c4f79;
	margin: 30px 0;
	font-family: 'Open Sans', sans-serif;
	font-weight: 600;
	font-size: 38px;
	letter-spacing: 0%;
	text-align: center;
	text-transform: capitalize;
}

.section-title::after {
	content: '';
	position: absolute;
	left: 265px;
	bottom: -4px;
	width: 291px;
	height: 2px;
	background-color: #33cc33;
	border-radius: 4px;
}

.injury-list {
	color: #000;
	font-family: 'Poppins', sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 25px;
	letter-spacing: 0%;
	text-align: start;
	vertical-align: middle;
	text-transform: capitalize;
}

.injury-section {
	padding: 80px 0 0 0;
	background: #f9fafc;
}

@media (max-width: 768px) {
	.section-title {
		font-size: 1.5rem;
	}
}

/* --------------------contact page -------------- */

.contact-page-info h2,
.contact-page-info h3 {
	letter-spacing: 0.5px;
}

.contact-form input,
.contact-form textarea {
	border-radius: 8px;
	border: 1px solid #ccc;
	transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
	border-color: #33cc33;
	box-shadow: 0 0 0 0.2rem rgba(51, 204, 51, 0.25);
}

.contact_page_heading {
	position: relative;
	font-family: 'Open Sans', sans-serif;
	font-weight: 600;
	font-size: 38px;
	line-height: 50px;
	letter-spacing: 0%;
	text-align: center;
	text-transform: capitalize;
	color: #0c4f79;
}

.contact_page_heading::before {
	content: "";
	position: absolute;
	width: 135px;
	height: 2px;
	background-color: #33cc33;
	bottom: 0px;
	left: 198px;
	border-radius: 5px;
}

.contact_page_form_heading {
	position: relative;
	font-family: 'Open Sans', sans-serif;
	font-weight: 600;
	font-size: 38px;
	line-height: 50px;
	letter-spacing: 0%;
	text-align: center;
	color: #0c4f79;
}

.contact_page_form_heading::before {
	content: "";
	position: absolute;
	width: 215px;
	height: 2px;
	background-color: #33cc33;
	bottom: 0px;
	left: 198px;
	border-radius: 5px;
}

.contact-left-side a:hover {
	text-decoration: underline !important;
}

/* -------------about page--------------------- */

.about_main {
	background: linear-gradient(90deg, rgba(51, 204, 51, 0.08), rgba(0, 74, 119, 0.05));
	padding: 3.5rem 0;
}

.profile-card {
	background: #fff;
	border-radius: 1rem;
	box-shadow: 0 10px 30px rgba(0, 74, 119, 0.08);
	overflow: hidden;
	border-left: 5px solid #33cc33;
	display: flex;
	gap: 1.5rem;
	flex-direction: row;
	align-items: center;
}

.profile-img {
	width: 160px;
	height: 160px;
	object-fit: cover;
	border-radius: 50%;
	border: 6px solid #fff;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
	margin-top: -80px;
	background: #eee;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.badge-skill {
	background: rgba(51, 204, 51, 0.1);
	color: #33cc33;
	border-radius: 50px;
	padding: .35rem .7rem;
	font-weight: 600;
}

.appointment_btn {
	background-color: #004a77;
	border-color: #004a77;
}

.appointment_btn:hover {
	background-color: #33cc33;
	border-color: #33cc33;
}

.services_btn {
	color: #004a77;
	border-color: #004a77;
}

.services_btn:hover {
	background-color: #004a77;
	border-color: #004a77;
	color: #fff;
}

.timeline {
	position: relative;
	padding-left: 0.5rem;
}

.timeline-item {
	position: relative;
	padding: 1rem 1rem 1rem 2.2rem;
	margin-bottom: 1rem;
	background: #fff;
	border-left: 4px solid #33cc33;
	border-radius: .5rem;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.03);
}

.testimonial {
	background: linear-gradient(180deg, #fff, #f4fdf7);
	border-left: 4px solid #33cc33;
	border-radius: .75rem;
	padding: 1.2rem;
	box-shadow: 0 8px 30px rgba(0, 74, 119, 0.05);
}

@media (max-width: 991.98px) {
	.profile-card {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.75rem;
		padding: 2rem 1rem;
	}

	.profile-img {
		width: 120px;
		height: 120px;
		margin-top: -60px;
	}
}

@media (max-width: 768px) {
	.profile-card {
		flex-direction: column;
		align-items: center;
		padding: 1.5rem 0.5rem;
	}

	.profile-img {
		width: 96px;
		height: 96px;
		margin-top: -48px;
	}

	.timeline-item {
		padding-left: 1.2rem;
		font-size: 0.95rem;
	}

	.container {
		padding-left: 1rem;
		padding-right: 1rem;
	}
}

.about_testimonial {
	min-height: 320px;
}

/* Util: Remove extra background on mobile */
@media (max-width: 575px) {
	.about_main {
		padding: 1.5rem 0;
	}

	.about_testimonial {
		min-height: 350px;
	}
}

.about_main h3,
.about_main h5,
.mission_section h2,
.mission_section h5,
.mission_section h6,
.timeline_section h3,
.timeline_section h6,
.testimonial_section h3 {
	font-family: 'Open Sans', sans-serif;
}

.about_main li,
.about_main span,
.about_main p,
.about_main a,
.mission_section p,
.mission_section li,
.timeline_section p,
.timeline_section small {
	font-family: 'poppins', sans-serif;
}

.list-unstyled i {
	color: #33cc33;
}

.list-unstyled a {
	text-decoration: none;
	color: #000;
}

.list-unstyled a:hover {
	text-decoration: underline;
	color: #33cc33;
}

.mission_section h2,
.timeline_section h3,
.publications_section h3 {
	color: #0c4f79;
}

.testimonial_heading {
	position: relative;
	color: #0c4f79;
}

.testimonial_heading::before {
	content: '';
	position: absolute;
	left: 49%;
	transform: translateX(-50%);
	bottom: -5px;
	width: 144px;
	height: 2px;
	background-color: #33cc33;
	border-radius: 4px;
}

/* ---------------------servgice page--------------- */

@media (max-width: 1200px) {
	.happy-moments h2::before,
	.testimonial-section h2::before,
	.services-section h2::before,
	.injury-section .title::before,
	.section-title::after,
	.contact_page_heading::before,
	.contact_page_form_heading::before,
	.test-title::after {
		display: none !important;
	}
}

/* font responsive */
@media (max-width: 576px) {
	
	.testimonial-section h2,
	.happy-moments h2,
	.contact_page_heading {
		font-size: 30px;
	}

	.services-section h2{
		font-size: 16px;

	}

	.happy-moments {
		padding: 0 0 25px 0;
	}

	.testimonial-section p.subtitle,
	.happy-moments p.subtitle {
		font-size: 16px;
		margin-bottom: 15px;
	}

	.injury-section .title {
		font-size: 24px;
		text-align: start;
	}

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

	.injury-section {
		padding: 0 0 25px 0;
	}

	.contact_page_form_heading {
		font-size: 26px;
	}
}



  .services-section {
        background: #fff;
    }

    .service-card {
        border: 1px solid #00000052;
        background: #0b4b7538;
    }

    .services-section h2 {
        color: #0b4b75;
    }

    .services-section a {
        text-decoration: none;
    }

    .diagnosis-section {
        padding: 80px 0;
        background-color: #f9fafc;
    }

    .test-title {
        position: relative;
        margin-bottom: 35px;
        font-family: 'Open Sans', sans-serif;
        font-weight: 600;
        font-size: 38px;
        letter-spacing: 0%;
        text-transform: capitalize;
        color: #0c4f79;
    }

    .test-title::after {
        content: '';
        position: absolute;
        left: 548px;
        bottom: -6px;
        width: 220px;
        height: 2px;
        background-color: #33cc33;
        border-radius: 4px;
    }

    .sub-heading {
        font-weight: 600;
        font-size: 19px;
        margin-bottom: 20px;
    }

    .diagnosis-list {
        list-style-type: disc;
        line-height: 1.8;
        color: #444;
    }

    .diagnosis-img {
        width: 100%;
        border-radius: 14px;
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
        object-fit: cover;
    }

    @media (max-width: 768px) {
        .section-title {
            font-size: 24px;
            text-align: start;
        }

        .diagnosis-section {
            text-align: center;
        }

        .diagnosis-list {
            text-align: left;
        }

        .test-title {
            font-size: 24px;
            text-align: start !important;
        }

        .sub-heading {
            font-size: 16px;
            margin-bottom: 10px;
        }

        .services-section{
            padding: 0 0 25px 0;
        }
    }



	  .custom-tabs {
    border-bottom: none !important;
    gap: 15px;
}

.custom-tabs .nav-link {
    padding: 10px 28px;
    border-radius: 50px;
    background: #f1f1f1;
    color: #444;
    border: 1px solid #ddd;
    font-weight: 500;
    transition: all 0.3s ease;
}

.custom-tabs .nav-link:hover {
    background: #e2e2e2;
    border-color: #bbb;
}

.custom-tabs .nav-link.active {
    background: #33cc33;
    color: #fff;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
    transform: translateY(-2px);
}

.custom-tabs .nav-item {
    display: flex;
    align-items: center;
    justify-content: center;
}



.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 60px;
    right: 10px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    z-index: 999;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-float img {
    width: 35px;
}



/* blog--------------  */


    .recent-img {
        --ratio: calc(16 / 9);
        width: 100%;
        height: 0;
        padding-bottom: calc(100% / var(--ratio));
        position: relative;
        overflow: hidden;
        border-radius: 0.5rem;
        background-color: #f3f3f3;
    }

    .recent-img img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
        display: block;
    }

    .recent-post {
        background: #fff;
        border-radius: 0.5rem;
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
        overflow: hidden;
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    .recent-content {
        padding: 1rem;
        flex: 1;
    }

    .recent-title a.block_card_title {
        font-family: 'Open Sans', sans-serif;
        font-weight: 600;
        font-size: 24px;
        line-height: 32px;
        color: #0c4f79;
        margin-bottom: 15px;
        text-decoration: none;

    }

      .recent-title a.block_card_title:hover {
       color: #33cc33;

    }

    .recent-meta {
        display: flex;
        gap: 0.75rem;
        font-size: 0.9rem;
        color: #6b6b6b;
        margin-top: 0.6rem;
    }


	   .blog-wrapper {
        max-width: 850px;
        margin: 0 auto;
        padding: 40px 20px;
    }

    .blog-feature-img {
        width: 100%;
        border-radius: 12px;
        /* height: 420px; */
        object-fit: cover;
        margin-bottom: 40px;
    }

    .blog-title {
        font-size: 34px;
        font-weight: 700;
        margin-bottom: 25px;
        color: #111;
        font-family: 'Open Sans', sans-serif;
    }

    .blog-wrapper p {
        font-size: 18px;
        line-height: 1.8;
        color: #333;
        margin-bottom: 25px;
        font-family: 'Poppins', sans-serif;

    }

    .blog-wrapper h2 {
        font-size: 26px;
        margin: 45px 0 15px;
        font-weight: 700;
        font-family: 'Open Sans', sans-serif;

    }

    .blog-quote {
        background: #fafafa;
        border-left: 4px solid #ddd;
        padding: 25px 30px;
        margin: 35px 0;
        font-size: 20px;
        font-style: italic;
        color: #555;
        font-family: 'Poppins', sans-serif;

    }

    .blog-pagination {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin: 50px 0 20px;
    }

    .blog-pagination a {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        border: 1px solid #ddd;
        color: #444;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
    }

    .blog-pagination a:hover {
        background: #0b4b75;
        color: #fff;
        border-color: #0b4b75;
    }

    .blog-pagination a.active {
        background: #33cc33;
        color: #fff;
        border-color: #33cc33;
    }

	.dropdown-menu{
		min-width: 300px;
    width: 100%;
	}

	.dropdown-item.active,
	.dropdown-item:active,
	.dropdown-item:hover{
		background: #00b050 !important;
	}