:root {
	--bg-soft: #f3f5f9;
	--text-main: #1f1f29;
	--text-muted: #6f7784;
	--line-soft: #eceef3;
	--brand-blue: #1f3e72;
	--brand-red: #ba2d30;
	--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;
	background: #fff;
	transition: box-shadow 0.3s ease, background-color 0.3s ease;
}

.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: var(--brand-blue);
}

.brand-sub {
	font-size: 19px;
	font-weight: 500;
	letter-spacing: 0.3px;
	color: var(--brand-blue);
}

.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;
	
}

.menu-item {
	position: relative;
}

.menu-link-with-caret {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.menu-link-with-caret i {
	font-size: 11px;
	transition: transform 0.24s ease;
}

.services-dropdown {
	position: absolute;
	top: calc(100% + 20px);
	left: 50%;
	transform: translate(-50%, 14px);
	width: min(720px, 75vw);
	padding: 18px 20px 20px;
	border-radius: 20px;
	border: 1px solid #d9e4f8;
	background:
		radial-gradient(circle at 92% 10%, rgba(46, 212, 242, 0.22), transparent 34%),
		radial-gradient(circle at 0% 100%, rgba(44, 83, 255, 0.14), transparent 38%),
		linear-gradient(145deg, #ffffff 0%, #f8fbff 75%);
	box-shadow: 0 18px 44px rgba(19, 35, 71, 0.16);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.24s ease, transform 0.24s ease, visibility 0.24s ease;
	z-index: 40;
}

.services-dropdown::before {
	content: "";
	position: absolute;
	top: -10px;
	left: 50%;
	width: 18px;
	height: 18px;
	background: #ffffff;
	border-left: 1px solid #d9e4f8;
	border-top: 1px solid #d9e4f8;
	transform: translateX(-50%) rotate(45deg);
}

.services-dropdown::after {
	content: "";
	position: absolute;
	top: 54px;
	bottom: 18px;
	left: 50%;
	width: 1px;
	background: linear-gradient(180deg, #c8d6f1, #eaf1fc);
	transform: translateX(-50%);
	pointer-events: none;
}

.services-dropdown-label {
	margin: 0 0 14px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: #2b4a87;
}

.services-dropdown-grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px 38px;
	position: relative;
	z-index: 1;
}

.services-dropdown-grid a {
	display: inline-flex;
	align-items: center;
	padding: 8px 0;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.4;
	color: #1f2d48;
	transition: color 0.2s ease, transform 0.2s ease;
}

.services-dropdown-grid a::before {
	content: "";
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: linear-gradient(145deg, #2c53ff, #2ed4f2);
	margin-right: 10px;
	box-shadow: 0 0 0 3px rgba(44, 83, 255, 0.12);
	flex-shrink: 0;
}

.services-dropdown-grid a:hover {
	color: #173c8a;
	transform: translateX(4px);
}

.menu-item-services:hover .services-dropdown,
.menu-item-services:focus-within .services-dropdown {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translate(-50%, 0);
}

.menu-item-services:hover .menu-link-with-caret i,
.menu-item-services:focus-within .menu-link-with-caret i {
	transform: rotate(180deg);
}

.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-item-dropdown .sidebar-link-toggle {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.sidebar-item-dropdown .sidebar-link-toggle i {
	font-size: 11px;
	transition: transform 0.3s ease;
}

.sidebar-item-dropdown.is-open .sidebar-link-toggle i {
	transform: rotate(180deg);
}

.sidebar-dropdown-content {
	display: none;
	padding-top: 10px;
}

.sidebar-item-dropdown.is-open .sidebar-dropdown-content {
	display: block;
}

.sidebar-services-title {
	margin-top: 4px;
	padding: 2px 10px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 1.1px;
	text-transform: uppercase;
	color: #5f7192;
}

.sidebar-services-list {
	list-style: none;
	margin: 0;
	padding: 0 0 0 10px;
	display: grid;
	gap: 5px;
	border-left: 1px dashed #d8e2f3;
}

.sidebar-services-list a {
	padding: 8px 10px;
	font-size: 13px;
	font-weight: 500;
	line-height: 1.45;
	color: #33486e;
	background: #f7faff;
	border: 1px solid #e4ebf9;
	border-bottom: 1px solid #e4ebf9;
	border-radius: 7px;
}

.sidebar-services-list a::before {
	content: "";
	display: inline-block;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	margin-right: 8px;
	background: #2c53ff;
	vertical-align: middle;
}

.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/tolani_bannerfree.png") center center / contain 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-red));
	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;
	padding: 100px 0;
	background:
		linear-gradient(135deg, rgba(31, 62, 114, 0.95) 0%, rgba(31, 62, 114, 0.8) 100%),
		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: #ff4949;
	text-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
}

.welcome-card h2 {
	margin: 0 0 24px;
	font-size: clamp(28px, 3vw, 40px);
	font-weight: 700;
	line-height: 1.18;
	color: #ffffff;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

.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-red));
	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 var(--brand-blue);
	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: rgba(31, 62, 114, 0.08);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 18px;
	font-size: 24px;
	color: var(--brand-blue);
}

.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;
	}
}

.cta-priority-card {
	background: linear-gradient(145deg, var(--brand-blue) 0%, #1a325d 100%);
	border-radius: 28px;
	padding: 40px;
	position: relative;
	overflow: hidden;
	color: #ffffff;
	box-shadow: 0 20px 40px rgba(31, 62, 114, 0.25);
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
}

.cta-priority-card::before {
	content: "";
	position: absolute;
	top: -100px;
	right: -100px;
	width: 300px;
	height: 300px;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 50%;
	pointer-events: none;
}

.cta-card-badge {
	align-self: center;
	background: var(--brand-red);
	color: #fff;
	padding: 6px 20px;
	border-radius: 50px;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 25px;
	box-shadow: 0 4px 15px rgba(186, 45, 48, 0.3);
}

.cta-card-icon {
	font-size: 58px;
	color: #ffffff;
	margin-bottom: 20px;
	animation: icon-float 3s ease-in-out infinite;
	opacity: 0.9;
}

@keyframes icon-float {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-10px); }
}

.cta-priority-card h3 {
	font-size: 30px;
	font-weight: 800;
	margin-bottom: 15px;
	line-height: 1.2;
}

.cta-priority-card p {
	font-size: 15px;
	color: rgba(255, 255, 255, 0.85);
	line-height: 1.6;
	margin-bottom: 30px;
}

.cta-contact-box {
	background: rgba(255, 255, 255, 0.07);
	border-radius: 16px;
	padding: 15px;
	margin-bottom: 25px;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-label {
	display: block;
	font-size: 11px;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.6);
	letter-spacing: 1px;
	margin-bottom: 5px;
}

.cta-number {
	font-size: 22px;
	font-weight: 700;
	color: #ffffff;
	text-decoration: none;
	transition: color 0.3s ease;
}

.cta-number:hover {
	color: var(--brand-red);
}

.cta-whatsapp-btn {
	background: linear-gradient(90deg, var(--brand-blue) 0%, var(--brand-red) 100%);
	color: #fff;
	text-decoration: none;
	padding: 18px 30px;
	border-radius: 12px;
	font-weight: 700;
	font-size: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	box-shadow: 0 10px 25px rgba(31, 62, 114, 0.3);
}

.cta-whatsapp-btn:hover {
	transform: scale(1.05);
	box-shadow: 0 15px 30px rgba(186, 45, 48, 0.4);
	filter: brightness(1.1);
}

@media (max-width: 640px) {
	.cta-priority-card {
		padding: 30px 20px;
	}
	
	.cta-priority-card h3 {
		font-size: 26px;
	}
}

.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;
	object-position: top center;
	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: 1024px) {
	.doctor-profile-section {
		padding: 48px 0;
	}

	.doctor-profile-container {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.doctor-image-wrap {
		min-height: 500px;
		max-height: 650px;
	}

	.doctor-content {
		padding: 40px 32px;
	}

	.doctor-profile-section h2 {
		margin-bottom: 6px;
		font-size: clamp(26px, 5vw, 36px);
	}

	.doctor-name {
		margin-bottom: 16px;
		font-size: clamp(20px, 4vw, 30px);
	}

	.doctor-bio {
		margin-bottom: 20px;
		font-size: 16px;
	}

	.doctor-qualifications {
		margin-bottom: 24px;
	}
}

@media (max-width: 640px) {
	.doctor-profile-section {
		padding: 36px 0;
	}

	.doctor-content {
		padding: 28px 20px;
	}

	.doctor-image-wrap {
		min-height: 380px;
		max-height: 480px;
	}

	.doctor-profile-section h2 {
		font-size: 26px;
		margin-bottom: 4px;
	}

	.doctor-name {
		font-size: 22px;
		margin-bottom: 12px;
	}

	.doctor-bio {
		font-size: 15px;
		line-height: 1.6;
		margin-bottom: 18px;
	}

	.doctor-qualifications {
		gap: 8px;
		margin-bottom: 16px;
	}

	.qualification-tag {
		padding: 8px 14px;
		font-size: 13px;
	}

	.doctor-profile-btn {
		font-size: 14px;
	}
}

/* Blog Preview Section */
.blog-preview-section {
	padding: 80px 0;
	background-color: #f8faff;
}

.blog-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
	margin-top: 40px;
}

.blog-card {
	background: #fff;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.blog-image {
	width: 100%;
	height: 200px;
	overflow: hidden;
}

.blog-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
	transform: scale(1.1);
}

.blog-content {
	padding: 24px;
}

.blog-tag {
	display: inline-block;
	background: rgba(44, 83, 255, 0.1);
	color: var(--brand-blue);
	padding: 4px 12px;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 600;
	margin-bottom: 12px;
	text-transform: uppercase;
}

.blog-content h3 {
	font-size: 20px;
	margin-bottom: 12px;
	color: var(--text-main);
	line-height: 1.4;
}

.blog-content p {
	font-size: 14px;
	color: var(--text-muted);
	margin-bottom: 20px;
	line-height: 1.6;
}

.blog-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--brand-blue);
	font-weight: 600;
	font-size: 14px;
	transition: gap 0.3s ease;
}

.blog-link:hover {
	gap: 12px;
}

/* Facilities Section */
.facilities-section {
	padding: 60px 0;
	background: #fff;
}

.facilities-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 30px;
	text-align: center;
}

.facility-item {
	padding: 40px 30px;
	border-radius: 20px;
	background: var(--bg-soft);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.facility-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
	background: #fff;
}

.facility-item i {
	font-size: 48px;
	color: var(--brand-blue);
	margin-bottom: 20px;
}

.facility-item h3 {
	font-size: 20px;
	margin-bottom: 12px;
	color: var(--text-main);
}

.facility-item p {
	font-size: 15px;
	color: var(--text-muted);
	line-height: 1.6;
}

/* Testimonials Section */
.testimonials-section {
	padding: 80px 0;
	background: #fbfcfe;
	overflow: hidden;
}

.testimonials-slider {
	margin-top: 40px;
	width: 100%;
}

.testimonials-wrapper {
	display: flex;
	gap: 30px;
	width: max-content;
	animation: scrollTestimonials 40s linear infinite;
}

.testimonials-wrapper:hover {
	animation-play-state: paused;
}

@keyframes scrollTestimonials {
	0% { transform: translateX(0); }
	100% { transform: translateX(calc(-50% - 15px)); }
}

.testimonial-card {
	background: #fff;
	padding: 40px;
	border-radius: 20px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
	border: 1px solid #f0f3f8;
	display: flex;
	flex-direction: column;
	gap: 20px;
	width: 400px;
	flex-shrink: 0;
}

.testimonial-stars {
	color: #ffc107;
	font-size: 14px;
	display: flex;
	gap: 4px;
}

.testimonial-text {
	font-size: 16px;
	line-height: 1.7;
	color: #4a5468;
	font-style: italic;
	margin: 0;
}

.testimonial-author {
	margin-top: auto;
	display: flex;
	align-items: center;
	gap: 12px;
}

.author-name {
	font-weight: 700;
	color: var(--brand-blue);
	margin: 0;
}

.author-label {
	font-size: 13px;
	color: var(--text-muted);
	margin: 0;
}

/* Stats Section */
.stats-section {
	background: #fff;
	padding: 40px 0;
	border-bottom: 1px solid #f0f3f8;
}

.stats-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	flex-wrap: wrap;
}

.stat-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	flex: 1;
}

.stat-item.divider {
	width: 1px;
	height: 40px;
	background: #e2e8f0;
	flex: none;
}

.stat-number {
	font-size: 32px;
	font-weight: 800;
	color: var(--brand-blue);
	line-height: 1;
	margin-bottom: 8px;
}

.stat-label {
	font-size: 14px;
	font-weight: 600;
	color: var(--text-muted);
	text-transform: uppercase;
	letter-spacing: 1px;
}

@media (max-width: 768px) {
	.stat-item.divider {
		display: none;
	}
	.stats-inner {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 30px;
	}
}

/* Why Us Section - Custom Unique Styles */
.why-us-section {
	padding: 100px 0;
	background: #ffffff !important;
	position: relative;
	z-index: 5;
}

.why-us-grid {
	display: grid !important;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)) !important;
	gap: 32px !important;
	margin-top: 48px;
}

.why-us-card {
	padding: 48px 32px !important;
	border-radius: 24px !important;
	background: #f8faff !important;
	border: 1px solid #edf2f7 !important;
	transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
	text-align: center !important;
	position: relative !important;
	overflow: hidden !important;
}

.why-us-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(90deg, var(--brand-blue), var(--brand-red));
	opacity: 0;
	transition: opacity 0.3s ease;
}

.why-us-card:hover {
	transform: translateY(-12px) !important;
	box-shadow: 0 22px 45px rgba(31, 62, 114, 0.1) !important;
	background: #ffffff !important;
}

.why-us-card:hover::before {
	opacity: 1;
}

.why-us-icon-wrap {
	width: 76px !important;
	height: 76px !important;
	background: rgba(31, 62, 114, 0.05) !important;
	border-radius: 20px !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	margin: 0 auto 28px !important;
	font-size: 32px !important;
	color: var(--brand-blue) !important;
	transition: all 0.3s ease !important;
}

.why-us-card:hover .why-us-icon-wrap {
	background: var(--brand-blue) !important;
	color: #ffffff !important;
	transform: rotateY(180deg) !important;
}

.why-us-card h3 {
	font-size: 22px !important;
	font-weight: 700 !important;
	color: var(--brand-blue) !important;
	margin-bottom: 18px !important;
	letter-spacing: -0.2px !important;
}

.why-us-card p {
	font-size: 15px !important;
	line-height: 1.75 !important;
	color: #4a5468 !important;
}

@media (max-width: 768px) {
	.why-us-section {
		padding: 60px 0;
	}
	.why-us-grid {
		gap: 20px !important;
	}
	.why-us-card {
		padding: 32px 24px !important;
	}
}




