.background {
	justify-content: center;
	padding: 80px 80px;
	font-family: "Lexend", sans-serif;
}

@media screen and (max-width: 768px) {
	.background {
		justify-content: center;
		padding: 10px 20px;
	}
}

/* Small Mobile View (≤480px) */
@media screen and (max-width: 480px) {
	.background {
		justify-content: center;
		padding: 10px 20px;
	}
}

/* hero sectin */
.abouthero-container {
	background: linear-gradient(135deg, #22919A 0%, #3398A0 50%, #06A7DC 100%);
	min-height: 480px;
	display: flex;
	align-items: center;
	padding: 40px 25px;
	border-radius: 10px;
	overflow: hidden;
	max-width: 1400px;
	margin: 0 auto;
}

.abouthero-content-wrapper {
	max-width: 1400px;
	margin: 0 auto;
	width: 100%;
	display: flex;
	gap: 40px;
	align-items: center;
}

.abouthero-left-content {
	flex: 1;
	max-width: 600px;
}

.abouthero-title {
	font-size: clamp(36px, 5vw, 60px);
	font-weight: 500;
	color: white;
	line-height: 1.1;
	margin-bottom: 30px;
	letter-spacing: -1px;
}

.abouthero-healthcare-text {
	color: #a7d129;
	font-weight: 700;
}

.abouthero-description {
	font-size: clamp(15px, 2vw, 18px);
	color: white;
	line-height: 1.6;
	margin-bottom: 30px;
	opacity: 0.95;
	font-weight: 400;
}

.abouthero-buttons {
	display: flex;
	gap: 20px;
	align-items: center;
	flex-wrap: wrap;
}

.abouthero-btn {
	padding: clamp(12px, 2vw, 15px) clamp(24px, 3vw, 30px);
	font-size: clamp(15px, 1.5vw, 18px);
	font-weight: 600;
	border-radius: 50px;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
	display: inline-block;
	text-align: center;
	border: 2px solid transparent;
	white-space: nowrap;
}

.abouthero-btn-primary {
	background: white;
	color: #0891b2;
	border: 2px solid white;
}

.abouthero-btn-primary:hover {
	background: transparent;
	color: white;
	border: 2px solid white;
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.abouthero-btn-secondary {
	background: transparent;
	color: white;
	border: 2px solid white;
}

.abouthero-btn-secondary:hover {
	background: white;
	color: #0891b2;
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.abouthero-right-content {
	flex: 1;
	max-width: 600px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.abouthero-image-container {
	position: relative;
	width: 100%;
	height: clamp(300px, 40vw, 450px);
	border-radius: 20px;
	overflow: hidden;
}

.abouthero-team-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: transform 0.3s ease;
}

.abouthero-team-image:hover {
	transform: scale(1.02);
}

/* Responsive Design */
@media (max-width: 1200px) {
	.abouthero-content-wrapper {
		gap: 40px;
		padding: 0 20px;
	}
}

@media (max-width: 992px) {
	.abouthero-container {
		padding: 40px 20px;
	}

	.abouthero-content-wrapper {
		flex-direction: column;
		gap: 40px;
		text-align: center;
	}

	.abouthero-left-content,
	.abouthero-right-content {
		max-width: 100%;
	}

	.abouthero-buttons {
		justify-content: center;
	}

	.abouthero-image-container {
		height: clamp(250px, 50vw, 400px);
	}
}

@media (max-width: 768px) {
	.abouthero-container {
		padding: 30px 15px;
	}

	.abouthero-content-wrapper {
		gap: 30px;
	}

	.abouthero-buttons {
		/* flex-direction: column; */
		gap: 15px;
		width: 100%;
		max-width: 300px;
		margin: 0 auto;
	}

	.abouthero-btn {
		width: 100%;
	}

	.abouthero-image-container {
		height: clamp(200px, 60vw, 350px);
		border-radius: 15px;
	}
}

@media (max-width: 480px) {
	.abouthero-container {
		padding: 25px 12px;
	}

	.abouthero-content-wrapper {
		gap: 25px;
	}

	.abouthero-image-container {
		height: clamp(180px, 70vw, 300px);
		border-radius: 12px;
	}
}

/* hero section */

/* missipon section */
.mission-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 50px 40px;
	display: flex;
	align-items: center;
	gap: 60px;
}

.mission-left-section {
	flex: 1;
	position: relative;
}

.mission-image-wrapper {
	position: relative;
	border-radius: 20px;
	overflow: visible;
}

.mission-main-image {
	width: 100%;
	height: 380px;
	object-position: center;
	border-radius: 20px;

	box-shadow: 0px 20px 25px -5px rgba(0, 0, 0, 0.1), 0px 8px 10px -6px rgba(0, 0, 0, 0.1);

}

.mission-heart-icon {
	position: absolute;
	bottom: -20px;
	right: -20px;
	width: 80px;
	height: 80px;
	background: #3398A0;
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 10px 30px rgba(8, 145, 178, 0.3);
	z-index: 1001;
}

.mission-heart-svg {
	width: 40px;
	height: 40px;
	fill: white;
}

.mission-right-section {
	flex: 1;
	max-width: 550px;
}

.mission-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(8, 145, 178, 0.1);
	color: #22919A;
	padding: 8px 16px;
	border-radius: 20px;
	font-size: 14px;
	font-weight: 500;
	margin-bottom: 0px;
}

.mission-badge-icon {
	width: 16px;
	height: 16px;
	border: 2px solid #0891b2;
	border-radius: 50%;
	position: relative;
}

.mission-badge-icon::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 6px;
	height: 6px;
	background: #0891b2;
	border-radius: 50%;
}

.mission-title {
	font-size: 42px;
	font-weight: 700;
	color: #1e293b;
	line-height: 1.2;
	margin: 15px 0px 0px 0px;
	letter-spacing: -0.5px;
}

.mission-description {
	font-size: 18px;
	color: #64748b;
	line-height: 1.7;
	margin-bottom: 5px;
}

.mission-features {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.mission-feature-item {
	display: flex;
	align-items: center;
	gap: 12px;
}

.mission-check-icon {
	width: 32px;
	height: 32px;
	background: #3398A0;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.mission-check-svg {
	width: 16px;
	height: 16px;
	stroke: white;
	stroke-width: 2;
	fill: none;
}

.mission-feature-text {
	font-size: 16px;
	color: #1e293b;
	font-weight: 500;
}

/* Responsive Design */
@media (max-width: 992px) {
	.mission-container {
		flex-direction: column;
		gap: 50px;
		padding: 60px 30px;
	}

	.mission-left-section,
	.mission-right-section {
		max-width: 100%;
	}

	.mission-title {
		font-size: 36px;
	}

	.mission-main-image {
		height: 350px;
	}
}

@media (max-width: 768px) {
	.mission-container {
		padding: 40px 20px;
		gap: 40px;
	}

	.mission-title {
		font-size: 32px;
		margin-bottom: 20px;
	}

	.mission-description {
		font-size: 15px;
		margin-bottom: 28px;
	}

	.mission-main-image {
		height: 300px;
	}

	.mission-heart-icon {
		width: 70px;
		height: 70px;
		bottom: -15px;
		right: -15px;
	}

	.mission-heart-svg {
		width: 35px;
		height: 35px;
	}

	.mission-features {
		gap: 14px;
	}

	.mission-feature-text {
		font-size: 15px;
	}
}

@media (max-width: 480px) {
	.mission-container {
		padding: 30px 15px;
	}

	.mission-title {
		font-size: 28px;
	}

	.mission-image-wrapper {
		border-radius: 15px;
	}

	.mission-heart-icon {
		width: 60px;
		height: 60px;
		border-radius: 12px;
	}

	.mission-heart-svg {
		width: 30px;
		height: 30px;
	}
}

/* missipon section */


/* vision section */
.vision-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 80px 40px;
	display: flex;
	align-items: center;
	gap: 80px;
}

.vision-left-section {
	flex: 1;
	max-width: 550px;
}

.vision-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(8, 145, 178, 0.1);
	color: #0891b2;
	padding: 8px 16px;
	border-radius: 20px;
	font-size: 14px;
	font-weight: 500;
	margin-bottom: 8px;
}

.vision-badge-icon {
	width: 16px;
	height: 16px;
	border: 2px solid #0891b2;
	border-radius: 50%;
	position: relative;
}

.vision-badge-icon::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 6px;
	height: 6px;
	background: #0891b2;
	border-radius: 50%;
}

.vision-title {
	font-size: 42px;
	font-weight: 700;
	color: #1e293b;
	line-height: 1.2;
	margin: 0px;
	letter-spacing: -0.5px;
}

.vision-description {
	font-size: 18px;
	color: #64748b;
	line-height: 1.7;
	margin-bottom: 20px;
}

.vision-stats {
	display: flex;
	gap: 20px;
}

.vision-stat-card {
	flex: 1;
	padding: 12px 30px;
	border-radius: 12px;
	text-align: center;
	color: white;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
}

.vision-stat-card:hover {
	transform: translateY(-5px);
}

.vision-stat-card.teal {
	background: linear-gradient(135deg, #22919A 0%, #3398A0 100%);
}

.vision-stat-card.green {
	background: linear-gradient(135deg, #88AA47 0%, #06A7DC 100%);
}

.vision-stat-number {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 8px;
	display: block;
}

.vision-stat-label {
	font-size: 14px;
	font-weight: 500;
	opacity: 0.9;
}

.vision-right-section {
	flex: 1;
	position: relative;
}

.vision-image-wrapper {
	position: relative;
	border-radius: 20px;
	overflow: visible;
}

.vision-main-image {
	width: 100%;
	height: 360px;
	object-fit: cover;
	object-position: center;
}

.vision-tech-icon {
	position: absolute;
	top: -18px;
	left: -18px;
	width: 70px;
	height: 70px;
	background: linear-gradient(90deg, #88AA47 0%, #06A7DC 100%);
	box-shadow: 0px 20px 25px -5px rgba(0, 0, 0, 0.1), 0px 8px 10px -6px rgba(0, 0, 0, 0.1);
	border-radius: 10px;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
}

.vision-tech-svg {
	width: 35px;
	height: 35px;
	fill: white;
}

/* Responsive Design */
@media (max-width: 992px) {
	.vision-container {
		flex-direction: column;
		gap: 50px;
		padding: 60px 30px;
	}

	.vision-left-section,
	.vision-right-section {
		max-width: 100%;
	}

	.vision-title {
		font-size: 36px;
	}

	.vision-main-image {
		height: 300px;
	}

	.vision-tech-icon {
		top: -15px;
		left: -15px;
		width: 60px;
		height: 60px;
	}

	.vision-tech-svg {
		width: 30px;
		height: 30px;
	}
}

@media (max-width: 768px) {
	.vision-container {
		padding: 40px 20px;
		gap: 40px;
	}

	.vision-title {
		font-size: 32px;
	}

	.vision-description {
		font-size: 15px;
	}

	.vision-stats {
		flex-direction: column;
		gap: 16px;
	}

	.vision-stat-card {
		padding: 20px 24px;
	}

	.vision-stat-number {
		font-size: 28px;
	}

	.vision-stat-label {
		font-size: 14px;
	}

	.vision-main-image {
		height: 250px;
	}

	.vision-tech-icon {
		top: -10px;
		left: -10px;
		width: 50px;
		height: 50px;
	}

	.vision-tech-svg {
		width: 25px;
		height: 25px;
	}
}

@media (max-width: 480px) {
	.vision-container {
		padding: 30px 15px;
		gap: 30px;
	}

	.vision-title {
		font-size: 28px;
	}

	.vision-stats {
		gap: 12px;
	}

	.vision-stat-card {
		padding: 16px 20px;
	}

	.vision-stat-number {
		font-size: 24px;
	}

	.vision-stat-label {
		font-size: 13px;
	}

	.vision-image-wrapper {
		border-radius: 15px;
	}

	.vision-main-image {
		height: 200px;
	}

	.vision-tech-icon {
		width: 40px;
		height: 40px;
		border-radius: 8px;
		top: -8px;
		left: -8px;
	}

	.vision-tech-svg {
		width: 20px;
		height: 20px;
	}
}

/* vision section */


/* value section */
.value-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 60px 20px;
}

.value-header {
	text-align: center;
	margin-bottom: 80px;
}

.value-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background-color: #e6f7ff;
	color: #3398A0;
	padding: 8px 16px;
	border-radius: 20px;
	font-size: 14px;
	font-weight: 500;
	margin-bottom: 0px;
}


.value-main-title {
	font-size: 42px;
	font-weight: 700;
	color: #1e3a8a;
	margin: 10px 0px 15px 0px;
	letter-spacing: -0.02em;
}

.value-subtitle {
	font-size: 18px;
	color: #6b7280;
	max-width: 700px;
	margin: 0 auto;
	line-height: 1.7;
}

.value-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
	margin-top: 40px;
}

.value-card {
	background: white;
	padding: 17px 17px;
	box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1), 0px 4px 6px -4px rgba(0, 0, 0, 0.1);
	border-radius: 16px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	border: 1px solid #f1f5f9;
}

.value-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.value-icon-wrapper {
	width: 54px;
	height: 54px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 24px;
	font-size: 24px;
	color: white;
}

.value-icon-compassion {
	background: linear-gradient(90deg, #22919A 0%, #3398A0 100%);

}

.value-icon-excellence {
	background: linear-gradient(90deg, #88AA47 0%, #06A7DC 100%);
}

.value-icon-integrity {
	background: linear-gradient(90deg, #06A7DC 0%, #22919A 100%);
}

.value-icon-innovation {
	background: linear-gradient(90deg, #3398A0 0%, #88AA47 100%);
}

.value-icon-collaboration {
	background: linear-gradient(90deg, #22919A 0%, #06A7DC 100%);
}

.value-icon-accessibility {
	background: linear-gradient(90deg, #88AA47 0%, #22919A 100%);
}

.value-card-title {
	font-size: 20px;
	font-weight: 700;
	color: #1e293b;
	margin-bottom: 16px;
}

.value-card-description {
	font-size: 14px;
	color: #64748b;
	line-height: 1.7;
}

@media (max-width: 768px) {
	.value-container {
		padding: 40px 16px;
	}

	.value-main-title {
		font-size: 36px;
	}

	.value-subtitle {
		font-size: 16px;
	}

	.value-grid {
		grid-template-columns: 1fr;
		gap: 24px;
		margin-top: 40px;
	}

	.value-card {
		padding: 32px 24px;
	}

	.value-header {
		margin-bottom: 60px;
	}
}

@media (max-width: 480px) {
	.value-main-title {
		font-size: 32px;
	}

	.value-card {
		padding: 24px 20px;
	}

	.value-icon-wrapper {
		width: 56px;
		height: 56px;
		font-size: 20px;
	}
}

/* value section */


/* book appointment section */
.book-cta-section {
	background: linear-gradient(90deg, #22919A 0%, #3398A0 50%, #06A7DC 100%);
	border-radius: 10px;
	padding: 10px 20px 40px 20px;	text-align: center;
	min-height: 270px;
	display: flex;
	align-items: center;
	justify-content: center;
	max-width: 1400px;
	margin: 0 auto;
}

.book-content-wrapper {
	max-width: 800px;
	margin: 0 auto;
}

.book-main-heading {
	font-size: 42px;
	font-weight: 700;
	color: white;
	margin-bottom: 24px;
	letter-spacing: -0.02em;
	line-height: 1.2;
}

.book-subtitle-text {
	font-size: 18px;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 40px;
	line-height: 1.6;
	font-weight: 400;
}

.book-button-container {
	display: flex;
	gap: 20px;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}

.book-primary-button {
	background-color: white;
	color: #000;
	font-size: 14px;
	font-weight: 600;
	padding: 12px 24px;
	border: none;
	border-radius: 50px;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
	display: inline-block;
	min-width: 180px;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.book-primary-button:hover {
	background-color: #f8fafc;
	transform: translateY(-2px);
	box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
}

.book-secondary-button {
	background-color: transparent;
	color: white;
	font-size: 14px;
	font-weight: 600;
	padding: 12px 24px;
	border: 2px solid white;
	border-radius: 50px;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
	display: inline-block;
	min-width: 180px;
}

.book-secondary-button:hover {
	background-color: white;
	color: #0891b2;
	transform: translateY(-2px);
	box-shadow: 0 6px 24px rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
	.book-cta-section {
		padding: 60px 16px;
		min-height: 350px;
	}

	.book-main-heading {
		font-size: 36px;
		margin-bottom: 20px;
	}

	.book-subtitle-text {
		font-size: 18px;
		margin-bottom: 32px;
	}

	.book-button-container {
		/* flex-direction: column; */
		gap: 16px;
	}

	.book-primary-button,
	.book-secondary-button {
		width: 100%;
		max-width: 280px;
	}
}

@media (max-width: 480px) {
	.book-cta-section {
		padding: 50px 16px;
	}

	.book-main-heading {
		font-size: 32px;
		line-height: 1.3;
	}

	.book-subtitle-text {
		font-size: 16px;
	}

	.book-primary-button,
	.book-secondary-button {
		padding: 14px 28px;
		font-size: 15px;
	}
}

/* book appointment section */