/* ---- About section ---- */

#about-section {
	padding-top: 65px;
	/* padding-bottom: 65px; */
}

.about-details {
	display: flex;
	justify-content: center;
	align-items: center;
	padding-bottom: 60px;
}

.about-us-intro h2.style-1 {
	font-size: 40px;
	font-variant: small-caps;
	letter-spacing: 1px;
	font-weight: 600;
	color: var(--secondary-color);
	text-align: center;
	margin: 0 auto 24px;
	position: relative;
	padding-bottom: 12px;
	display: inline-block;
}
.about-us-intro h2.style-1::after {
	content: '';
	width: 100px;
	height: 2px;
	background-color: var(--primary-color);
	display: block;
	margin: 8px auto 0;
	border-radius: 2px;
}

/* .regular-content {
	width: 60%;
	margin-left: 100px;
} */

.regular-content.rc-style-4 {
	max-width: 760px;
	margin: 0 auto;
	padding: 26px;
	font-family: 'Georgia', serif;
	color: #0b1220;
	line-height: 1.9;
	background: transparent;
	/* margin-top: 60px; */
}
.regular-content.rc-style-4 header h3 {
	font-size: 26px;
	margin: 0 0 12px;
	font-weight: 700;
	letter-spacing: 0.2px;
}

.text {
	display: flex;
	justify-content: center;
	padding-bottom: 30px;
	font-size: 30px;
	font-weight: 800;
	font-style: italic;
	/* color: #62c4e2; */
	background: linear-gradient(180deg, #bfddf2 0%, #031c2d 100%);

	-webkit-background-clip: text;
	color: transparent;
}

.regular-content.rc-style-4 p {
	margin: 0 0 5px;
	font-size: 17px;
	color: #253046;
}
.regular-content.rc-style-4 p:first-of-type::first-letter {
	float: left;
	font-size: 40px;
	line-height: 0.8;
	/* margin-right: 10px; */
	font-weight: 700;
	color: var(--secondary-color);
}

/* @media (max-width: 640px) {
	.regular-content.rc-style-4 header h3 {
		font-size: 20px;
	}
	.regular-content.rc-style-4 p:first-of-type::first-letter {
		font-size: 42px;
	}
} */

.position--realtive {
	width: 80%;
	/* height: 500px; */
	margin-top: 50px;
	border-radius: 15px;
}

.filp-img {
	transform: rotateY(180deg);
}

.about-us-space {
	margin: 30px 0;
}

/* ---- Treatments-Section ----- */

.text-center {
	padding: 0 150px;
}

.orthodontic-Treatments h2 {
	margin-bottom: 30px;
	font-size: 30px;
	font-weight: 800;
	font-style: italic;
	/* color: #62c4e2; */
	background: linear-gradient(180deg, #bfddf2 0%, #031c2d 100%);
	padding-top: 30px;
	-webkit-background-clip: text;
	color: transparent;
	/* font-size: 28px; */
	/* font-weight: 700; */
	padding-bottom: 14px;
	position: relative;
}

.orthodontic-Treatments.style-6 h2::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 12%;
	transform: translateX(-50%);
	width: 160px;
	height: 4px;
	background: linear-gradient(90deg, #85ffe0, #6bafff);
	border-radius: 4px;
}

:root {
	--accent: var(--secondary-color, #00a8ff);
	--card-border: #e6e6e6;
	--text-muted: #8a8e91;
}

.services {
	display: flex;
	justify-content: center;
}

/* Base card */
.services .service {
	position: relative;
	width: 100%;
	min-height: 320px;
	margin: 20px 0;
	text-align: center;
	padding: 48px 20px 22px;
	border: 1px solid var(--card-border);
	border-radius: 6px;
	background: #fff;
	transition: transform 0.28s cubic-bezier(0.2, 0.9, 0.3, 1), box-shadow 0.28s,
		border-color 0.22s;
	box-shadow: 0 6px 18px rgba(11, 17, 32, 0.04);
	overflow: visible;
}

/* top overlapping badge */
.services .service .icon-holder {
	position: absolute;
	/* top: -28px; */
	left: 50%;
	transform: translateX(-50%);
	width: 70px;
	height: 70px;
	display: grid;
	place-items: center;
	background: #fff;
	border-radius: 8px;
	border: 2px solid #f1f4f6;
	box-shadow: 0 8px 20px rgba(11, 17, 32, 0.06);
	transition: transform 0.32s cubic-bezier(0.2, 0.9, 0.3, 1), background 0.28s,
		border-color 0.22s;
	z-index: 3;
	padding: 10px;
}

/* icon size */
.services .service .icon-holder > img.icon {
	width: 50px;
	height: 50px;
	display: block;
	transition: transform 0.28s, filter 0.28s;
}

/* heading/description initial */
.services .service .heading {
	margin-top: 100px;
	margin-bottom: 12px;
	font-size: 22px;
	font-weight: 700;
	color: #102030;
	transition: transform 0.32s cubic-bezier(0.2, 0.9, 0.3, 1), color 0.22s;
}

.services .service .description {
	width: 80%;
	margin: 8px auto 0;
	color: var(--text-muted);
	font-size: 15px;
	line-height: 1.6;

	opacity: 0;
	transform: translateY(8px) scale(0.98);
	transform-origin: top center;
	transition: opacity 0.36s cubic-bezier(0.2, 0.9, 0.3, 1),
		transform 0.36s cubic-bezier(0.2, 0.9, 0.3, 1);
	pointer-events: none;
}

/* Hover / focus & "show" class (for mobile toggle) */
.services .service:hover,
.services .service:focus-within,
.services .service.show {
	border-color: var(--accent);
	box-shadow: 0 20px 48px rgba(11, 17, 32, 0.1);
	transform: translateY(-6px);
}

/* badge color and lift */
.services .service:hover .icon-holder,
.services .service:focus-within .icon-holder,
.services .service.show .icon-holder {
	background: linear-gradient(
		180deg,
		var(--accent),
		color-mix(in srgb, var(--accent) 70%, black)
	);
	border-color: color-mix(in srgb, var(--accent) 30%, #fff);
	transform: translateX(-50%) translateY(-80px) scale(1.02);
}

/* make icon appear white on colored badge */
.services .service:hover .icon-holder > img.icon,
.services .service:focus-within .icon-holder > img.icon,
.services .service.show .icon-holder > img.icon {
	filter: brightness(0) invert(1) sepia(0.05) saturate(0.9);
	transform: translateY(-1px);
}

/* heading nudges and becomes accent */
.services .service:hover .heading,
.services .service:focus-within .heading,
.services .service.show .heading {
	transform: translateY(-50px);
	color: var(--accent);
}

/* reveal description */
.services .service:hover .description,
.services .service:focus-within .description,
.services .service.show .description {
	opacity: 1;
	transform: translateY(0) scale(1);
	pointer-events: auto;
}

/* top decorative line that lights up on hover (subtle) */
.services .service::after {
	content: '';
	position: absolute;
	top: 0;
	left: 12%;
	right: 12%;
	height: 3px;
	background: transparent;
	transition: background 0.22s;
	z-index: 1;
}
.services .service:hover::after,
.services .service:focus-within::after,
.services .service.show::after {
	background: linear-gradient(
		90deg,
		color-mix(in srgb, var(--accent) 40%, white),
		color-mix(in srgb, var(--accent) 20%, #fff)
	);
	opacity: 0.9;
}

/* keyboard focus outline */
.services .service:focus-within {
	outline: none;
	box-shadow: 0 0 0 4px rgba(26, 124, 255, 0.08);
}

.hover-effect a {
	text-decoration: none;
}

.hover-effect a:hover {
	cursor: pointer;
}

/* ---- Button ---- */

/* .btn-asym {
	background-color: var(--primary-color);
	height: 48px;
	padding: 0 26px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	
	color: var(--secondary-color);
	font-weight: 700;
	border-radius: 6px 36px 36px 60px; 
	box-shadow: 0 10px 28px rgba(33, 100, 210, 0.12);
	transition: transform 0.14s, box-shadow 0.14s;
	margin-top: 20px;
}
.btn-asym:hover {
	transform: translateY(-3px);
	box-shadow: 0 20px 50px rgba(33, 100, 210, 0.16);
	border-radius: 150px 50px 50px 30px;
	background-color: var(--secondary-color);
	color: var(--primary-color);
} */

/* responsive */
/* @media (max-width: 900px) {
	.services .service {
		padding: 36px 14px;
		min-height: 300px;
		margin: 28px 0;
	}
	.services .service .icon-holder {
		width: 56px;
		height: 56px;
		top: -24px;
	}
	.services .service .icon-holder > img.icon {
		width: 28px;
		height: 28px;
	}
	.services .service .heading {
		font-size: 20px;
	}
	.services .service .description {
		width: 90%;
		font-size: 14px;
	}
} */

.curved-section {
	position: relative;
	background: linear-gradient(180deg, rgba(187, 220, 230, 0.35));
	overflow: visible; /* 🔥 REQUIRED */
}

/* Curve base */
.curve {
	position: absolute;
	left: 0;
	width: 100%;
	height: 180px;
	z-index: 1;
	pointer-events: none;
}

/* Top */
.curve-top {
	top: 0;
}

/* Bottom */
.curve-bottom {
	bottom: 0;
}

/* SPACE for curves (MOST IMPORTANT PART) */
.curved-section {
	padding-top: 160px;
	padding-bottom: 160px; /* 🔥 without this bottom curve is hidden */
}

/* Content above curves */
.curved-section > .container {
	position: relative;
	z-index: 2;
}

/* ---- Round- shape ---- */

.round-shape {
	position: absolute;
	right: 0;
	bottom: -200px;
	z-index: -999;
	width: 16%;
}

/* ---- Our Mission nd Vission ---- */

/* Section base */
.mv-alt {
	padding: 90px 20px;
	background: #ffffff;
}

/* Title */
/* .mv-alt-title {
	text-align: center;
	font-size: 38px;
	font-weight: 800;
	color: #1a4d7e;
	margin-bottom: 70px;
} */

/* Wrapper */
.mv-alt-wrapper {
	display: flex;
	gap: 60px;
	align-items: flex-start;
}

/* Mission block */
.mv-mission {
	flex: 1;
	padding-left: 30px;
	position: relative;
}

/* Vertical line */
/* .mv-mission::before {
	content: '';
	position: absolute;
	left: 6px;
	top: 0;
	width: 3px;
	height: 100%;
	background: linear-gradient(180deg, #bbdce6, #1a4d7e);
	border-radius: 10px;
} */

/* .mv-mission h3 {
	font-size: 26px;
	margin-bottom: 24px;
	color: #1a4d7e;
} */

.title-mission {
	margin-bottom: 30px;
	font-size: 30px;
	font-weight: 800;
	font-style: italic;
	/* color: #62c4e2; */
	background: linear-gradient(180deg, #bfddf2 0%, #031c2d 100%);
	/* padding-top: 30px; */
	-webkit-background-clip: text;
	color: transparent;
	/* font-size: 28px; */
	/* font-weight: 700; */
	padding-bottom: 14px;
	position: relative;
	text-align: center;
}

.title-mission::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100px;
	height: 4px;
	background: linear-gradient(90deg, #85ffe0, #6bafff);
	border-radius: 4px;
}

/* Mission list */
.mission-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

/* .mission-list li {
	position: relative;
	padding-left: 26px;
	margin-bottom: 18px;
	font-size: 16px;
	line-height: 1.6;
	color: #334155;
} */

/* Bullet dots */
/* .mission-list li::before {
	content: '';
	position: absolute;
	left: -2px;
	top: 8px;
	width: 10px;
	height: 10px;
	background: #1a4d7e;
	border-radius: 50%;
} */

/* Vision block */
.mv-vision {
	flex: 1;
	background: linear-gradient(180deg, #f0f8ff, #ffffff);
	padding: 40px;
	border-radius: 20px;
	border-left: 6px solid #1a4d7e;
}

.mv-vision h3 {
	font-size: 26px;
	margin-bottom: 20px;
	color: #1a4d7e;
}

.mv-vision p {
	font-size: 16px;
	line-height: 1.8;
	color: #334155;
	margin-bottom: 16px;
}

/* Responsive */
@media (max-width: 900px) {
	.mv-alt-wrapper {
		flex-direction: column;
		gap: 40px;
	}

	.mv-alt-title {
		font-size: 30px;
	}
}

/* Section */
.mv-section {
	padding: 80px 20px;
	background: #f8fbff;
}

/* Title */
.mv-title {
	text-align: center;
	font-size: 36px;
	font-weight: 800;
	color: #1a4d7e;
	margin-bottom: 50px;
}

/* Grid */
.mv-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 40px;
}

/* Cards */
.mv-card {
	background: #ffffff;
	padding: 40px;
	border-radius: 16px;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
	border-top: 6px solid var(--primary-color);
}

/* Headings */
/* .mv-card h3 {
	font-size: 26px;
	margin-bottom: 20px;
	color: #1a4d7e;
} */

/* Mission List */
/* .mv-card ul {
	padding-left: 20px;
	margin: 0;
} */

/* .mv-card ul li {
	font-size: 16px;
	line-height: 1.7;
	margin-bottom: 12px;
	color: #334155;
} */

/* Vision text */
.mv-card p {
	font-size: 16px;
	line-height: 1.8;
	color: #334155;
	margin-bottom: 16px;
}

/* Special accents */
.mv-card.vision {
	border-top: 6px solid var(--primary-color);
}

.mv-card:hover {
	transform: translateY(-6px);
	transition: 0.3s ease;

	border-top: 6px solid var(--secondary-color);
}

.mv-card {
	background: linear-gradient(180deg, #ffffff 0%, #f2f9ff 45%, #e8f4ff 100%);
	padding: 40px;
	border-radius: 16px;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
	border-top: 6px solid #bbdce6;
}

/* Responsive */
@media (max-width: 900px) {
	.mv-grid {
		grid-template-columns: 1fr;
	}

	.mv-title {
		font-size: 30px;
	}
}

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

.mv-card.mission ul li {
	padding: 5px 18px;
	margin-bottom: 12px;
	font-size: 16px;
	color: var(--secondary-color);
	background: linear-gradient(90deg, rgba(187, 220, 230, 0.35) 0%, #ffffff 60%);
	border-radius: 10px;
}

.mv-card ul li {
	transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.mv-card ul li:hover {
	transform: translateY(-4px);
	background: #f2f9ff;
	box-shadow: 0 12px 30px rgba(26, 77, 126, 0.15);
}

/* Section base */
.mv-section {
	position: relative;
	background-color: #f2f2f1;
	padding: 180px 0 90px; /* space for curve */
	overflow: hidden;
}

/* Top curve */
.mv-top-curve {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 120px;
	z-index: 1;
}

/* Content above curve */
.mv-section .container {
	position: relative;
	z-index: 2;
}

.has-bottom-curve {
	position: relative;
	padding-bottom: 140px; /* space for curve */
}

.mv-bottom-curve {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 120px;
	z-index: 1;
	pointer-events: none;
}

/* Keep content above curve */
.has-bottom-curve .container {
	position: relative;
	z-index: 2;
}

/* ---- Clinic-Facilities ---- */

/* #clinic-facilities {
	background-image: url('../images/background-img.svg');
} */

.facilities-section {
	/* padding: 80px 20px; */
	/* background: #f8fbff; */
	padding-bottom: 50px;
}

.facilities-title {
	text-align: center;
	font-size: 36px;
	font-weight: 800;
	color: #1a4d7e;
	margin-bottom: 50px;
}

.facilities-list {
	max-width: 900px;
	margin: 0 auto;
	padding: 0;
	list-style: none;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 18px 40px;
}

.facilities-list li {
	position: relative;
	padding-left: 34px;
	font-size: 16px;
	line-height: 1.6;
	/* color: #334155; */
	color: var(--secondary-color);
	background: #ffffff;
	border-radius: 12px;
	padding: 14px 18px 14px 44px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
}

/* Check icon */
.facilities-list li::before {
	content: '✔';
	position: absolute;
	left: 16px;
	top: 14px;
	font-size: 14px;
	color: #1a4d7e;
	font-weight: 700;
}

/* Hover effect */
.facilities-list li:hover {
	background: #f1f8ff;
	transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
	.facilities-list {
		grid-template-columns: 1fr;
	}

	.facilities-title {
		font-size: 28px;
	}
}

/* ---- curve ---- */

/* ---- section-google-map ---- */

.google-map {
	width: 100%;
	height: 300px;
}
