:root {
	--bg-soft: #f3f5f9;
	--text-main: #1f1f29;
	--text-muted: #6f7784;
	--line-soft: #eceef3;
	--brand-blue: #2c53ff;
	--brand-cyan: #2ed4f2;
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: "Poppins", sans-serif;
	color: var(--text-main);
	background: #fff;
	padding-top: 115px;
}

@keyframes fadeUpIn {
	0% {
		opacity: 0;
		transform: translateY(22px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

.reveal-on-scroll {
	opacity: 0;
	transform: translateY(22px);
	transition: opacity 0.6s ease, transform 0.6s ease;
	transition-delay: var(--reveal-delay, 0ms);
	will-change: opacity, transform;
}

.reveal-on-scroll.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.hero-content > * {
	opacity: 0;
	animation: fadeUpIn 0.7s ease forwards;
}

.hero-content > *:nth-child(1) {
	animation-delay: 120ms;
}

.hero-content > *:nth-child(2) {
	animation-delay: 220ms;
}

.hero-content > *:nth-child(3) {
	animation-delay: 320ms;
}

.hero-content > *:nth-child(4) {
	animation-delay: 420ms;
}

.site-loader {
	position: fixed;
	inset: 0;
	z-index: 3000;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.16);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.28s ease, visibility 0.28s ease;
}

.site-loader.is-visible {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.site-loader-content {
	text-align: center;
	padding: 10px;
	color: #1d2f53;
}

.site-loader-logo {
	width: 100px;
	height: 100px;
	object-fit: contain;
	animation: loaderPulse 1.2s ease-in-out infinite;
	filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.38));
}

.site-loader h2 {
	display: none;
	margin: 16px 0 4px;
	font-size: clamp(26px, 4vw, 42px);
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: 0.3px;
}

.site-loader p {
	display: none;
	margin: 0;
	font-size: 16px;
	line-height: 1.6;
	color: rgba(231, 241, 255, 0.9);
}

.site-loader-spinner {
	display: none;
	margin: 20px auto 0;
	width: 34px;
	height: 34px;
	border: 3px solid rgba(255, 255, 255, 0.25);
	border-top-color: #2ed4f2;
	border-radius: 50%;
	animation: loaderSpin 0.9s linear infinite;
}

@keyframes loaderSpin {
	to {
		transform: rotate(360deg);
	}
}

@keyframes loaderPulse {
	0%,
	100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.08);
	}
}

a {
	text-decoration: none;
	color: inherit;
}

.container {
	width: min(1240px, calc(100% - 48px));
	margin: 0 auto;
}

.topbar {
	background: var(--bg-soft);
	border-bottom: 1px solid var(--line-soft);
}

.site-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	transition: transform 0.35s ease, box-shadow 0.3s ease;
}

.site-header.is-hidden {
	transform: translateY(-100%);
}

.site-header.is-scrolled {
	box-shadow: 0 8px 26px rgba(16, 26, 46, 0.12);
}

.topbar-inner {
	min-height: 45px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.topbar-left,
.topbar-right {
	display: flex;
	align-items: center;
	gap: 22px;
	flex-wrap: wrap;
}

.topbar-item {
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.2px;
	color: #6e7482;
}

.topbar-item i {
	color: #81879a;
	margin-right: 8px;
}

.topbar-right a {
	color: #7c8495;
	font-size: 19px;
}

.navbar {
	background: #fff;
}

.navbar-inner {
	min-height: 75px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 14px;
}

.brand-lines {
	display: inline-flex;
	flex-direction: column;
	line-height: 1.05;
}

.brand-logo {
	width:5rem;
	height:5rem;
	object-fit: contain;
	display: block;
}

.brand-text {
	font-size: 22px;
	font-weight: 600;
	line-height: 1.7;
	letter-spacing: 0.3px;
	color:rgb(31, 31, 138);
}

.brand-sub {
	font-size: 19px;
	font-weight: 500;
	letter-spacing: 0.3px;
	color:rgb(31, 31, 138);
}

.menu {
	list-style: none;
	display: flex;
	align-items: center;
	gap: 44px;
	margin: 0;
	padding: 0;
}

.menu a {
	font-size: 15px;
	font-weight: 600;
	color: #2b2f35;
	letter-spacing: 0.3px;
}

.menu a i {
	font-size: 12px;
	
}

.nav-toggle {
	display: none;
	width: 42px;
	height: 42px;
	border: 1px solid #b9c9ea;
	background: #ffffff;
	color: #2c53ff;
	font-size: 18px;
	cursor: pointer;
	align-items: center;
	justify-content: center;
}

.nav-toggle i {
	color: #2c53ff;
}

.nav-toggle-lines {
	display: inline-flex;
	flex-direction: column;
	justify-content: center;
	gap: 4px;
}

.nav-toggle-lines span {
	display: block;
	width: 18px;
	height: 2px;
	background: #2c53ff;
}

.sidebar-overlay {
	position: fixed;
	inset: 0;
	background: rgba(11, 18, 34, 0.5);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.2s ease, visibility 0.2s ease;
	z-index: 1090;
}

.mobile-sidebar {
	position: fixed;
	top: 0;
	right: 0;
	width: min(86vw, 340px);
	height: 100vh;
	background: #ffffff;
	box-shadow: -16px 0 32px rgba(15, 24, 45, 0.18);
	padding: 18px;
	transform: translateX(100%);
	transition: transform 0.26s ease;
	z-index: 1100;
	display: flex;
	flex-direction: column;
	gap: 22px;
}

.mobile-sidebar-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	padding-bottom: 14px;
	border-bottom: 1px solid #e5ebf5;
}

.mobile-sidebar-brand {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	min-width: 0;
}

.mobile-sidebar-logo {
	width: 48px;
	height: 48px;
	object-fit: contain;
	flex-shrink: 0;
}

.mobile-sidebar-title {
	font-size: 15px;
	font-weight: 700;
	line-height: 1.3;
	color: #1f2d4e;
}

.sidebar-close {
	width: 36px;
	height: 36px;
	border: 1px solid #d8dfec;
	background: #ffffff;
	color: #1f2d4e;
	font-size: 18px;
	cursor: pointer;
	flex-shrink: 0;
}

.sidebar-menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 10px;
}

.sidebar-menu a {
	display: block;
	padding: 12px 10px;
	font-size: 14px;
	font-weight: 600;
	color: #1f2d4e;
	border-bottom: 1px solid #eef2f8;
}

.sidebar-menu a.active {
	color: var(--brand-blue);
	border-bottom-color: #cfdaf3;
}

.sidebar-cta {
	margin-top: auto;
	text-align: center;
	padding: 12px 16px;
}

.sidebar-open .mobile-sidebar {
	transform: translateX(0);
}

.sidebar-open .sidebar-overlay {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

body.sidebar-open {
	overflow: hidden;
}

.hero {
	min-height: 760px;
	position: relative;
	background:
		
		url("./images/Hero-Section/hero.jpg") right center / cover no-repeat;
}

.hero-overlay {
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 28% 18%, rgba(255, 255, 255, 0.6), transparent 48%);
	pointer-events: none;
}

.hero-content {
	position: relative;
	z-index: 2;
	padding-top: 150px;
	
}

.eyebrow {
	margin: 0;
	font-size: 25px;
	font-weight: 500;
	color: #20242f;
}

.hero h1 {

	font-size: 50px;
	line-height: 1;
	letter-spacing: 0.1px;
	font-weight: 700;
	color: #20242f;
}

.hero-copy {
	margin-bottom:20px;
	max-width: 640px;
	font-size: 20px;
	
	color: #6f7683;
	font-weight: 400;
}

.hero-btn {
	
	display: inline-block;
	padding: 12px 12px;
	font-size: 15px;
	font-weight: 500;
	color: #fff;
	background: linear-gradient(90deg, var(--brand-blue), var(--brand-cyan));
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-btn:hover {
	transform: translateY(-1px);
	box-shadow: 0 10px 24px rgba(45, 99, 255, 0.3);
}

.feature-cards {
	position: relative;
	margin-top: 0;
	z-index: 3;
	
}

.feature-cards-inner {
	background: linear-gradient(140deg, #ffffff, #f6f9ff);
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	overflow: hidden;
}

.feature-card {
	padding: 18px 20px;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	gap: 14px;
	text-align: left;
	min-height: 108px;
	position: relative;
	transition: transform 0.22s ease, background-color 0.22s ease;
}

.feature-card:hover {
	transform: translateY(-4px);
	background: rgba(242, 247, 255, 0.7);
}

.feature-card:not(:last-child)::after {
	content: "";
	position: absolute;
	right: 0;
	top: 22%;
	height: 56%;
	width: 1px;
	background: #e8ccd0;
}

.feature-card h3 {
	margin: 0;
	font-size: 20px;
	line-height: 1.1;
	font-weight: 600;
	color: #1f1f29;
}

.feature-icon {
	width: 64px;
	height: 64px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	
}

.feature-icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
    border-radius: 50%;
}

.welcome-section {
	position: relative;
	margin-top: 0;
	
	background:
		linear-gradient(180deg, rgba(33, 33, 34, 0.38) 0%, rgba(9, 9, 9, 0.42) 50%),
		url("./images/Hero-Section/about.jpg") center/cover no-repeat;
}

.welcome-section::before {
	content: "";
	position: absolute;
	pointer-events: none;
}

.welcome-section .container {
	width: min(100%, calc(100% - 48px));
}

.welcome-grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1fr;
	align-items: center;
	justify-items: center;
	gap: 0;
}

.welcome-card {
	width: 100%;
	max-width: none;
	padding: 64px 56px;
	position: relative;
	text-align: center;
	box-shadow: 0 18px 38px rgba(22, 44, 86, 0.12);
	backdrop-filter: blur(1px);
	color:white;
}

.welcome-card::before {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 0;
}

.welcome-card > * {
	position: relative;
	z-index: 1;
}

.welcome-kicker {
	margin: 0 0 18px;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 2.4px;
	color: #d13b59;
}

.welcome-card h2 {
	margin: 0 0 24px;
	font-size: clamp(28px, 3vw, 40px);
	font-weight: 700;
	line-height: 1.18;
	
	
}

.welcome-card p {
	margin: 0 auto 24px;
	font-size: 15px;
	line-height: 1.72;
	color:white/10;
	max-width: 960px;
}

.welcome-btn {
	display: inline-block;
	margin-top: 8px;
	padding: 18px 42px;
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 0.4px;
	color: #fff;
	background: linear-gradient(90deg, var(--brand-blue), var(--brand-cyan));
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.welcome-btn:hover {
	transform: translateY(-1px);
	box-shadow: 0 10px 24px rgba(45, 99, 255, 0.3);
}

.welcome-more-toggle {
	display: none;
	border: 0;
	padding: 8px 0;
	background: transparent;
	color: #9dc1ff;
	font: inherit;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
}

.care-section {
	position: relative;
	background: linear-gradient(180deg, #f8f9fb 0%, #f5f7fc 100%);
	padding: 100px 0 110px;
	overflow: hidden;
}

.care-head {
	max-width: 760px;
	margin: 0 auto 56px;
	text-align: center;
}

.care-head h2 {
	margin: 0;
	font-size: 40px;
	font-weight: 700;
	line-height: 1.12;
	color: #1f1f29;
	text-transform: capitalize;
}

.care-head p {
	margin: 16px 0 0;
	font-size: 17px;
	line-height: 1.7;
	color: #667180;
}

.care-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 28px;
	align-items: stretch;
}

.care-card {
	padding: 32px 24px;
	background: #ffffff;
	border-radius: 12px;
	border-left: 4px solid #1a0be4;
	box-shadow: 0 8px 20px rgba(22, 44, 86, 0.08);
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.care-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 14px 32px rgba(22, 44, 86, 0.12);
}

.care-icon {
	width: 52px;
	height: 52px;
	background: linear-gradient(135deg, #e0f0ff 0%, #d4e9ff 100%);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 18px;
	font-size: 24px;
	color: #2c53ff;
}

.care-card h3 {
	margin: 0 0 12px;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.2;
	color: #1f1f29;
}

.care-card p {
	margin: 0;
	font-size: 14px;
	line-height: 1.6;
	color: #6f7784;
}

.patient-section {
	padding: 112px 0 118px;
	background: linear-gradient(180deg, #ffffff, #f5f8ff);
}

.patient-head {
	max-width: 760px;
	margin: 0 auto 48px;
	text-align: center;
}

.patient-head h2 {
	margin: 0;
	font-size: 40px;
	font-weight: 700;
	line-height: 1.12;
	text-transform: capitalize;
}

.patient-head p {
	margin: 14px 0 0;
	font-size: 17px;
	line-height: 1.6;
	color: #667180;
}

.patient-grid {
	display: grid;
	grid-template-columns: 1fr 0.95fr;
	align-items: center;
	gap: 44px;
}

.patient-faq {
	display: grid;
	gap: 16px;
}

.faq-item {
	background: rgba(255, 255, 255, 0.98);
	border: 1px solid #e8edf6;
	padding: 16px 20px;
	box-shadow: 0 14px 30px rgba(27, 43, 77, 0.08);
}

.faq-item summary {
	list-style: none;
	cursor: pointer;
	font-size: 17px;
	font-weight: 600;
	color: #1c2433;
	padding-right: 24px;
	position: relative;
}

.faq-item summary::-webkit-details-marker {
	display: none;
}

.faq-item summary::after {
	content: "+";
	position: absolute;
	right: 0;
	top: 0;
	font-size: 22px;
	line-height: 1;
	color: #2b5cff;
}

.faq-item[open] summary::after {
	content: "-";
}

.faq-item p {
	margin: 12px 0 0;
	font-size: 15px;
	line-height: 1.6;
	color: #697282;
}

.appointment-panel {
	position: relative;
	padding: 16px;
	max-width: 460px;
	justify-self: end;
	background: linear-gradient(135deg, rgba(49, 152, 255, 0.96), rgba(42, 92, 255, 0.96));
	box-shadow: 0 26px 46px rgba(28, 70, 170, 0.24);
}

.appointment-panel::before {
	content: "";
	position: absolute;
	inset: 0;
	background: url("https://images.unsplash.com/photo-1580281657527-47f249e8f5f6?auto=format&fit=crop&w=1000&q=80") center center / cover no-repeat;
	opacity: 0.12;
	pointer-events: none;
}

.appointment-panel-inner {
	position: relative;
	z-index: 1;
	padding: 38px 28px 20px;
	min-height: 500px;
}

.appointment-panel h3 {
	margin: 0 0 28px;
	font-size: clamp(28px, 3vw, 54px);
	line-height: 1.08;
	font-weight: 700;
	color: #ffffff;
	text-transform: uppercase;
	text-align: center;
}

.appointment-form {
	display: grid;
	gap: 10px;
	max-width: 84%;
	margin: 0 auto;
}

.appointment-form input,
.appointment-form textarea {
	width: 100%;
	border: 0;
	outline: none;
	padding: 12px 14px;
	font: inherit;
	font-size: 15px;
	background: #ffffff;
	color: #1f1f29;
	box-shadow: 0 10px 22px rgba(22, 43, 92, 0.08);
}

.appointment-form textarea {
	min-height: 110px;
	resize: vertical;
}

.appointment-form button {
	margin-top: 4px;
	border: 0;
	padding: 12px 16px;
	font: inherit;
	font-size: 14px;
	font-weight: 600;
	color: #ffffff;
	background: linear-gradient(90deg, var(--brand-blue), var(--brand-cyan));
	cursor: pointer;
}

.appointment-form button:hover {
	box-shadow: 0 10px 24px rgba(45, 99, 255, 0.3);
}

@media (max-width: 1199px) {
	.topbar-item {
		font-size: 14px;
	}

	.topbar-right a {
		font-size: 15px;
	}

	.brand-text {
		font-size: 20px;
	}

	.brand-sub {
		font-size: 15px;
	}

	.menu {
		gap: 24px;
	}

	.menu a {
		font-size: 14px;
	}

	.hero {
		min-height: 640px;
	}

	.hero-content {
		padding-top: 130px;
		max-width: 560px;
	}

	.eyebrow {
		font-size: 28px;
	}

	.hero-copy {
		font-size: 24px;
	}

	.hero-btn {
		padding: 16px 36px;
		font-size: 22px;
	}

	.welcome-card {
		padding: 56px;
	}
}

@media (max-width: 991px) {
	body {
		padding-top: 86px;
	}

	.hero-overlay {
		background: linear-gradient(110deg, rgba(8, 18, 45, 0.58), rgba(8, 18, 45, 0.35));
	}

	.topbar {
		display: none;
	}

	.navbar-inner {
		flex-direction: row;
		align-items: center;
		gap: 12px;
		padding: 12px 0;
	}

	.menu {
		display: none;
	}

	.navbar .hero-btn {
		display: none;
	}

	.nav-toggle {
		display: inline-flex;
	}

	.hero {
		min-height: 560px;
		background-position: 70% center;
	}

	.hero-content {
		padding-top: 80px;
		max-width: 100%;
	}

	.eyebrow {
		font-size: 22px;
		color: #e5ebfb;
	}

	.hero h1 {
		font-size: clamp(34px, 8vw, 52px);
		color: #ffffff;
	}

	.hero-copy {
		font-size: 18px;
		max-width: 520px;
		color: #dce5fb;
	}

	.hero-btn {
		margin-top: 34px;
		font-size: 16px;
	}

	.feature-cards {
		margin-top: 0;
		padding: 18px 0 30px;
	}

	.feature-cards-inner {
		grid-template-columns: 1fr;
	}

	.feature-card {
		justify-content: flex-start;
		min-height: 88px;
	}

	.feature-card:not(:last-child)::after {
		top: auto;
		bottom: 0;
		left: 15%;
		right: 15%;
		height: 1px;
		width: auto;
	}

	.welcome-section {
		padding: 72px 0 84px;
	}

	.welcome-section .container {
		width: min(100%, calc(100% - 28px));
	}

	.welcome-grid {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.welcome-card {
		padding: 44px 30px;
		margin-left: 0;
	}

	.welcome-card::before {
		inset: 0;
		border-width: 1px;
	}

	.welcome-card h2 {
		font-size: clamp(24px, 8vw, 34px);
	}

	.welcome-copy {
		display: -webkit-box;
		-webkit-line-clamp: 5;
		-webkit-box-orient: vertical;
		overflow: hidden;
	}

	.welcome-more-toggle {
		display: inline-block;
		margin-top: -6px;
	}

	.welcome-card.is-expanded .welcome-copy {
		display: block;
	}

	.care-section {
		padding: 72px 0 80px;
	}

	.care-head h2 {
		font-size: clamp(32px, 6vw, 46px);
	}

	.care-head p {
		margin-bottom: 32px;
	}

	.care-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 22px;
	}

	.care-card {
		padding: 28px 20px;
	}
}

@media (max-width: 640px) {
	body {
		padding-top: 82px;
	}

	.hero-overlay {
		background: linear-gradient(120deg, rgba(8, 18, 45, 0.68), rgba(8, 18, 45, 0.45));
	}

	.container {
		width: min(1240px, calc(100% - 28px));
	}

	.brand-text {
		font-size: 18px;
	}

	.brand-sub {
		font-size: 14px;
	}

	.brand-logo {
		width: 32px;
		height: 32px;
	}

	.hero {
		min-height: 520px;
		background-position: 78% center;
	}

	.hero-content {
		padding-top: 66px;
	}

	.eyebrow {
		font-size: 18px;
	}

	.hero-copy {
		font-size: 16px;
		line-height: 1.55;
	}

	.hero-btn {
		padding: 14px 26px;
	}

	.welcome-card p {
		font-size: 16px;
	}

	.patient-section {
		padding: 72px 0 86px;
	}

	.patient-grid {
		grid-template-columns: 1fr;
		gap: 34px;
	}

	.appointment-panel {
		max-width: 100%;
		justify-self: stretch;
	}

	.appointment-panel-inner {
		min-height: 380px;
		padding: 42px 28px 24px;
	}

	.appointment-form {
		max-width: 92%;
	}

	.patient-head h2 {
		font-size: 32px;
	}

	.patient-head p {
		font-size: 15px;
	}

	.faq-item {
		padding: 12px 14px;
	}

	.faq-item summary {
		font-size: 16px;
	}

	.appointment-panel {
		padding: 12px;
		max-width: 100%;
	}

	.appointment-panel-inner {
		min-height: 340px;
		padding: 34px 18px 18px;
	}

	.appointment-form {
		max-width: 100%;
	}

	.care-section {
		padding: 56px 0 64px;
	}

	.care-head h2 {
		font-size: 28px;
	}

	.care-head p {
		font-size: 15px;
		margin-bottom: 28px;
	}

	.care-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
	}

	.care-card {
		padding: 22px 16px;
	}

	.care-icon {
		width: 44px;
		height: 44px;
		font-size: 20px;
		margin-bottom: 12px;
	}

	.care-card h3 {
		font-size: 16px;
		margin-bottom: 8px;
	}

	.care-card p {
		font-size: 13px;
		line-height: 1.5;
	}
}

@media (prefers-reduced-motion: reduce) {
	.reveal-on-scroll,
	.hero-content > * {
		opacity: 1 !important;
		transform: none !important;
		animation: none !important;
		transition: none !important;
	}
}

.doctor-profile-section {
	padding: 80px 0;
	background: linear-gradient(135deg, #f8f9fc 0%, #f3f6fb 100%);
}

.doctor-profile-container {
	display: grid;
	grid-template-columns: 2fr 3fr;
	gap: 40px;
	align-items: stretch;
	border-radius: 24px;
	overflow: hidden;
	background: #ffffff;
	box-shadow: 0 20px 48px rgba(22, 44, 86, 0.12);
}

.doctor-image-wrap {
	height: 100%;
	min-height: 500px;
	overflow: hidden;
}

.doctor-image-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.doctor-content {
	padding: 48px 56px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	
}

.doctor-profile-section h2 {
	margin: 0 0 8px;
	font-size: 40px;
	font-weight: 700;
	line-height: 1.1;
	color: #1f1f29;
}

.doctor-name {
	margin: 0 0 20px;
	font-size: clamp(24px, 3vw, 36px);
	font-weight: 700;
	color: #2c53ff;
	line-height: 1.2;
}

.doctor-bio {
	margin: 0 0 24px;
	font-size: 16px;
	line-height: 1.75;
	color: #4b5568;
	max-width: 600px;
}

.doctor-qualifications {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 28px;
}

.qualification-tag {
	padding: 10px 18px;
	background: #f5f7fc;
	color: #5f6d81;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 600;
	border: 1px solid #e0e8f2;
	transition: all 0.25s ease;
}

.qualification-tag:hover {
	background: #e8f0ff;
	color: #2c53ff;
	border-color: #2c53ff;
}

.doctor-profile-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 16px;
	font-weight: 700;
	color: #2c53ff;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
	transition: gap 0.3s ease;
}

.doctor-profile-btn:hover {
	gap: 16px;
}

.doctor-profile-btn i {
	font-size: 20px;
}

@media (max-width: 1199px) {
	.doctor-profile-section {
		padding: 60px 0;
	}

	.doctor-profile-container {
		gap: 28px;
	}

	.doctor-content {
		padding: 40px 36px;
	}

	.doctor-image-wrap {
		min-height: 400px;
	}

	.doctor-profile-section h2 {
		font-size: clamp(28px, 3vw, 40px);
	}

	.doctor-name {
		font-size: clamp(20px, 2.5vw, 30px);
	}
}

@media (max-width: 991px) {
	.doctor-profile-section {
		padding: 48px 0;
	}

	.doctor-profile-container {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.doctor-image-wrap {
		min-height: 350px;
		max-height: 350px;
	}

	.doctor-content {
		padding: 36px 28px;
	}

	.doctor-profile-section h2 {
		margin-bottom: 6px;
		font-size: clamp(26px, 5vw, 36px);
	}

	.doctor-name {
		margin-bottom: 16px;
		font-size: clamp(18px, 4vw, 28px);
	}

	.doctor-bio {
		margin-bottom: 18px;
		font-size: 15px;
	}

	.doctor-qualifications {
		margin-bottom: 20px;
	}
}

@media (max-width: 640px) {
	.doctor-profile-section {
		padding: 36px 0;
	}

	.doctor-content {
		padding: 24px 20px;
	}

	.doctor-image-wrap {
		min-height: 280px;
		max-height: 280px;
	}

	.doctor-profile-section h2 {
		font-size: 24px;
		margin-bottom: 4px;
	}

	.doctor-name {
		font-size: 20px;
		margin-bottom: 12px;
	}

	.doctor-bio {
		font-size: 14px;
		line-height: 1.65;
		margin-bottom: 16px;
	}

	.doctor-qualifications {
		gap: 8px;
		margin-bottom: 16px;
	}

	.qualification-tag {
		padding: 8px 14px;
		font-size: 13px;
	}

	.doctor-profile-btn {
		font-size: 14px;
	}
}
