@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700&display=swap");

body {
	font-family: 'Nunito', sans-serif;
	color: #000000;
	background-color: #fefefe;
	overflow-x: hidden;
}

a {
	text-decoration: none !important;
}

.layout_padding {
	padding: 90px 0;
}

.layout_padding2 {
	padding: 75px 0;
}

.layout_padding2-top {
	padding-top: 75px;
}

.layout_padding2-bottom {
	padding-bottom: 75px;
}

.layout_padding-top {
	padding-top: 90px;
}

.layout_padding-bottom {
	padding-bottom: 90px;
}

.layout_margin-top {
	margin-top: 90px;
}

.layout_margin-bottom {
	margin-bottom: 90px;
}

.heading_container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}

.heading_container h2 {
	position: relative;
	font-weight: bold;
	margin-bottom: 0;
	text-transform: uppercase;
}

.heading_container p {
	margin-top: 10px;
	margin-bottom: 0;
}

.heading_container.heading_center {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	text-align: center;
}

a,
a:hover,
a:focus {
	text-decoration: none;
}

a:hover,
a:focus {
	color: initial;
}

.btn,
.btn:focus {
	outline: none !important;
	-webkit-box-shadow: none;
	box-shadow: none;
}

/*header section*/
/* .hero_area {
	position: relative;
	min-height: 100vh;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
} */

/* .hero_area .hero_bg_box {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	overflow: hidden;
	z-index: -1;
} */

/* .hero_area .hero_bg_box img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: bottom right;
	object-position: bottom right;
} */




.navbar-toggler {
	border: none !important;
}

.hero_area {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
}

/* Background image container */
.hero_bg_box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

/* Image styling */
.hero_bg_box picture,
.hero_bg_box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Optional overlay for readability */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3); /* adjust darkness */
  z-index: 1;
}

/* Ensure text/content stays above background */
.slider_section {
  position: relative;
  z-index: 2;
  color: #fff;
}

.detail-box h1,
.detail-box p {
  color: #fff;
}




.sub_page .hero_area {
	min-height: auto;
	background-color: var(--primary-color);
}

.sub_page .hero_area .hero_bg_box {
	display: none;
}

.header_section {
	padding: 15px 0;
}

.header_section .container-fluid {
	padding-right: 25px;
	padding-left: 25px;
}

.navbar-brand span {
	font-weight: bold;
	font-size: 24px;
	color: #ffffff;
	text-transform: uppercase;
}

.custom_nav-container {
	padding: 0;
}

.custom_nav-container .navbar-nav {
	margin-left: auto;
}

.custom_nav-container .navbar-nav .nav-item .nav-link {
	padding: 5px 20px;
	color: #ffffff;
	text-align: center;
	text-transform: uppercase;
	border-radius: 5px;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

.custom_nav-container .nav_search-btn {
	width: 35px;
	height: 35px;
	padding: 0;
	border: none;
	color: #ffffff;
}

.custom_nav-container .nav_search-btn:hover {
	color: #296169;
}

.custom_nav-container .navbar-toggler {
	outline: none;
}

.custom_nav-container .navbar-toggler {
	padding: 0;
	width: 37px;
	height: 42px;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

.custom_nav-container .navbar-toggler span {
	display: block;
	width: 35px;
	height: 4px;
	background-color: #ffffff;
	margin: 7px 0;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	position: relative;
	border-radius: 5px;
	transition: all 0.3s;
}

.custom_nav-container .navbar-toggler span::before,
.custom_nav-container .navbar-toggler span::after {
	content: "";
	position: absolute;
	left: 0;
	height: 100%;
	width: 100%;
	background-color: #ffffff;
	top: -10px;
	border-radius: 5px;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

.custom_nav-container .navbar-toggler span::after {
	top: 10px;
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] {
	-webkit-transform: rotate(360deg);
	transform: rotate(360deg);
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] span {
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] span::before,
.custom_nav-container .navbar-toggler[aria-expanded="true"] span::after {
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
	top: 0;
}
.navbar-brand {
  color: #fff;
  text-decoration: none;
}

.navbar-brand span {
  font-weight: 700;
  font-size: 22px;
  color: #fff;
  text-transform: capitalize;
  letter-spacing: 0.5px;
}

.navbar-brand small {
  display: block;
  font-weight: 400;
  font-size: 13px;
  color: #dce9f0;
}

.sub_page .navbar-brand span{
    color: #fff;
}

/*end header section*/
/* slider section */
/* .slider_section {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: relative;
	padding: 45px 0 145px 0;
} */

.slider_section .row {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.slider_section #customCarousel1 {
	width: 100%;
	position: unset;
}


.slider_section .detail-box {
	padding: 25px;
}

/* .homepage .detail-box {
	backdrop-filter: blur(16px) saturate(180%);
	-webkit-backdrop-filter: blur(16px) saturate(180%);
	background-color: rgb(129 124 124 / 75%);
	border-radius: 12px;
	padding: 25px;
	margin-top: 35px;
} */

.homepage .detail-box {
    backdrop-filter: blur(2px) saturate(50%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    background-color: rgb(129 124 124 / 15%);
    border-radius: 12px;
    padding: 25px;
    margin-top: 35px;
}

.slider_section .detail-box h1 {
	font-size: 3rem;
	font-weight: bold;
	/* text-transform: uppercase; */
	margin-bottom: 15px;
	color: #ffffff;
}

.slider_section .detail-box p {
	color: #fefefe;
	font-size: 14px;
}

.slider_section .detail-box .btn-box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin: 0 -5px;
	margin-top: 25px;
}

.slider_section .detail-box .btn-box a {
	margin: 5px;
	text-align: center;
	width: 165px;
}

.slider_section .detail-box .btn-box .btn1 {
	display: inline-block;
	padding: 10px 15px;
	background-color: #ffffff;
	color: #296169;
	border-radius: 5px;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	border: 1px solid #ffffff;
}

.slider_section .detail-box .btn-box .btn1:hover {
	background-color: transparent;
	color: #ffffff;
}

.slider_section .img-box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.slider_section .img-box img {
	width: 100%;
	max-width: 375px;
}

.slider_section .carousel-indicators {
	position: unset;
	margin: 0;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.slider_section .carousel-indicators li {
	background-color: #ffffff;
	width: 12px;
	height: 12px;
	border-radius: 100%;
	opacity: 1;
}

.slider_section .carousel-indicators li.active {
	width: 20px;
	height: 20px;
}

.department_section {
	position: relative;
	padding-bottom: 90px;
}

.department_section .box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-top: 45px;
	background-color: #ffffff;
	border-radius: 5px;
	text-align: center;
}

.department_section .box .img-box {
	width: 90px;
	height: 90px;
	margin-bottom: 15px;
	background-color: #296169;
	border-radius: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.department_section .box .img-box img {
	max-width: 55px;
	max-height: 55px;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

.department_section .box .detail-box h5 {
	/* font-weight: bold; */
	text-transform: uppercase;
}

.department_section .box .detail-box a {
	color: #1fab89;
	font-weight: 600;
}

.department_section .box .detail-box a:hover {
	color: #296169;
}

.department_section .btn-box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-top: 45px;
}

.department_section .btn-box a {
	display: inline-block;
	padding: 10px 45px;
	background-color: #296169;
	color: #ffffff;
	border-radius: 5px;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	border: 1px solid #296169;
}

.department_section .btn-box a:hover {
	background-color: transparent;
	color: #296169;
}

.about_section .row {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

/* about section */
.about_section .img-box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.about_section .img-box img {
	width: 100%;
	border-radius: 15px;
}

.about_section .detail-box h3 {
	font-weight: bold;
}

.about_sub_head {
	color: var(--primary-color);
}

.about_section .detail-box p {
	margin-top: 15px;
}

.about_section .index_about li i {
	color: var(--primary-color);
}

.about_section .detail-box a {
	display: inline-block;
	padding: 10px 45px;
	background-color: #296169;
	color: #ffffff;
	border-radius: 5px;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	border: 1px solid #296169;
	margin-top: 15px;
}

.about_section .service_btn {
	position: relative;
	display: inline-block;
	padding: 10px 25px;
	border: 2px solid var(--primary-color);
	background: transparent;
	color: var(--primary-color);
	font-weight: 600;
	cursor: pointer;
	overflow: hidden;
	transition: color 0.4s ease;
	/* only text color */
	z-index: 1;
}

/* Background layer */
.about_section .service_btn::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 100%;
	background: var(--primary-color);
	z-index: -1;
	transition: width 0.4s ease;
	/* controls the filling effect */
}

/* Hover effect */
.about_section .service_btn:hover::before {
	width: 100%;
	/* fills left → right */
}

.about_section .service_btn:hover {
	color: #fff;
	/* text turns white */
}




/* .doctor_section {
	background: var(--primary-color);
} */

.doctor_section .heading_container {
	color: #ffffff;
}

.doctor_section .box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	overflow: hidden;
	margin-top: 45px;
	border-radius: 10px;
	overflow: hidden;
	background: #ffffff;
}

.doctor_section .box .img-box {
	width: 100%;
}

.doctor_section .box .img-box img {
	width: 100%;
}

.doctor_section .box .detail-box {
	width: 100%;
	padding: 25px 15px;
	text-align: center;
	position: relative;
}

.doctor_section .box .detail-box .social_box {
	position: absolute;
	z-index: 2;
	left: 50%;
	top: 150%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	background-color: #ffffff;
	padding: 10px;
	border-radius: 5px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	opacity: 0;
	-webkit-transition: all .3s;
	transition: all .3s;
}

.doctor_section .box .detail-box .social_box a {
	color: #296169;
	margin: 0 10px;
}

.doctor_section .box .detail-box .social_box a:hover {
	color: #1fab89;
}

.doctor_section .box:hover .social_box {
	top: 0;
	opacity: 1;
}

.doctor_section .btn-box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-top: 45px;
}

.doctor_section .btn-box a {
	display: inline-block;
	padding: 10px 45px;
	background-color: var(--primary-color);
	color: #ffffff;
	border-radius: 5px;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	/* border: 1px solid #fff; */
	text-decoration: none;
}

.doctor_section .btn-box a:hover {
	background-color: transparent;
	color: var(--primary-color);
	border: 1px solid var(--primary-color);
}

.contact_section {
	position: relative;
}

.contact_section .heading_container {
	margin-bottom: 25px;
}

.contact_section .heading_container h2 {
	text-transform: uppercase;
}

.contact_section .form_container input {
	width: 100%;
	border: none;
	height: 50px;
	margin-bottom: 15px;
	padding-left: 20px;
	outline: none;
	color: #101010;
	background: #eeeeee;
}

.contact_section .form_container input::-webkit-input-placeholder {
	color: #000000;
}

.contact_section .form_container input:-ms-input-placeholder {
	color: #000000;
}

.contact_section .form_container input::-ms-input-placeholder {
	color: #000000;
}

.contact_section .form_container input::placeholder {
	color: #000000;
}

.contact_section .form_container input.message-box {
	height: 175px;
}

.contact_section .form_container button {
	width: 100%;
	border: none;
	text-transform: uppercase;
	display: inline-block;
	padding: 12px 55px;
	background-color: #1fab89;
	color: #ffffff;
	border-radius: 5px;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	border: 1px solid #1fab89;
}

.contact_section .form_container button:hover {
	background-color: transparent;
	color: #1fab89;
}

.contact_section .map_container {
	height: 368px;
	overflow: hidden;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
	padding: 0;
}

.contact_section .map_container .map {
	height: 100%;
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}

.contact_section .map_container .map #googleMap {
	height: 100%;
}

.client_section .heading_container {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.client_section .box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	text-align: center;
	margin: 45px;
	border-radius: 15px;
}

.client_section .box .img-box {
	margin-bottom: 15px;
	min-width: 145px;
	max-width: 145px;
	overflow: hidden;
}

.client_section .box .img-box img {
	width: 100%;
	border-radius: 100%;
	border: 7px solid rgba(255, 255, 255, 0.45);
}

.client_section .box .detail-box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.client_section .box .detail-box .name img {
	width: 25px;
	margin-bottom: 5px;
}

.client_section .box .detail-box .name h6 {
	color: #296169;
	font-size: 20px;
}

.client_section .carousel_btn-container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.client_section .carousel-control-prev,
.client_section .carousel-control-next {
	position: unset;
	width: 45px;
	height: 45px;
	border: none;
	opacity: 1;
	background-repeat: no-repeat;
	background-size: 12px;
	background-position: center;
	background-color: #296169;
	background-position: center;
	border-radius: 5px;
	margin: 0 2.5px;
}

.client_section .carousel-control-prev:hover,
.client_section .carousel-control-next:hover {
	background-color: #1fab89;
}

.client_section .carousel-control-next {
	left: initial;
}

.footer_section {
	background: var(--primary-color);
	color: #ffffff;
	padding: 60px 0 15px 0;

}

.footer_section h4 {
	font-weight: 600;
	margin-bottom: 20px;
}

.footer_section .footer_col {
	margin-bottom: 30px;
}

.footer_section .footer_contact .contact_link_box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.footer_section .footer_contact .contact_link_box a {
	margin: 5px 0;
	color: #ffffff;
}

.footer_section .footer_contact .contact_link_box a i {
	margin-right: 5px;
}

.footer_section .footer_contact .contact_link_box a:hover {
	color: #296169;
}

.footer_section .footer_social {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-top: 20px;
	margin-bottom: 10px;
	text-align: center;
	justify-content: center;
}

.footer_section .footer_social a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	color: #ffffff;
	border-radius: 100%;
	margin-right: 10px;
	font-size: 24px;
}

.footer_section .footer_social a:hover {
	color: #296169;
}

/* .footer_section .footer_links {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
} */

.footer_section .footer_links {
	display: flex;
	flex-wrap: wrap;
	/*gap: 10px;*/
}

@media (max-width: 767px) {
	.footer_section {
		text-align: center;
	}

	.footer_section .footer_social {
		justify-content: center;
	}

	.footer_section .footer_links {
		justify-content: center;
	}
}

/*.footer_section .footer_contact {*/
/*	text-align: center;*/
/*}*/

.footer_section .footer_contact .contact_link_box {
	align-items: center;
}

.footer_section .footer_contact .contact_link_box a {
	justify-content: center;
}


.footer_section .footer_links a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-right: 15px;
	margin-bottom: 15px;
	color: #ffffff;
}

.footer_section .footer_links a:hover {
	font-weight: 600;
}

.footer_section form input {
	border: none;
	background-color: #fefefe;
	width: 100%;
	height: 45px;
	color: #000000;
	outline: none;
	border-radius: 5px;
	padding: 0 15px;
}

.footer_section form input::-webkit-input-placeholder {
	color: #777;
}

.footer_section form input:-ms-input-placeholder {
	color: #777;
}

.footer_section form input::-ms-input-placeholder {
	color: #777;
}

.footer_section form input::placeholder {
	color: #777;
}

.footer_section form button {
	width: 100%;
	text-align: center;
	display: inline-block;
	padding: 10px 55px;
	background-color: #296169;
	color: #ffffff;
	border-radius: 5px;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	border: 1px solid #296169;
	margin-top: 15px;
}

.footer_section form button:hover {
	background-color: transparent;
	color: #296169;
}

.footer_section .footer-info {
	text-align: center;
}

.footer_section .footer-info p {
	color: #ffffff;
	padding: 25px 0;
	margin: 0;
}

.footer_section .footer-info p a {
	color: inherit;
}

/*# sourceMappingURL=style.css.map */




/* new cta */

/* .cta_section {
	justify-content: center;
	display: flex;
	align-items: center;
}

.cta-box {
	background: #296169;
	border-radius: 20px;
	padding: 40px;
	display: flex;
	align-items: center;
	color: #fff;
	max-width: 900px;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.cta-image {
	flex: 1;
	display: flex;
	margin-bottom: -4.8%;
	justify-content: center;
	align-items: flex-end;
	background-image: url(../images/stethoscope.png);
	background-size: 85% auto;
	background-repeat: no-repeat;
	background-position: bottom center;
	height: 300px;
	width: 150px;
}

@media (max-width: 768px) {
	.cta-image {
		background-size: 70% auto;
	}
}

@media (max-width: 480px) {
	.cta-image {
		background-size: 60% auto;
	}
}

.cta-content {
	flex: 1;
	padding-left: 30px;
}

.cta-content h2 {
	font-weight: 700;
	margin-bottom: 15px;
}

.cta-content p {
	font-size: 15px;
	color: #ccc;
	margin-bottom: 25px;
}

.cta-btn {
	background: linear-gradient(to right, #ff6600, #ff9900);
	color: #fff;
	border: none;
	padding: 12px 25px;
	font-weight: 600;
	border-radius: 25px;
	transition: 0.3s;
}

.cta-btn:hover {
	opacity: 0.85;
} */


.cta_section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 15px;
}

.cta-box {
    background: #296169;
    border-radius: 20px;
    /* padding: 40px; */
	padding-left: 30px;
    display: flex;
    align-items: center;
    color: #fff;
    max-width: 900px;
    width: 100%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    gap: 20px;
    flex-wrap: wrap; /* allow wrapping on smaller screens */
}

.cta-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    background-image: url(../images/stethoscope.png);
    background-size: 70% auto;
    background-repeat: no-repeat;
    background-position: bottom center;
    height: 300px;
    min-width: 150px;
}

.cta-content {
    flex: 1;
    padding-left: 30px;
    min-width: 200px;
}

.cta-content h2 {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.cta-content p {
    font-size: 15px;
    color: #ccc;
    margin-bottom: 25px;
    line-height: 1.5;
}

.cta-btn {
    display: inline-block;
    background: linear-gradient(to right, #ff6600, #ff9900);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    padding: 12px 25px;
    border-radius: 25px;
    transition: 0.3s;
}

.cta-btn:hover {
    opacity: 0.85;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .cta-box {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }

    .cta-image {
        margin-bottom: 20px;
        background-size: 70% auto;
        height: 250px;
    }

    .cta-content {
        padding-left: 0;
    }
}

@media (max-width: 480px) {
    .cta-image {
        background-size: 60% auto;
        height: 200px;
    }

    .cta-content h2 {
        font-size: 1.5rem;
    }

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


/* service cards */

:root {
	--color-text: #616161;
	--color-text-btn: #ffffff;
	--card1-gradient-color1: #f12711;
	--card1-gradient-color2: #f5af19;
	--card2-gradient-color1: #7F00FF;
	--card2-gradient-color2: #E100FF;
	--card3-gradient-color1: #3f2b96;
	--card3-gradient-color2: #a8c0ff;
	--card4-gradient-color1: #11998e;
	--card4-gradient-color2: #38ef7d;
	--primary-color: #296169;
	/* --primary-color: #e5f8fa; */

}


.card-wrap {
	width: 220px;
	background: #fff;
	border-radius: 20px;
	border: 5px solid #fff;
	overflow: hidden;
	color: var(--color-text);
	box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px,
		rgba(0, 0, 0, 0.23) 0px 6px 6px;
	cursor: pointer;
	transition: all .2s ease-in-out;
}

.card-wrap:hover {
	transform: scale(1.1);
}

.card-header {
	height: 200px;
	width: 100%;
	background: red;
	border-radius: 100% 0% 100% 0% / 0% 50% 50% 100%;
	display: grid;
	place-items: center;

}

.card-header i {
	color: #fff;
	font-size: 72px;
}

.card-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 60%;
	margin: 0 auto;
}

.card-title {
	text-align: center;
	text-transform: uppercase;
	font-size: 16px;
	margin-top: 10px;
	margin-bottom: 20px;

}

.card-text {
	text-align: center;
	font-size: 12px;
	margin-bottom: 20px;
}

.card-btn {
	border: none;
	border-radius: 100px;
	padding: 5px 30px;
	color: #fff;
	margin-bottom: 15px;
	text-transform: uppercase;
}

.card-header.one {
	background: linear-gradient(to bottom left, var(--card1-gradient-color1), var(--card1-gradient-color2));
}

.card-header.two {
	background: linear-gradient(to bottom left, var(--card2-gradient-color1), var(--card2-gradient-color2));
}

.card-header.three {
	background: linear-gradient(to bottom left, var(--card3-gradient-color1), var(--card3-gradient-color2));
}

.card-header.four {
	background: linear-gradient(to bottom left, var(--card4-gradient-color1), var(--card4-gradient-color2));
}

.card-btn.one {
	background: linear-gradient(to left, var(--card1-gradient-color1), var(--card1-gradient-color2));
}

.card-btn.two {
	background: linear-gradient(to left, var(--card2-gradient-color1), var(--card2-gradient-color2));
}

.card-btn.three {
	background: linear-gradient(to left, var(--card3-gradient-color1), var(--card3-gradient-color2));
}

.card-btn.four {
	background: linear-gradient(to left, var(--card4-gradient-color1), var(--card4-gradient-color2));
}


.services {
	padding: 80px 20px;
	background: #fafafa;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
}

.section-header {
	text-align: center;
	margin-bottom: 60px;
}

.section-header h2 {
	font-size: 2.5rem;
	font-weight: bold;
	color: #222;
}

.section-header p {
	font-size: 1.1rem;
	color: #666;
	max-width: 600px;
	margin: 0 auto;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 24px;
}

.card {
	background: #fff;
	border-radius: 12px;
	padding: 24px;
	transition: all 0.3s ease;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

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

.card-header {
	text-align: center;
	margin-bottom: 16px;
}

.icon-circle {
	width: 64px;
	height: 64px;
	background: rgba(0, 110, 255, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 12px;
	color: var(--primary-color);
}

.icon-circle i {
	line-height: 1;
}



.card h3 {
	font-size: 1.25rem;
	font-weight: 600;
	color: #222;
}

.card-content p {
	color: #666;
	font-size: 0.95rem;
	margin-bottom: 12px;
	text-align: center;
}

.card-content h4 {
	font-size: 1rem;
	font-weight: 600;
	margin: 12px 0;
	color: #222;
}

.card-content ul {
	list-style: none;
	padding: 0;
}

.card-content ul li {
	font-size: 0.9rem;
	color: #555;
	margin-bottom: 6px;
	position: relative;
	padding-left: 14px;
}

.card-content ul li::before {
	content: "";
	width: 6px;
	height: 6px;
	background: #006eff;
	border-radius: 50%;
	position: absolute;
	left: 0;
	top: 8px;
}

/* Why Choose */
.why-choose {
	margin-top: 80px;
	background: linear-gradient(to right, rgba(0, 110, 255, 0.05), rgba(0, 180, 255, 0.05));
	border-radius: 20px;
	padding: 40px;
	text-align: center;
}

.why-choose h3 {
	font-size: 1.8rem;
	font-weight: bold;
	margin-bottom: 40px;
}

.why-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 24px;
}

.why-item {
	text-align: center;
}

.icon-circle.small {
	width: 48px;
	height: 48px;
	margin-bottom: 12px;
}

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

.why-item h4 {
	font-size: 1rem;
	font-weight: 600;
	margin-bottom: 8px;
	color: #222;
}

.why-item p {
	font-size: 0.9rem;
	color: #555;
}



/* service card index page */

.service-card {
	position: relative;
	/* width: 300px; */
    height: 450px;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
	transition: transform 0.5s ease;
}

.service-card:hover {
	transform: translateY(-10px);
}

.service-card-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	transition: transform 0.75s cubic-bezier(0.19, 1, 0.22, 1);
	z-index: 1;
}

/* Specialty backgrounds */
.service-card-image.arthroscopy {
	background-image: url("../images/services/Arthroscopy.png");
}

.service-card-image.trauma {
	background-image: url("../images/services/trauma.png");
}

.service-card-image.arthroplasty {
	background-image: url("../images/services/Arthroplasty.png");
}

.service-card-image.cold-orthopedics {
	background-image: url("../images/services/Cold-Orthopedics.png");
}


/* .service-card:hover .service-card-image {
	transform: translateY(-100px);
} */

.service-card-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.2);
	/* light overlay initially */
	z-index: 2;
	transition: background 0.5s ease;
}

/* Darken on hover */
.service-card:hover .service-card-overlay {
	background: rgba(0, 0, 0, 0.4);
	/* darker overlay */
}


/* .service-card:hover .service-card-overlay {
	height: 280px;
} */

.service-card-header {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 20px;
	z-index: 3;
	transition: transform 0.75s cubic-bezier(0.19, 1, 0.22, 1);
}

/* .service-card:hover .service-card-header {
	transform: translateY(-100px);
} */

.service-card-tag {
	display: inline-block;
	background: #ff3e6c;
	color: white;
	font-size: 0.7rem;
	font-weight: 600;
	padding: 4px 12px;
	border-radius: 15px;
	margin-bottom: 10px;
	transform: translateY(40px);
	opacity: 0;
	transition: transform 0.75s cubic-bezier(0.19, 1, 0.22, 1),
		opacity 0.75s cubic-bezier(0.19, 1, 0.22, 1);
}

.service-card:hover .service-card-tag {
	transform: translateY(0);
	opacity: 1;
	transition-delay: 0.1s;
}

.service-card-title {
	font-size: 1.75rem;
	font-weight: 700;
	margin-bottom: 10px;
	color: white;
}

.service-card-subtitle {
	font-size: 0.85rem;
	opacity: 0.8;
	margin-bottom: 15px;
	color: white;
}

.service-card-content {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 50px;
	z-index: 3;
	transform: translateY(100%);
	transition: transform 0.75s cubic-bezier(0.19, 1, 0.22, 1);
	color: white;
}

.service-card:hover .service-card-content {
	transform: translateY(0);
}

.service-card-description {
	font-size: 0.9rem;
	line-height: 1.5;
	margin-bottom: 25px;
	opacity: 0;
	transform: translateY(20px);
	transition: transform 0.75s cubic-bezier(0.19, 1, 0.22, 1),
		opacity 0.75s cubic-bezier(0.19, 1, 0.22, 1);
}

.service-card:hover .service-card-description {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 0.25s;
}

.service-card-details {
	display: flex;
	justify-content: space-between;
	margin-bottom: 20px;
	opacity: 0;
	transform: translateY(20px);
	transition: transform 0.75s cubic-bezier(0.19, 1, 0.22, 1),
		opacity 0.75s cubic-bezier(0.19, 1, 0.22, 1);
}

.service-card:hover .service-card-details {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 0.35s;
}

.detail-item {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.detail-value {
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 5px;
}

.detail-label {
	font-size: 0.7rem;
	text-transform: uppercase;
	opacity: 0.7;
}

.service-card-button {
	width: 100%;
	padding: 12px 0;
	background: transparent;
	border: 2px solid white;
	color: white;
	font-size: 0.9rem;
	font-weight: 600;
	border-radius: 50px;
	cursor: pointer;
	transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
	opacity: 0;
	transform: translateY(20px);
}

.service-card:hover .service-card-button {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 0.45s;
}

.service-card-button:hover {
	background: white;
	color: #004e92;
	transform: translateY(-3px);
}

.service-card-shapes {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	z-index: 0;
}

/* end sercice card index */

.about_head {
	font-size: 2.5rem;
}

i {
	color: var(--primary-color);
}

.rounded-circle {
	background-color: var(--primary-color);
}

/* .about-border{
	background-color: var(--primary-color) !important;
} */

.featured-img-wrapper {
	height: 300px;
	/* fixed height for uniform look */
	overflow: hidden;
	border-radius: 8px;
}

.featured-img-wrapper img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	/* keeps aspect ratio while filling box */
}

.doctor_img {
	box-shadow: var(--primary-color) -18px -15px;
}


.about_section h2,
.about_section h3 {
	position: relative;
	display: inline-block;
	padding-bottom: 8px;
}

.about_section h2::after,
.about_section h3::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 3px;
	background: var(--primary-color);
	border-radius: 2px;
}

.Qualification.card.h-100 {
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.Qualification.card.h-100:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

.Qualification .card .card-body i {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: var(--primary-color);
	color: #fff !important;
	margin-bottom: 15px;
}

.fade-in {
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.8s ease-out;
}

.fade-in.show {
	opacity: 1;
	transform: translateY(0);
}





/* Parallax section */
.parallax-section {
	background: url('../images/why-choose.png') center center / cover no-repeat fixed;
	min-height: 80vh;
	position: relative;
	display: flex;
	align-items: center;
	overflow: visible;
	/* allow overflow */
	margin: 7rem 0;
}

/* Optional overlay */
.parallax-section::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	/* background: rgba(0,0,0,0.2); */
	z-index: 1;
}

/* Floating content box */
.content-box {
	color: #ffffff;
	border-radius: 12px;
	position: relative;
	z-index: 2;
	margin: -80px 0;
	/* makes box overflow outside */
	padding: 100px 50px;
	background: #296169bd;
}

/* Responsive */
@media (max-width: 991px) {
	.parallax-section {
		background-attachment: scroll;
	}

	.content-box {
		margin-top: 20px;
		/* no overflow on small screens */
		padding: 2rem;
	}
}

.feature-item {
	padding-bottom: 1rem;
	margin-bottom: 1.5rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.3);
	/* white transparent line */
}

.feature-item:last-child {
	border-bottom: none;
	/* remove line from last item */
}


.service-section {
	padding: 80px 0;
}

.service-box {
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
	padding: 40px;
	margin-bottom: 40px;
	position: relative;
	transition: all 0.3s ease-in-out;
}

.service-box:hover {
	transform: translateY(-6px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.service-box h2 {
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 20px;
	text-align: center;
}

.service-box h4 {
	font-weight: 700;
	color: #333;
	margin-bottom: 15px;
}

.divider {
	height: 3px;
	width: 60px;
	background: var(--primary-color);
	margin: 0 auto 25px;
	/* centers the divider and keeps bottom margin */
}

.icon-circle {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: var(--primary-color);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 28px;
	margin-bottom: 20px;
}

/* Side Nav */
.side-nav {
	position: sticky;
	top: 100px;
	padding: 20px;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.side-nav a {
	display: block;
	padding: 10px 15px;
	margin-bottom: 10px;
	font-weight: 600;
	color: var(--primary-color);
	border-radius: 8px;
	text-decoration: none;
	transition: 0.3s;
	border: 2px solid var(--primary-color);
}

.side-nav a:hover {
	background: var(--primary-color);
	color: #fff;
}

.side-nav a:hover i {
	color: #fff;
}

/* .service_header {
	background-color: var(--primary-color);
	background-image: url(../images/service_bg.svg);
	background-position: center right;
	background-repeat: no-repeat;
	background-size: contain;

	clip-path: ellipse(100% 100% at 50% 0%);
} */

/* HERO SECTION RESPONSIVENESS */
.service_header {
  position: relative;
  background-color: var(--primary-color);
  background-image: url("../images/service_bg.svg");
  background-position: center right;
  background-repeat: no-repeat;
  background-size: contain;
  clip-path: ellipse(100% 100% at 50% 0%);
  color: #fff;
}

.service-img {
	width: 100%;
	height: 100%;
	/* image fills column height */
	object-fit: cover;
	/* keeps aspect ratio, crops if needed */
	border-radius: 8px;
	/* optional */
}

footer i {
	color: #fff !important;
}

.contact-bg {
	background: var(--primary-color);
	color: #fff;
}







/* Search Section */
.search-section {
	background: #f8f9fa;
	padding: 0;
	min-height: 100vh;
	color: #333;
}

.search-section .container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px;
	background: white;
	border-radius: 20px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
	margin-top: 20px;
	margin-bottom: 20px;
}

/* Header */
.header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 0 40px 0;
}

.logo {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 18px;
	font-weight: 600;
	color: #333;
}

.logo-accent {
	color: #ff6b35;
}

.header-icons {
	display: flex;
	gap: 20px;
	font-size: 18px;
	color: #666;
}

/* Main Content */
.search-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: start;
	padding-bottom: 40px;
}

/* Left Side */
.search-left h1 {
	font-size: 3.2rem;
	font-weight: 700;
	margin-bottom: 20px;
	line-height: 1.1;
	color: #333;
}

.search-left p {
	font-size: 14px;
	color: #666;
	margin-bottom: 40px;
	line-height: 1.6;
	max-width: 400px;
}

.search-bar {
	display: flex;
	background: #f8f9fa;
	border-radius: 25px;
	padding: 4px;
	margin-bottom: 40px;
	border: 1px solid #e9ecef;
}

.search-bar input {
	flex: 1;
	border: none;
	padding: 12px 20px;
	border-radius: 25px;
	outline: none;
	font-size: 14px;
	background: transparent;
	color: #333;
}

.search-bar input::placeholder {
	color: #aaa;
}

.search-bar button {
	background: #ff6b35;
	color: white;
	border: none;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
}

.search-bar button:hover {
	background: #e55a2e;
}

.trending {
	margin-top: 30px;
}

.trend-label {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 1px;
	display: block;
	margin-bottom: 15px;
	color: #999;
}

.trend-tags {
	display: flex;
	gap: 15px;
	flex-wrap: wrap;
}

.tag {
	padding: 8px 0;
	font-size: 13px;
	cursor: pointer;
	transition: all 0.3s ease;
	color: #999;
	border-bottom: 2px solid transparent;
	background: transparent;
	border: none;
}

.tag.active {
	color: #ff6b35;
	border-bottom-color: #ff6b35;
	font-weight: 600;
}

.tag:hover {
	color: #ff6b35;
}

/* Right Side */
.search-right {
	position: relative;
	height: 500px;
}

/* Discount Card */
.discount-card {
	position: absolute;
	top: 0;
	right: 0;
	background: #ff6b35;
	color: white;
	padding: 20px;
	border-radius: 15px;
	z-index: 3;
	width: 140px;
	height: 120px;
	box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.discount-percent {
	font-size: 36px;
	font-weight: 700;
	line-height: 1;
	margin-bottom: 10px;
}

.discount-content {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}

.discount-dots {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4px;
}

.dot {
	width: 6px;
	height: 6px;
	background: rgba(255, 255, 255, 0.5);
	border-radius: 50%;
}

.discount-text {
	text-align: right;
}

.discount-text span {
	display: block;
	font-size: 10px;
	margin-bottom: 2px;
	opacity: 0.9;
}

.discount-text strong {
	font-size: 16px;
	font-weight: 700;
}

/* Image Gallery - Optimized for Tall Images */
.image-gallery {
	position: absolute;
	top: 30px;
	left: 0;
	right: 150px;
	bottom: 120px;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-template-rows: 1fr 1fr 1fr;
	gap: 12px;
}

.gallery-item {
	border-radius: 12px;
	overflow: hidden;
	transition: transform 0.3s ease;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	position: relative;
}

.gallery-item:hover {
	transform: translateY(-2px);
}

.gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	/* Focus on top of tall images */
}

/* Specific adjustments for tall images */
.item-1 img {
	object-position: center center;
	/* Wide item - center positioning */
}

.item-2 img,
.item-3 img,
.item-4 img,
.item-5 img {
	object-position: center 20%;
	/* Tall items - focus on upper portion */
}

/* Gallery Grid Layout */
.item-1 {
	grid-column: 1 / 3;
	grid-row: 1 / 2;
}

.item-2 {
	grid-column: 3 / 4;
	grid-row: 1 / 2;
}

.item-3 {
	grid-column: 3 / 4;
	grid-row: 2 / 4;
}

.item-4 {
	grid-column: 1 / 2;
	grid-row: 2 / 4;
}

.item-5 {
	grid-column: 2 / 3;
	grid-row: 2 / 3;
}

/* Featured Collection */
.featured-collection {
	position: absolute;
	bottom: 0;
	left: 0;
	background: #ff6b35;
	color: white;
	padding: 16px 20px;
	border-radius: 15px;
	z-index: 3;
	width: 180px;
	height: 100px;
	box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.featured-badge {
	font-size: 12px;
	font-weight: 600;
	line-height: 1.3;
}

.featured-dots {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 4px;
	width: 40px;
}

.featured-icon {
	position: absolute;
	bottom: 16px;
	right: 20px;
	font-size: 20px;
	opacity: 0.8;
}

/* Additional styles for better tall image handling */
@media (min-width: 769px) {
	.gallery-item img {
		min-height: 100%;
		max-height: 200px;
		/* Limit height for very tall images */
	}

	.item-3 img,
	.item-4 img {
		max-height: 300px;
		/* Allow taller items to be taller */
	}
}

/* Responsive Design */
@media (max-width: 768px) {
	.search-content {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.search-left h1 {
		font-size: 2.5rem;
		text-align: center;
	}

	.search-right {
		height: 400px;
		margin: 0 auto;
		max-width: 500px;
	}

	.image-gallery {
		right: 120px;
	}

	.discount-card,
	.featured-collection {
		width: 120px;
		height: 90px;
		padding: 12px 16px;
	}

	/* Mobile optimizations for tall images */
	.gallery-item img {
		object-position: center 30%;
	}
}

@media (max-width: 480px) {
	.container {
		margin: 10px;
		padding: 15px;
	}

	.search-left h1 {
		font-size: 2rem;
	}

	.search-right {
		height: 350px;
	}

	.trend-tags {
		justify-content: center;
	}
}


.custom-shape {
	width: 350px;
	height: 400px;
	background: #e0dfdf;
	/* light bg behind */
	border-radius: 100px 20px 100px 40px;
	position: relative;
	overflow: visible;
	/* allow image to pop out */
}

.person-image {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	max-width: 380px;
	/* slightly larger than container */
	border-radius: 0 0 100px 15px !important;
}



/* condition section */
.conditions-section {
	background: #f9fbfc;
}

.condition-card {
	transition: all 0.3s ease;
	background: #fff;
}

.condition-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.condition-icon {
	width: 60px;
	height: 60px;
	object-fit: contain;
}

.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.15);
	/* Black overlay with transparency */
	z-index: 1;
}

/* contact page */
.contact-info-box {
  background: var(--primary-color);
  color: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}
.contact-info-box i{
	color: #fff !important;
}


.contact-box {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.1);
}

.contact-box h2 {
  text-align: center;
  margin-bottom: 25px;
  color: #0d3b66;
}

.form-group {
  margin-bottom: 18px;
}

input,
textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #dcdcdc;
  border-radius: 10px;
  background: #f9fcff;
  font-size: 14px;
  transition: all 0.3s ease;
}

input:focus,
textarea:focus {
  border-color: #0d3b66;
  background: #fff;
  box-shadow: 0 0 5px rgba(13, 59, 102, 0.2);
  outline: none;
}

textarea {
  resize: none;
  height: 120px;
}

.submit-btn {
  width: 100%;
  background: var(--primary-color);
  color: #fff;
  border: none;
  padding: 14px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 12px;
  cursor: pointer;
  transition: 0.3s;
}

.submit-btn:hover {
  background: #1d5a99;
}

.success-msg {
  display: none;
  color: #28a745;
  margin-top: 15px;
  text-align: center;
}

.map-container iframe {
  width: 100%;
  border-radius: 10px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .contact-info-box {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .contact_section .row {
    flex-direction: column;
  }

  .contact-info-box,
  .contact-box {
    width: 100%;
    margin: 0 auto;
  }

  .contact-info-box {
    padding: 25px 20px;
  }

  .contact-box {
    margin-top: 20px;
  }

  input,
  textarea {
    font-size: 14px;
  }
}
.video-box {
  display: block;
  max-width: 100%;
  padding: 5px;
  margin: 0 auto; /* center the video */
}

.video-container {
  position: relative;
  width: 100%;
  max-width: 900px;      
  aspect-ratio: 16 / 9;  /* keeps 16:9 on any width */
  overflow: hidden;
  border-radius: 12px;
  margin: 0 auto;
  
  /* Shadow and smooth transition */
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect */
.video-container:hover {
  transform: scale(1.03);           /* subtle zoom */
  box-shadow: 0 12px 28px rgba(0,0,0,0.3);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 12px;
}




.error {
  border-color: #e63946 !important;
}

.error-msg {
  color: #e63946;
  font-size: 14px;
  margin-top: 5px;
  display: block;
}




/* video page */
.video_gallery {
  text-align: center;
  margin-top: 55px;
}

.video-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  padding: 10px;
}

/* Video styling */
.video-gallery video {
  flex: 1 1 calc(25% - 25px);
  max-width: 23%;
  height: 55vh;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-gallery video:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.3);
}

/* Responsive design */
@media (max-width: 992px) {
  .video-gallery video {
    flex: 1 1 calc(45% - 20px);
    max-width: 45%;
    height: 45vh;
  }
}

@media (max-width: 576px) {
  .video-gallery video {
    flex: 1 1 100%;
    max-width: 100%;
    height: auto;
  }
}



	@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500&display=swap");

.image_gallery {
  text-align: center;
  margin-top: 55px;
  font-family: 'Poppins', sans-serif;
}

/* Each box container */
.gallery-box {
  position: relative;
  width: 100%;
  max-width: 18rem;
  height: 20rem;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  transition: transform 0.4s ease;
}

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

/* Image wrapper */
.imgBox {
  width: 100%;
  height: 100%;
  transition: all 0.5s ease-in-out;
}

.imgBox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

/* Optional hover animation for fancy effect */
.gallery-box:hover .imgBox {
  transform: scale(1.03);
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .gallery-box {
    max-width: 16rem;
    height: 18rem;
  }
}

@media (max-width: 576px) {
  .gallery-box {
    max-width: 100%;
    height: 16rem;
  }
}



.whatsapp-float {
  position: fixed;
  bottom: 100px;
  right: 20px;
  z-index: 1000;
  text-decoration: none;
}

.whatsapp-icon { 
  width: 80px;
  height: 80px;
  border-radius: 50%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

