@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Source+Serif+4:wght@700;800&display=swap');

:root {
	--body-font: "Inter", Arial, sans-serif;
	--heading-font: "Source Serif 4", Georgia, serif;
	--primary: #22735B;
	--primary-dark: #175241;
	--primary-light: #2E9677;
	--mint: #EBF5F2;
	--bg: #F8FCFA;
	--surface: #FFFFFF;
	--surface-2: #F2F9F6;
	--section-alt: #E6F4EF;
	--line: #E1EFEA;
	--navy: #0D261E;
	--navy-dark: #071913;
	--ink: #0D261E;
	--muted: #4A5E57;
	--teal: #22735B;
	--teal-dark: #175241;
	--teal-light: #2E9677;
	--gold: #E5983A;
	--red: #E74C3C;
	--success: #1B9E77;
	--warning: #D9822B;
	--danger: #E74C3C;
	--focus-ring: 0 0 0 3px rgba(34, 115, 91, 0.35);
	--shadow: 0 10px 30px rgba(13, 38, 30, 0.08);
	--shadow-strong: 0 20px 45px rgba(13, 38, 30, 0.14);
	--shadow-glow: 0 12px 35px rgba(34, 115, 91, 0.25);
	--radius: 14px;
	--transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
	--header-gradient: linear-gradient(135deg, #175241, #22735B);
	--gradient-primary: linear-gradient(135deg, #22735B, #2E9677);
	--gradient-dark: linear-gradient(135deg, #175241, #22735B);
	--gradient-hero: linear-gradient(135deg, #0D261E, #175241, #22735B);
	--gradient-light: linear-gradient(135deg, #FFFFFF, #EBF5F2);
	--gradient-accent: linear-gradient(135deg, #2E9677, #7DD7BE);
}

.header-gradient-bg {
	background: var(--header-gradient);
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html,
body {
	margin: 0;
	padding: 0;
	width: 100%;
	min-height: 100%;
	overflow-x: hidden;
}

body {
	font-family: var(--body-font);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.7;
	color: var(--ink);
	background: #f9fcfb;
}

img {
	max-width: 100%;
	height: auto;
	display: inline-block;
}

a {
	color: var(--teal-dark);
	text-decoration: none;
	transition: var(--transition);
}

a:hover,
a:focus {
	color: var(--gold);
	outline: none;
}

ul {
	margin: 0;
	padding: 0;
}

li {
	list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	font-family: var(--heading-font);
	font-weight: 800;
	line-height: 1.12;
	color: var(--ink);
}

p {
	margin: 0;
	color: var(--muted);
}

label {
	font-weight: 700;
	color: var(--ink);
	margin-bottom: 8px;
}

::selection {
	background: var(--teal);
	color: #fff;
}

.container {
	width: min(1180px, calc(100% - 32px));
	max-width: 1180px;
}

.main {
	background: #f9fcfb;
}

.py-120 {
	padding-top: 96px;
	padding-bottom: 96px;
}

.py-80 {
	padding-top: 80px;
	padding-bottom: 80px;
}

.pt-100 {
	padding-top: 100px;
}

.pb-70 {
	padding-bottom: 70px;
}

.pt-80 {
	padding-top: 80px;
}

.pb-80 {
	padding-bottom: 80px;
}

.pt-60 {
	padding-top: 60px;
}

.pb-60 {
	padding-bottom: 60px;
}

.pt-40 {
	padding-top: 40px;
}

.pb-40 {
	padding-bottom: 40px;
}

.mb-30 {
	margin-bottom: 30px;
}

.mt-40 {
	margin-top: 40px;
}

.mt-30 {
	margin-top: 30px;
}

.mt-20 {
	margin-top: 20px;
}

.mb-20 {
	margin-bottom: 20px;
}

.secondary_bg,
.bg {
	background: var(--surface-2);
}

.text-justify {
	text-align: justify;
}

.color {
	color: var(--teal);
}

.shadow {
	box-shadow: var(--shadow) !important;
}

.border {
	border-color: var(--line) !important;
}

.rounded {
	border-radius: var(--radius) !important;
}

.theme-btn,
.btn-discover,
.btn-premium,
.apply-now-btn,
.header-portal-login-btn,
.btn-explore,
.btn-brochure,
.btn-view-notifications {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	border: 0;
	border-radius: 999px;
	font-weight: 800;
	line-height: 1;
	transition: var(--transition);
}

.theme-btn,
.btn-discover,
.btn-premium,
.apply-now-btn,
.header-portal-login-btn,
.btn-explore {
	background: var(--gradient-primary);
	color: #fff !important;
	box-shadow: var(--shadow-glow);
}

.theme-btn,
.btn-discover,
.btn-premium {
	padding: 14px 26px;
}

.theme-btn:hover,
.btn-discover:hover,
.btn-premium:hover,
.apply-now-btn:hover,
.header-portal-login-btn:hover,
.btn-explore:hover {
	background: var(--gradient-dark);
	color: #fff !important;
	transform: translateY(-3px);
	box-shadow: 0 16px 38px rgba(34, 115, 91, 0.35);
}

.btn-brochure {
	padding: 14px 26px;
	background: rgba(255, 255, 255, 0.15);
	color: #fff !important;
	border: 1px solid rgba(255, 255, 255, 0.35);
	backdrop-filter: blur(8px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.btn-brochure:hover {
	color: #fff !important;
	background: var(--primary);
	border-color: var(--primary);
	transform: translateY(-2px);
}

.site-heading {
	margin-bottom: 34px;
}

.site-heading .tag,
.site-heading span.tag,
.site-title-tagline {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 12px;
	padding: 8px 16px;
	border-radius: 999px;
	background: var(--mint);
	color: var(--primary-dark);
	font-family: var(--body-font);
	font-size: 13px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	border: 1px solid var(--line);
}

.site-heading h2,
.site-title {
	font-size: clamp(30px, 4vw, 46px);
	color: var(--navy);
}

.site-heading h2 span,
.site-title span,
.welcome-title span {
	color: var(--primary);
}

.heading-divider {
	width: 80px;
	height: 4px;
	margin: 18px auto 0;
	border-radius: 999px;
	background: var(--gradient-primary);
}

.redesign-topbar {
	padding: 5px 0;
	background: var(--gradient-dark);
	font-size: 14px;
}

.redesign-topbar a,
.redesign-topbar span,
.redesign-topbar i {
	color: #fff !important;
}

.topbar-right-links {
	row-gap: 6px;
}

.logo-row-full {
	background: var(--surface);
	border-bottom: 1px solid var(--line) !important;
	color: var(--navy);
	transition: var(--transition);
}

.logo-row-full .logo-text-title-large {
	color: var(--navy) !important;
}

.logo-row-full .logo-text-subtitle-large {
	color: var(--primary) !important;
	opacity: 0.95;
}

.logo-img {
	width: 58px;
	height: 58px;
	object-fit: cover;
	border: 2px solid var(--primary-light);
	box-shadow: 0 4px 14px rgba(34, 115, 91, 0.2);
}

.logo-text-title-large {
	margin: 0;
	font-family: var(--heading-font);
	font-size: clamp(18px, 2.2vw, 24px);
	font-weight: 800;
	line-height: 1.25;
	color: var(--navy);
	letter-spacing: -0.2px;
}

.logo-text-subtitle-large {
	margin: 2px 0 0;
	font-size: 11px;
	font-weight: 700;
	line-height: 1.35;
	color: var(--primary);
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.header-portal-login-btn {
	padding: 11px 24px;
	background: var(--gradient-primary);
	color: #fff !important;
	border-radius: 999px;
	font-weight: 700;
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.main-navigation {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: rgba(255, 255, 255, 0.95);
	border-bottom: 1px solid var(--line);
	box-shadow: 0 4px 20px rgba(13, 38, 30, 0.05);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	transition: var(--transition);
}

.main-navigation.sticky {
	background: rgba(255, 255, 255, 0.96) !important;
	box-shadow: 0 8px 30px rgba(13, 38, 30, 0.1) !important;
	border-bottom-color: rgba(34, 115, 91, 0.15) !important;
}

.navbar {
	padding: 4px 0 !important;
}

/* Mini Brand Emblem Styling */
.mini-brand {
	display: none !important;
}

@media (min-width: 992px) {
	.mini-brand {
		display: inline-flex !important;
		align-items: center !important;
		flex-shrink: 0 !important;
		white-space: nowrap !important;
	}
}

.mini-brand img {
	flex-shrink: 0 !important;
}

.mini-brand span {
	font-size: 14px !important;
	font-weight: 800 !important;
	letter-spacing: -0.2px !important;
	color: var(--navy) !important;
	white-space: nowrap !important;
	flex-shrink: 0 !important;
}

/* Desktop Navbar Nav Items */
.navbar-nav {
	gap: 2px !important;
	align-items: center !important;
	flex-direction: row !important;
}

@media (min-width: 1200px) {
	.navbar-nav {
		gap: 6px !important;
	}
}

.navbar .nav-link {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	flex-direction: row !important;
	white-space: nowrap !important;
	flex-shrink: 0 !important;
	padding: 6px 10px !important;
	font-size: 13.5px !important;
	font-weight: 700 !important;
	color: var(--navy) !important;
	border-radius: 999px !important;
	border: 1px solid transparent !important;
	text-decoration: none !important;
	border-bottom: none !important;
	box-shadow: none !important;
	transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

@media (min-width: 1200px) {
	.navbar .nav-link {
		padding: 7px 13px !important;
		font-size: 14px !important;
	}
}

.navbar .nav-link::before,
.navbar .nav-link::after {
	text-decoration: none !important;
	border-bottom: none !important;
}

.navbar .nav-link i,
.navbar .nav-link .nav-icon {
	font-size: 13px !important;
	margin-right: 5px !important;
	color: var(--primary) !important;
	display: inline-block !important;
	flex-shrink: 0 !important;
}

.navbar .dropdown-toggle::after {
	display: inline-block !important;
	content: "" !important;
	width: 5px !important;
	height: 5px !important;
	border-right: 2px solid currentColor !important;
	border-bottom: 2px solid currentColor !important;
	border-top: 0 !important;
	border-left: 0 !important;
	transform: rotate(45deg) translateY(-1px) !important;
	margin-left: 4px !important;
	margin-top: 0 !important;
	margin-bottom: 0 !important;
	vertical-align: middle !important;
	flex-shrink: 0 !important;
	transition: transform 0.25s ease !important;
}

.navbar .dropdown-toggle.show::after,
.navbar .dropdown:hover .dropdown-toggle::after {
	transform: rotate(225deg) translateY(1px) !important;
}

.navbar .nav-link:hover,
.navbar .nav-link.active,
.navbar .nav-link.homebtn.active,
.navbar .nav-item.show .nav-link {
	color: var(--primary) !important;
	background: var(--mint) !important;
	border-radius: 999px !important;
	border-bottom: 0 !important;
	text-decoration: none !important;
	box-shadow: none !important;
}

.navbar-toggler {
	margin: 8px 0;
	background: var(--mint);
	border-radius: var(--radius);
	border: 1px solid var(--line);
}

.navbar-toggler-mobile-icon {
	color: var(--primary);
	font-size: 22px;
}

.dropdown-menu {
	min-width: 240px;
	padding: 10px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: var(--shadow-strong);
	background: rgba(255, 255, 255, 0.98);
	backdrop-filter: blur(16px);
}

.dropdown-item {
	padding: 10px 14px;
	border-radius: 8px;
	font-weight: 700;
	color: var(--navy);
	white-space: normal;
	transition: var(--transition);
}

.dropdown-item:hover,
.dropdown-item:focus {
	background: var(--mint);
	color: var(--primary);
	transform: translateX(4px);
}

/* Infinite Vertical Scroll Marquee */
.vertical-scroll-wrapper {
	position: relative;
	height: 460px;
	overflow: hidden;
	border-radius: var(--radius);
	mask-image: linear-gradient(to bottom, transparent, #000 10%, #000 90%, transparent);
	-webkit-mask-image: linear-gradient(to bottom, transparent, #000 10%, #000 90%, transparent);
}

.vertical-scroll-track {
	display: flex;
	flex-direction: column;
	gap: 16px;
	animation: scrollVertical 30s linear infinite;
}

.vertical-scroll-wrapper:hover .vertical-scroll-track {
	animation-play-state: paused;
}

@keyframes scrollVertical {
	0% {
		transform: translateY(0);
	}

	100% {
		transform: translateY(-50%);
	}
}

.dropdown-item:hover,
.dropdown-item:focus {
	background: var(--mint);
	color: var(--teal-dark);
}

.apply-now-btn {
	padding: 13px 20px;
}

.redesign-hero {
	position: relative;
	overflow: hidden;
	background: #0D261E;
}

/* ---------- Hero Carousel & Slider System ---------- */
.hero-carousel-slide {
	min-height: 580px;
	height: 580px;
	display: flex;
	align-items: center;
	padding: 0;
	background-position: center right;
	background-size: cover;
	background-repeat: no-repeat;
	position: relative;
}

.hero-slide-1 {
	background-image:
		linear-gradient(90deg, rgba(7, 25, 19, 0.95) 0%, rgba(13, 38, 30, 0.85) 42%, rgba(23, 82, 65, 0.35) 65%, rgba(34, 115, 91, 0) 100%),
		url("/web-assets/img/BANNER/banner_main.webp");
	background-position: right center;
	background-size: cover;
	background-repeat: no-repeat;
}

.hero-slide-2 {
	background-image:
		linear-gradient(90deg, rgba(7, 25, 19, 0.95) 0%, rgba(13, 38, 30, 0.85) 42%, rgba(23, 82, 65, 0.35) 65%, rgba(34, 115, 91, 0) 100%),
		url("/web-assets/img/BANNER/banner-2.webp");
	background-position: right center;
	background-size: cover;
	background-repeat: no-repeat;
}

.hero-slide-3 {
	background-image:
		linear-gradient(90deg, rgba(7, 25, 19, 0.95) 0%, rgba(13, 38, 30, 0.85) 42%, rgba(23, 82, 65, 0.35) 65%, rgba(34, 115, 91, 0) 100%),
		url("/web-assets/img/BANNER/banner-3.webp");
	background-position: right center;
	background-size: cover;
	background-repeat: no-repeat;
}

/* ---------- Counter CTA Section Background ---------- */
.premium-stats-section {
	position: relative;
	padding: 60px 0;
	background:
		linear-gradient(135deg, rgba(13, 38, 30, 0.92) 0%, rgba(23, 82, 65, 0.88) 100%),
		url('/web-assets/img/bgs/counter-cta.webp') center / cover no-repeat !important;
	color: #fff;
	overflow: hidden;
}

/* ---------- Admission Steps Section Background ---------- */
.redesign-steps-area {
	position: relative;
	padding: 70px 0;
	background:
		linear-gradient(135deg, rgba(235, 245, 242, 0.65) 0%, rgba(225, 239, 234, 0.60) 100%),
		url('/web-assets/img/bgs/steps.webp') center / cover no-repeat !important;
	overflow: hidden;
}

.hero-left-content {
	width: 100%;
	max-width: 620px;
	z-index: 2;
	position: relative;
	padding: 40px 0;
}

.hero-title {
	text-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
	letter-spacing: -0.5px;
}

.hero-title span {
	background: linear-gradient(135deg, #2E9677, #70E4BE);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	display: inline-block;
}

.hero-desc {
	color: rgba(255, 255, 255, 0.88) !important;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Arrow Navigation Buttons */
.hero-arrow {
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: rgba(13, 38, 30, 0.6) !important;
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	border: 1.5px solid rgba(255, 255, 255, 0.25) !important;
	color: #ffffff !important;
	font-size: 18px;
	opacity: 0.9;
	top: 50%;
	transform: translateY(-50%);
	transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
	z-index: 15;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.hero-arrow:hover {
	background: #22735B !important;
	border-color: #2E9677 !important;
	color: #ffffff !important;
	opacity: 1;
	transform: translateY(-50%) scale(1.12);
	box-shadow: 0 12px 30px rgba(34, 115, 91, 0.4);
}

.hero-arrow-left {
	left: 30px;
}

.hero-arrow-right {
	right: 30px;
}

/* Slider Indicators */
.hero-indicators {
	position: absolute;
	bottom: 24px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 15;
	display: flex;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.hero-indicators button {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.4);
	border: none;
	padding: 0;
	transition: all 0.3s ease;
}

.hero-indicators button.active {
	width: 32px;
	border-radius: 10px;
	background: #2E9677;
	box-shadow: 0 0 12px rgba(46, 150, 119, 0.6);
}

@media (max-width: 1199px) {
	.hero-carousel-slide {
		min-height: 500px;
		height: 500px;
	}
}

@media (max-width: 767px) {
	.hero-carousel-slide {
		min-height: auto;
		height: auto;
		padding: 40px 0 60px;
	}

	.hero-arrow {
		width: 40px;
		height: 40px;
		font-size: 14px;
	}

	.hero-arrow-left {
		left: 10px;
	}

	.hero-arrow-right {
		right: 10px;
	}
}

@media (max-width: 1199px) {
	.redesign-hero {
		min-height: 520px;
		height: 520px;
	}
}

@media (max-width: 767px) {
	.redesign-hero {
		min-height: auto;
		height: auto;
		padding: 50px 0 90px;
		background:
			linear-gradient(180deg, rgba(13, 38, 30, 0.95) 0%, rgba(23, 82, 65, 0.85) 100%),
			url("/web-assets/img/BANNER/banner_main.webp") center / cover no-repeat;
	}
}

.hero-left-content {
	width: 100%;
	max-width: 620px;
	z-index: 2;
}

.hero-floating-stats-card {
	position: absolute;
	bottom: -70px;
	left: 50%;
	transform: translateX(-50%);
	width: 90%;
	max-width: 1280px;
	z-index: 20;
	border-radius: 24px;
	background: linear-gradient(135deg, rgba(13, 38, 30, 0.94), rgba(23, 82, 65, 0.94)) !important;
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border: 1px solid rgba(255, 255, 255, 0.18) !important;
	box-shadow: 0 20px 50px rgba(13, 38, 30, 0.25) !important;
	padding: 24px 30px;
}

@media (max-width: 991px) {
	.hero-floating-stats-card {
		position: relative;
		bottom: auto;
		left: auto;
		transform: none;
		margin: 20px auto -40px;
		width: 100%;
	}
}

.redesign-hero .container {
	position: relative;
	z-index: 1;
}

.hero-nurse-img {
	width: min(340px, 85vw);
	aspect-ratio: 1 / 1;
	object-fit: cover;
	border: 6px solid rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	box-shadow: 0 20px 45px rgba(0, 0, 0, 0.3);
}

}

.hero-subtitle {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 20px;
	padding: 9px 18px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(10px);
	color: #fff;
	font-size: 14px;
	font-weight: 800;
	border: 1px solid rgba(255, 255, 255, 0.25);
}

.hero-title {
	max-width: 680px;
	font-family: var(--heading-font);
	font-size: clamp(34px, 5vw, 56px);
	color: #fff;
	line-height: 1.1;
}

.hero-title span {
	color: #7DD7BE;
}

.hero-title::after {
	content: "";
	display: block;
	width: 96px;
	height: 5px;
	margin-top: 20px;
	border-radius: 999px;
	background: var(--gradient-accent);
}

.hero-desc {
	max-width: 580px;
	margin: 15px 0 20px;
	color: rgba(255, 255, 255, 0.92);
	font-size: 18px;
	line-height: 1.8;
}

.hero-actions .btn-explore,
.hero-actions .btn-brochure {
	min-width: 210px;
	font-weight: 700;
}

.hero-proof-list {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

.hero-proof-item {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 10px 16px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.14);
	backdrop-filter: blur(8px);
	color: #fff;
	font-weight: 800;
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-proof-item i {
	color: var(--gold);
}

.hero-nurse-container {
	position: relative;
	display: inline-block;
}

.hero-nurse-img {
	width: min(440px, 90vw);
	aspect-ratio: 4 / 5;
	object-fit: cover;
	border: 8px solid rgba(255, 255, 255, 0.25);
	border-radius: var(--radius);
	box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
}

.redesign-quick-info,
.redesign-welcome-area,
.redesign-choose-area,
.redesign-faq-area,
.redesign-widgets-area,
.redesign-initiatives-section,
.redesign-cta-section {
	padding: 70px 0;
}

.redesign-cta-section {
	background: var(--bg);
}

.cta-card {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 20px;
	padding: 40px 48px;
	border-radius: 28px;
	background: var(--gradient-dark) !important;
	border: none !important;
	box-shadow: var(--shadow-strong) !important;
	color: #fff !important;
}

.cta-card .tag {
	margin-bottom: 12px;
	background: rgba(255, 255, 255, 0.18) !important;
	color: #fff !important;
	border: none !important;
}

.cta-card h3 {
	font-family: var(--heading-font);
	font-size: clamp(22px, 2.4vw, 30px);
	line-height: 1.35;
	max-width: 680px;
	color: #fff !important;
	font-weight: 800 !important;
}

.cta-card .btn-discover {
	padding: 14px 30px;
	background: #fff !important;
	color: var(--primary-dark) !important;
	border: none !important;
	font-weight: 800 !important;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12) !important;
}

.cta-card .btn-discover:hover {
	background: var(--mint) !important;
	color: var(--primary) !important;
	transform: translateY(-3px) !important;
	box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2) !important;
}

.redesign-quick-info {
	position: relative;
	margin: -70px auto 40px;
	width: min(1120px, calc(100% - 32px));
	padding: 24px;
	background: linear-gradient(135deg, #0f4c81 0%, #00a896 100%) !important;
	border-radius: 28px;
	border: 1px solid rgba(255, 255, 255, 0.15) !important;
	box-shadow: 0 34px 68px rgba(15, 76, 129, 0.25) !important;
	z-index: 2;
}

.redesign-quick-info .quick-card {
	background: #ffffff !important;
	border: 1px solid rgba(15, 76, 129, 0.08) !important;
	box-shadow: 0 10px 25px rgba(15, 76, 129, 0.08) !important;
	color: var(--ink);
}

.redesign-quick-info .quick-card:hover {
	background: #ffffff !important;
	border-color: var(--teal) !important;
	transform: translateY(-5px);
	box-shadow: 0 16px 35px rgba(15, 76, 129, 0.16) !important;
}

.redesign-quick-info .quick-icon {
	background: var(--mint) !important;
	color: var(--teal) !important;
}

.redesign-quick-info .quick-content h5 {
	color: var(--ink) !important;
}

.redesign-quick-info .quick-content p {
	color: var(--muted) !important;
}

.quick-info-wrapper {
	padding: 18px;
	border: none;
	border-radius: var(--radius);
	background: transparent;
	box-shadow: none;
}

.quick-card,
.redesign-choose-card,
.premium-program-card,
.step-card,
.widget-card,
.contact-info,
.login-form,
.contact-form,
.appointment,
.pricing-item,
.single_plan__block,
.course__details_block,
.sidebar-widget {
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--surface);
	box-shadow: var(--shadow);
	transition: var(--transition);
}

.quick-card {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	height: 100%;
	padding: 22px;
}

.quick-card:hover,
.redesign-choose-card:hover,
.premium-program-card:hover,
.step-card:hover,
.contact-info:hover,
.pricing-item:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-strong);
}

.quick-icon,
.card-icon,
.step-icon-wrapper,
.card-icon-bg,
.contact-info-icon,
.pstat-icon-ring,
.pricing-icon {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 58px;
	height: 58px;
	border-radius: var(--radius);
	background: var(--mint);
	color: var(--teal);
	font-size: 23px;
}

.quick-content h5,
.card-title,
.step-title {
	font-family: var(--body-font);
	font-size: 18px;
	font-weight: 900;
	color: var(--ink);
}

.quick-content p,
.card-desc,
.step-desc {
	margin-top: 6px;
	font-size: 14px;
	line-height: 1.55;
}

.redesign-welcome-area {
	background: rgba(224, 247, 245, 0.8);
	position: relative;
}

.redesign-welcome-area::before {
	content: "";
	position: absolute;
	inset: 0;
	opacity: 0.04;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cpath d='M26 4H34V26H56V34H34V56H26V34H4V26H26V4Z' fill='%2300A99D'/%3E%3C/svg%3E");
	pointer-events: none;
}

.redesign-steps-area {
	background: #fff;
}

.premium-programs-area {
	background: rgba(224, 247, 245, 0.95);
}

.redesign-choose-area {
	background: #fff;
}

.premium-stats-section {
	position: relative;
	padding: 40px 0;
	overflow: hidden;
	background: var(--gradient-dark) !important;
	color: #fff;
}

.welcome-img-wrapper {
	position: relative;
	overflow: hidden;
	border-radius: var(--radius);
	border: 8px solid #fff;
	box-shadow: var(--shadow-strong);
}

.welcome-img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.welcome-title {
	font-family: var(--heading-font);
	font-size: clamp(30px, 4vw, 48px);
	margin-bottom: 20px;
}

.welcome-text,
.about-text {
	font-size: 16px;
	line-height: 1.85;
}

.welcome-right .btn-discover {
	margin-top: 28px;
}

.redesign-steps-area {
	padding: 86px 0 !important;
}

.step-card {
	position: relative;
	overflow: hidden;
	min-height: 260px;
	height: 100%;
	padding: 28px 24px;
	border: 1px solid var(--line);
	background: rgba(255, 255, 255, 0.98);
	border-radius: var(--radius);
}

.step-card::after {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at top left, rgba(34, 115, 91, 0.08), transparent 40%);
	pointer-events: none;
}

.step-card.step-shade-1,
.step-card.step-shade-2,
.step-card.step-shade-3,
.step-card.step-shade-4 {
	background: linear-gradient(180deg, rgba(235, 245, 242, 0.7), rgba(255, 255, 255, 0.98));
}

.step-watermark {
	position: absolute;
	right: 18px;
	top: 10px;
	font-size: 60px;
	font-weight: 900;
	line-height: 1;
	color: rgba(34, 115, 91, 0.08);
}

.step-icon-wrapper {
	margin-bottom: 24px;
	width: 64px;
	height: 64px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 18px;
	background: var(--mint);
	color: var(--primary-dark);
	font-size: 24px;
	border: 1px solid var(--line);
}

.step-title {
	margin-bottom: 12px;
}

.premium-programs-area {
	background: var(--bg);
}

.premium-program-card {
	position: relative;
	overflow: hidden;
	height: 100%;
	padding: 32px 28px 28px;
	border-radius: 26px;
	background: rgba(255, 255, 255, 0.98);
	border: 1px solid var(--line);
	box-shadow: var(--shadow);
}

.premium-program-card .gradient-border {
	position: absolute;
	inset: 0 0 auto;
	height: 6px;
	width: 76px;
	border-radius: 999px;
	background: linear-gradient(135deg, var(--purple-start), var(--purple-end));
}

.premium-program-card .card-body {
	padding: 0;
}

.card-icon-bg {
	margin-bottom: 22px;
	width: 72px;
	height: 72px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 22px;
	background: rgba(124, 77, 255, 0.12);
	color: var(--purple-end);
	font-size: 28px;
}

.category-badge,
.fee-tag {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	border-radius: 999px;
	font-size: 13px;
	font-weight: 900;
}

.category-badge {
	padding: 6px 11px;
	background: var(--mint);
	color: var(--teal-dark);
}

.premium-program-card li {
	display: flex;
	align-items: flex-start;
	margin-bottom: 11px;
	color: var(--muted);
	font-weight: 600;
	line-height: 1.5;
}

.premium-program-card li i {
	margin-top: 4px;
	color: var(--teal) !important;
}

.fee-tag {
	color: var(--ink) !important;
}

.redesign-choose-area {
	background: var(--surface-2);
}

.redesign-choose-card {
	height: 100%;
	padding: 30px 28px;
	border: 1px solid rgba(124, 77, 255, 0.16);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 238, 255, 0.92));
}

.redesign-choose-card::after {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at top left, rgba(124, 77, 255, 0.08), transparent 28%);
	pointer-events: none;
}

.redesign-choose-card .card-icon {
	margin-bottom: 22px;
	width: 72px;
	height: 72px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 22px;
	background: linear-gradient(135deg, rgba(124, 77, 255, 0.18), rgba(168, 44, 247, 0.18));
	color: var(--purple-end);
	font-size: 26px;
}

.redesign-choose-card h4 {
	margin-bottom: 10px;
}

.redesign-choose-card p {
	font-size: 15px;
	line-height: 1.75;
}

.premium-stats-section {
	position: relative;
	padding: 20px 0;
	overflow: hidden;
	background: linear-gradient(135deg, rgba(0, 169, 157, 0.95), rgba(17, 68, 182, 0.95));
	color: #fff;
}

.stats-content {
	position: relative;
	z-index: 1;
}

.stats-blob {
	display: none;
}

.premium-stats-section .site-heading h2,
.premium-stats-section .site-heading h2 span,
.premium-stats-section .site-heading h3,
.premium-stats-section .site-heading h3 span,
.premium-stats-section .site-heading h4 {
	color: #fff !important;
}

.premium-stats-section .site-heading .tag,
.tag-light {
	background: rgba(255, 255, 255, 0.12) !important;
	color: #fff !important;
}

.text-teal-accent {
	color: #9ff1df !important;
}

.pstat-card {
	height: 100%;
	padding: 24px 22px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: calc(var(--radius) + 4px);
	background: rgba(255, 255, 255, 0.12);
	box-shadow: 0 18px 34px rgba(0, 0, 0, 0.14);
}

.pstat-icon-ring {
	background: rgba(255, 255, 255, 0.16);
	color: #fff;
}

.pstat-num-wrapper {
	display: flex;
	align-items: baseline;
	justify-content: flex-start;
	white-space: nowrap;
	margin-top: 18px;
}

.pstat-number {
	display: inline-block;
	font-size: clamp(32px, 4vw, 44px);
	font-weight: 900;
	line-height: 1.05;
	color: #fff;
}

.pstat-plus {
	display: inline-block;
	margin-left: 4px;
	font-size: 28px;
	font-weight: 900;
	color: var(--gold);
}

.pstat-label {
	margin-top: 12px;
	color: rgba(255, 255, 255, 0.82);
	font-weight: 700;
}

.pstat-bar {
	height: 10px;
	margin-top: 26px;
	overflow: hidden;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.18);
}

.pstat-bar::before {
	content: "";
	display: block;
	width: 84%;
	height: 100%;
	border-radius: 999px;
	background: linear-gradient(135deg, #D4F8F2, rgba(17, 68, 182, 0.8));
}

.redesign-widgets-area {
	background: #fff;
}

.widget-card {
	height: 100%;
	overflow: hidden;
}

.widget-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	padding: 18px 20px;
	background: var(--navy);
	color: #fff;
}

.widget-header.amber {
	background: #9f6b00;
}

.widget-header.teal {
	background: var(--teal-dark);
}

.widget-header h4 {
	margin: 0;
	font-family: var(--body-font);
	font-size: 16px;
	font-weight: 900;
	color: #fff;
}

.widget-body {
	padding: 20px;
}

.notification-item,
.widget-scroller-item,
.widget-center-scroller-item {
	display: flex;
	gap: 14px;
	padding: 14px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--surface-2);
}

.notification-list,
.widget-horizontal-scroll {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.notification-item i {
	margin-top: 5px;
	color: var(--teal);
}

.btn-view-notifications {
	width: calc(100% - 40px);
	margin: 0 20px 20px;
	padding: 13px 18px;
	background: var(--mint);
	color: var(--teal-dark);
}

.btn-view-notifications:hover {
	background: var(--teal);
	color: #fff;
}

.widget-scroller-avatar,
.widget-center-avatar {
	width: 58px;
	height: 58px;
	flex: 0 0 auto;
	object-fit: cover;
	border: 2px solid var(--mint);
	border-radius: 50%;
}

.widget-scroller-info .name,
.widget-center-info .location {
	margin: 0;
	color: var(--ink);
	font-weight: 900;
	line-height: 1.35;
}

.widget-scroller-info .dept,
.widget-center-meta-row {
	margin-top: 4px;
	font-size: 13px;
	color: var(--muted);
}

.widget-center-meta-row .label {
	font-weight: 800;
	color: var(--ink);
}

.redesign-faq-accordion .accordion-item {
	margin-bottom: 14px;
	overflow: hidden;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: #fff;
	box-shadow: var(--shadow);
}

.redesign-faq-accordion .accordion-button {
	padding: 20px 22px;
	font-weight: 900;
	color: var(--ink);
	background: #fff;
	box-shadow: none;
}

.redesign-faq-accordion .accordion-button:not(.collapsed) {
	color: var(--teal-dark);
	background: var(--mint);
}

.redesign-faq-accordion .accordion-button::after {
	display: none;
}

.redesign-faq-accordion .accordion-body {
	padding: 22px;
	color: var(--muted);
}

.redesign-initiatives-section {
	overflow: hidden;
	background: var(--surface-2);
}

.initiatives-marquee {
	width: 100%;
	overflow: hidden;
}

.initiatives-marquee-track {
	display: flex;
	width: max-content;
	animation: initiatives-marquee 38s linear infinite;
}

.initiatives-marquee:hover .initiatives-marquee-track {
	animation-play-state: paused;
}

.initiatives-marquee-group {
	display: flex;
	gap: 18px;
	padding: 0 9px;
}

.partner-card {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 170px;
	height: 118px;
	padding: 14px;
	border: 2px solid var(--line);
	border-radius: var(--radius);
	background: #fff;
	box-shadow: var(--shadow);
}

.partner-card img {
	max-height: 88px;
	object-fit: contain;
}

.partner-card.student-card-marquee,
.partner-card.center-card-marquee,
.partner-card.notification-card-marquee {
	width: 240px;
	justify-content: flex-start;
	padding: 14px 18px;
}

.student-card-marquee {
	border-left: 4px solid #00a896 !important;
}

.center-card-marquee {
	border-left: 4px solid #0f4c81 !important;
}

.notification-card-marquee {
	border-left: 4px solid #f59e0b !important;
	background: #fffcf4 !important;
}

@keyframes initiatives-marquee {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-50%);
	}
}

.site-breadcrumb,
.inner-intro {
	position: relative;
	padding: 56px 0;
	overflow: hidden;
	background: var(--navy) !important;
	background-image: none !important;
	text-align: center !important;
}

.site-breadcrumb .container,
.inner-intro .container {
	position: relative;
	z-index: 1;
	text-align: center !important;
}

.breadcrumb-title,
.inner-intro h1 {
	color: #fff;
	font-size: clamp(28px, 4vw, 44px);
	text-align: center !important;
	margin-left: auto !important;
	margin-right: auto !important;
}

.breadcrumb-menu,
.page-breadcrumb {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 14px;
	color: rgba(255, 255, 255, 0.84);
	font-weight: 700;
	justify-content: center !important;
	margin-left: auto !important;
	margin-right: auto !important;
}

.breadcrumb-menu a,
.page-breadcrumb a {
	color: #fff;
}

.breadcrumb-menu .active,
.page-breadcrumb span {
	color: var(--gold) !important;
}

.about-area {
	background: #fff;
}

.about-left img,
.team-single-img img,
.course__figure_img img {
	width: 100%;
	border-radius: var(--radius);
	box-shadow: var(--shadow);
}

.about-text+.about-text {
	margin-top: 16px;
}

.counter-area {
	background: var(--navy-dark);
}

.counter-box {
	display: flex;
	align-items: center;
	gap: 16px;
	height: 100%;
	padding: 24px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: var(--radius);
	background: rgba(255, 255, 255, 0.08);
}

.counter-box .icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 62px;
	height: 62px;
	border-radius: var(--radius);
	background: #fff;
}

.counter-box .icon img {
	width: 34px;
	height: 34px;
}

.counter-box .counter {
	color: #fff;
	font-size: 34px;
	font-weight: 900;
	line-height: 1;
}

.counter-box .title {
	margin-top: 6px;
	color: rgba(255, 255, 255, 0.82);
	font-family: var(--body-font);
}

.pricing-area {
	background: var(--surface-2);
}

.pricing-item {
	padding: 28px;
}

.pricing-item .pricing-header {
	display: flex;
	align-items: center;
	gap: 18px;
}

.pricing-header h4 {
	font-family: var(--body-font);
	font-weight: 900;
	color: var(--teal-dark);
}

.pricing-feature p {
	color: var(--ink);
}

.team-single {
	background: #fff;
}

.team-single-img {
	padding: 10px;
	border-radius: var(--radius);
	background: #fff;
	box-shadow: var(--shadow);
}

.team-details {
	padding: 28px;
}

.team-details strong {
	display: inline-block;
	margin-top: 8px;
	color: var(--teal);
}

.team-details-social {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 20px;
}

.team-details-social a,
.footer-social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
}

.team-details-social a {
	background: var(--mint);
	color: var(--teal-dark);
}

.creative_heading {
	max-width: 820px;
	margin: 0 auto 34px;
}

.creative_heading h2 {
	font-size: clamp(30px, 4vw, 46px);
}

.creative_heading p {
	margin-top: 14px;
}

.card {
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: #fff;
	box-shadow: var(--shadow);
}

.card-img-top {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.card-body {
	padding: 22px;
}

.card-title {
	min-height: 48px;
}

.card-text {
	color: var(--muted);
	font-weight: 700;
}

.item1 {
	min-height: 495px;
}

.course__details_block,
.sidebar-widget,
.single_plan__block {
	padding: 26px;
}

.course_features_point li,
.plan-content-box li {
	position: relative;
	margin-bottom: 12px;
	padding-left: 22px;
	color: var(--muted);
}

.course_features_point li::before,
.plan-content-box li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 12px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--teal);
}

.widget-post li {
	display: flex;
	gap: 12px;
	margin-bottom: 16px;
}

.widget-post-media img {
	width: 68px;
	height: 68px;
	object-fit: cover;
	border-radius: var(--radius);
}

.plan-content-box {
	width: 100% !important;
}

.plan-content-box__wight__bg {
	padding: 30px;
	border-radius: var(--radius);
	background: #fff;
}

.plan-content-box h3 {
	margin: 24px 0 10px;
	color: var(--teal-dark);
}

.plan-content-box h3:first-child {
	margin-top: 0;
}

.plan-content-box p+p,
.plan-content-box ul+p,
.plan-content-box p+ul {
	margin-top: 14px;
}

.contact-area {
	background: #fff;
}

.contact-content {
	margin-bottom: 42px;
}

.contact-info {
	height: 100%;
	padding: 28px;
}

.contact-info-icon {
	margin-bottom: 18px;
}

.contact-info h5 {
	font-family: var(--body-font);
	font-weight: 900;
}

.contact-info p {
	margin-top: 8px;
	line-height: 1.6;
}

.contact-wrapper {
	padding: 28px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--surface-2);
	box-shadow: var(--shadow);
}

.contact-map-frame {
	width: 100%;
	height: 450px;
	border: 0;
	border-radius: var(--radius);
}

.contact-form {
	padding: 30px;
}

.contact-form-header {
	margin-bottom: 22px;
}

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

.form-control,
.form-select,
select.form-control,
textarea.form-control,
input.form-control {
	min-height: 48px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	color: var(--ink);
	box-shadow: none;
}

textarea.form-control {
	min-height: 130px;
}

.form-control:focus,
.form-select:focus {
	border-color: var(--teal);
	box-shadow: 0 0 0 4px rgba(0, 131, 111, 0.12);
}

.input-sm,
.form-full {
	width: 100%;
	min-height: 48px;
	padding: 10px 14px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: #fff;
	color: var(--ink);
}

.input-sm:focus,
.form-full:focus {
	border-color: var(--teal);
	outline: none;
	box-shadow: 0 0 0 4px rgba(0, 131, 111, 0.12);
}

.event-section,
.course-section__block,
.login-area {
	background: var(--surface-2);
}

.appointment,
.login-form {
	padding: 30px;
}

.registration_section .row {
	row-gap: 12px;
}

.required-mark,
label span,
sup {
	color: var(--red);
}

.table {
	overflow: hidden;
	border-radius: var(--radius);
	background: #fff;
}

.table th {
	background: var(--navy);
	color: #fff;
}

.table td,
.table th {
	padding: 14px;
	vertical-align: middle;
}

.center-list-table {
	background: #fff;
	width: 100%;
}

.btn-text {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 13px 22px;
	border: 0;
	border-radius: 999px;
	background: var(--teal);
	color: #fff !important;
	font-weight: 800;
	line-height: 1;
	box-shadow: 0 14px 30px rgba(0, 131, 111, 0.22);
}

.btn-text:hover {
	background: var(--navy);
	color: #fff !important;
	transform: translateY(-2px);
}

.toShowHide {
	display: none;
}

.fee-mini {
	font-size: 11px;
	font-weight: 800;
	color: var(--ink);
}

.errormsg {
	display: block;
	margin-top: 6px;
	color: var(--red);
	font-size: 14px;
	font-weight: 700;
}

.result-link {
	color: var(--teal-dark);
	font-weight: 800;
}

.alert-danger {
	margin-top: 10px;
}

.package-option {
	margin-bottom: 10px;
}

.box-hover {
	height: 100%;
	padding: 18px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: #fff;
	box-shadow: var(--shadow);
}

.package-image {
	width: 100px;
	height: 140px;
	object-fit: cover;
	border-radius: var(--radius);
}

.package-icon {
	width: 100px;
}

.package-team-block {
	padding: 10px;
}

.lead-point li {
	margin-top: 8px;
	color: var(--muted);
}

.package-radio {
	transform: scale(1.25);
	accent-color: var(--teal);
}

.package-choice-text {
	text-transform: capitalize;
	font-size: 16px;
	font-weight: 700;
	color: var(--ink);
}

.facebook-frame {
	border: 0;
	overflow: hidden;
}

.maintenance-message {
	font-size: 16px;
	font-weight: 700;
}

.certificate-sample-title {
	color: #111;
}

.footer-area {
	background: var(--navy-dark);
	color: rgba(255, 255, 255, 0.8);
}

.footer-widget {
	position: relative;
	background: linear-gradient(180deg, var(--navy-dark), var(--navy));
}

.footer-logo img {
	width: 75px;
	height: 75px;
	object-fit: cover;
}

.footer-brand-title {
	font-size: 15px;
	line-height: 1.25;
}

.footer-brand-subtitle {
	color: rgba(255, 255, 255, 0.72);
	font-size: 13px;
}

.footer-about-text,
.footer-contact span,
.footer-list a,
.footer-newsletter p,
.copyright-text {
	color: rgba(255, 255, 255, 0.78);
}

.footer-widget-title,
.footer-contact-title {
	position: relative;
	margin-bottom: 20px;
	color: #fff;
	font-family: var(--body-font);
	font-size: 20px;
	font-weight: 900;
}

.footer-list li,
.footer-contact li {
	margin-bottom: 10px;
}

.footer-list a,
.footer-contact a {
	color: rgba(255, 255, 255, 0.78);
}

.footer-list a:hover,
.footer-contact a:hover {
	color: #fff;
	transform: translateX(3px);
}

.footer-accent-icon {
	color: var(--gold);
}

.subscribe-form .form-control {
	min-height: 52px;
	border-color: rgba(255, 255, 255, 0.18);
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
}

.subscribe-form .form-control::placeholder {
	color: rgba(255, 255, 255, 0.66);
}

.subscribe-form .theme-btn {
	width: 100%;
}

.copyright {
	padding: 18px 0;
	background: rgba(0, 0, 0, 0.18);
}

.copyright-wrapper {
	width: 100%;
}

#scroll-top {
	position: fixed;
	right: 18px;
	bottom: 18px;
	z-index: 999;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--teal);
	color: #fff;
	box-shadow: var(--shadow);
}

#scroll-top:hover {
	background: var(--navy);
	color: #fff;
}

.main-navigation.sticky {
	position: fixed;
	top: 0;
	width: 100%;
	animation: slideInDown 0.5s ease-in-out;
}

@keyframes slideInDown {
	from {
		transform: translateY(-100%);
	}

	to {
		transform: translateY(0);
	}
}



.premium-stats-section {
	background: linear-gradient(135deg, var(--navy-dark), var(--teal-dark)) !important;
}

.pstat-card {
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	transition: var(--transition);
}

.pstat-card:hover {
	transform: translateY(-5px);
	background: rgba(255, 255, 255, 0.1);
}

.partner-card {
	position: relative;
	overflow: hidden;
	border: 2px solid rgb(105 73 134);
	;
	border-radius: calc(var(--radius) + 4px);
	background: #fff;
	box-shadow: 0 24px 50px rgba(124, 77, 255, 0.08);
	transition: var(--transition);
}

.partner-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(124, 77, 255, 0.3), rgba(168, 44, 247, 0.3));
	opacity: 0;
	transition: var(--transition);
	z-index: 1;
}

.partner-card:hover::before {
	opacity: 1;
}

.partner-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 30px 60px rgba(124, 77, 255, 0.18);
	border-color: transparent;
}

.partner-card img {
	transition: var(--transition);
	position: relative;
	z-index: 2;
}

.partner-card:hover img {
	transform: scale(1.03);
}

@media (min-width: 992px) {
	.dropdown:hover>.dropdown-menu {
		display: block;
	}
}

@media (max-width: 991px) {
	.container {
		width: min(100% - 24px, 720px);
	}

	.redesign-topbar .container,
	.logo-row-full .container {
		justify-content: center !important;
		text-align: center;
	}

	.topbar-right-links {
		justify-content: center;
		width: 100%;
		margin-top: 6px;
	}

	.main-navigation .container {
		align-items: stretch !important;
	}

	.navbar-collapse {
		width: 100%;
		padding: 12px 0 18px;
	}

	.navbar .nav-link {
		padding: 12px 0 !important;
	}

	.dropdown-menu {
		margin: 0 0 10px;
		box-shadow: none;
	}

	.nav-right {
		justify-content: stretch;
		width: 100%;
	}

	.apply-now-btn {
		width: 100%;
	}

	.redesign-hero {
		padding: 70px 0;
		text-align: center;
	}

	.hero-title,
	.hero-desc {
		margin-left: auto;
		margin-right: auto;
	}

	.hero-title::after {
		margin-left: auto;
		margin-right: auto;
	}

	.hero-actions,
	.hero-proof-list {
		justify-content: center;
	}

	.py-120,
	.py-80,
	.redesign-welcome-area,
	.redesign-choose-area,
	.redesign-faq-area,
	.redesign-widgets-area,
	.redesign-initiatives-section,
	.redesign-steps-area {
		padding-top: 62px !important;
		padding-bottom: 62px !important;
	}

	.pricing-item .pricing-header,
	.pricing-feature {
		width: 100%;
	}

	.pricing-item {
		gap: 20px;
	}
}

@media (max-width: 767px) {
	body {
		font-size: 15px;
	}

	.container {
		width: min(100% - 20px, 540px);
	}

	.logo-row-full .container>a {
		align-items: flex-start !important;
		text-align: left;
	}

	.logo-img {
		width: 48px;
		height: 48px;
	}

	.redesign-hero {
		padding: 58px 0;
	}

	.hero-actions .btn-explore,
	.hero-actions .btn-brochure {
		width: 100%;
	}

	.hero-proof-list {
		flex-direction: column;
		align-items: stretch;
	}

	.hero-proof-item {
		justify-content: center;
	}

	.quick-info-wrapper,
	.contact-wrapper,
	.contact-form,
	.appointment,
	.login-form,
	.plan-content-box__wight__bg {
		padding: 20px;
	}

	.quick-card,
	.counter-box,
	.widget-scroller-item,
	.widget-center-scroller-item {
		align-items: flex-start;
	}

	.redesign-quick-info {
		margin: -40px auto 20px !important;
		padding: 12px !important;
		border-radius: 18px !important;
	}

	.redesign-quick-info .quick-card {
		padding: 14px 16px !important;
		border-radius: 12px !important;
		gap: 12px !important;
	}

	.redesign-quick-info .quick-icon {
		width: 44px !important;
		height: 44px !important;
		font-size: 18px !important;
		border-radius: 10px !important;
	}

	.redesign-quick-info .quick-content h5 {
		font-size: 15px !important;
	}

	.redesign-quick-info .quick-content p {
		font-size: 12px !important;
	}

	/* .premium-stats-section {
		padding: 62px 0;
	} */

	.partner-card {
		width: 145px;
		height: 104px;
	}

	.contact-map-frame {
		height: 320px;
	}

	.footer-widget-wrapper {
		row-gap: 30px;
	}

	.copyright,
	.footer-social {
		text-align: center;
		justify-content: center !important;
	}
}

@media (max-width: 575px) {

	.site-breadcrumb,
	.inner-intro {
		padding: 62px 0;
	}

	.step-card,
	.premium-program-card,
	.redesign-choose-card,
	.contact-info,
	.pricing-item,
	.course__details_block,
	.sidebar-widget {
		padding: 22px;
	}

	.card-title {
		min-height: auto;
	}
}

/* ==========================================================================
   LIVE ENROLMENT VITALS SECTION — redesign-vitals-info
   ========================================================================== */
.redesign-vitals-info {
	position: relative;
	margin: -55px auto -45px !important;
	width: min(1120px, calc(100% - 32px));
	z-index: 9;
}

.vitals-wrapper {
	background: linear-gradient(135deg, #1d72e8 0%, #00a896 100%) !important;
	border-radius: 24px;
	padding: 12px 30px 12px;
	border: 1px solid rgba(255, 255, 255, 0.2) !important;
	box-shadow: 0 25px 60px rgba(9, 19, 76, 0.25), 0 0 30px rgba(0, 169, 157, 0.1) !important;
	color: #ffffff;
}

.vitals-header {
	margin-bottom: 12px;
	text-align: left;
}

.vitals-tag {
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 1px;
	color: var(--gold) !important;
}

.vitals-main-row {
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	padding-bottom: 16px;
}

.vitals-col {
	display: flex;
	align-items: center;
}

@media (min-width: 992px) {
	.border-middle {
		border-left: 1px solid rgba(255, 255, 255, 0.1);
		border-right: 1px solid rgba(255, 255, 255, 0.1);
		padding-left: 30px !important;
		padding-right: 30px !important;
	}
}

.vitals-icon {
	font-size: 34px;
	color: rgba(255, 255, 255, 0.9);
	flex-shrink: 0;
}

.vitals-text h4 {
	font-size: clamp(24px, 2.5vw, 32px) !important;
	font-weight: 800;
	color: #ffffff !important;
	line-height: 1;
	margin: 0 !important;
}

.vitals-text p {
	font-size: 12px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.7) !important;
	margin-top: 4px !important;
	margin-bottom: 0 !important;
}

.vitals-wave-container {
	opacity: 0.85;
}

@keyframes heartbeat-animation {
	0% {
		stroke-dashoffset: 240;
	}

	100% {
		stroke-dashoffset: 0;
	}
}

.heartbeat-line path {
	stroke-dasharray: 240;
	stroke-dashoffset: 0;
	animation: heartbeat-animation 3.5s linear infinite;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.border-top-glow {
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.vitals-footer {
	font-size: 11.5px;
	font-weight: 700;
	letter-spacing: 0.5px;
}

.status-label {
	color: rgba(255, 255, 255, 0.6);
}

.status-val {
	font-weight: 800;
	color: #00ff66 !important;
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.pulsing-dot {
	width: 8px;
	height: 8px;
	background: #00ff66;
	border-radius: 50%;
	display: inline-block;
	box-shadow: 0 0 10px #00ff66;
	animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {
	0% {
		transform: scale(0.9);
		box-shadow: 0 0 0 0 rgba(0, 255, 102, 0.7);
	}

	70% {
		transform: scale(1.1);
		box-shadow: 0 0 0 8px rgba(0, 255, 102, 0);
	}

	100% {
		transform: scale(0.9);
		box-shadow: 0 0 0 0 rgba(0, 255, 102, 0);
	}
}

.vitals-dept {
	color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 991px) {
	.redesign-vitals-info {
		margin: -45px auto -20px !important;
		padding: 0 12px;
	}

	.vitals-wrapper {
		padding: 20px;
	}

	.vitals-wave-container {
		display: none !important;
	}
}

/* ==========================================================================
   FULL-WIDTH KEY HIGHLIGHTS — fullwidth-quick-info
   ========================================================================== */
.fullwidth-quick-info {
	background: linear-gradient(180deg, #f4f8fb 0%, #e9f2f8 100%) !important;
	padding: 60px 0;
	border-top: 1px solid rgba(15, 76, 129, 0.05);
	border-bottom: 1px solid rgba(15, 76, 129, 0.05);
}

.quick-card-new {
	background: #ffffff !important;
	border: 1px solid rgba(15, 76, 129, 0.06) !important;
	border-radius: 20px;
	padding: 28px 24px;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 16px;
	box-shadow: 0 8px 24px rgba(15, 76, 129, 0.04) !important;
	transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.quick-card-new:hover {
	transform: translateY(-5px);
	border-color: rgba(0, 169, 157, 0.25) !important;
	box-shadow: 0 16px 36px rgba(15, 76, 129, 0.08) !important;
}

.quick-icon-new {
	width: 52px;
	height: 52px;
	border-radius: 12px;
	background: rgba(0, 169, 157, 0.08) !important;
	color: var(--teal) !important;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	transition: all 0.3s ease;
}

.quick-card-new:hover .quick-icon-new {
	background: var(--teal) !important;
	color: #ffffff !important;
	transform: rotate(-5deg) scale(1.05);
}

.quick-content-new h5 {
	font-size: 17px;
	font-weight: 800;
	color: var(--ink);
	margin-bottom: 8px;
}

.quick-content-new p {
	font-size: 13.5px;
	color: var(--muted);
	line-height: 1.6;
	margin: 0;
}

/* ==========================================================================
   FLOATING HERO PARTICLES & ECG DIVIDERS
   ========================================================================== */
.redesign-hero {
	position: relative;
}

.hero-particle {
	position: absolute;
	opacity: 0.07;
	color: var(--mint);
	font-size: clamp(24px, 3.5vw, 44px);
	pointer-events: none;
	z-index: 1;
}

.particle-1 {
	top: 15%;
	left: 8%;
	animation: float-slow-anim 8s ease-in-out infinite alternate;
}

.particle-2 {
	top: 55%;
	left: 5%;
	animation: float-slow-anim 12s ease-in-out infinite alternate-reverse;
}

.particle-3 {
	top: 25%;
	right: 12%;
	animation: float-slow-anim 10s ease-in-out infinite alternate;
}

.particle-4 {
	top: 70%;
	right: 8%;
	animation: float-slow-anim 9s ease-in-out infinite alternate-reverse;
}

.particle-5 {
	bottom: 12%;
	left: 45%;
	animation: float-slow-anim 11s ease-in-out infinite alternate;
}

@keyframes float-slow-anim {
	0% {
		transform: translateY(0) rotate(0deg);
	}

	100% {
		transform: translateY(-25px) rotate(15deg);
	}
}

.ecg-section-divider {
	width: 100%;
	height: 40px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	background: transparent;
	margin: 10px 0;
}

.ecg-section-divider svg {
	width: 100%;
	max-width: 1440px;
	height: 100%;
}

.ecg-section-divider path {
	stroke-dasharray: 1000;
	stroke-dashoffset: 0;
	animation: ecg-sweep-anim 5s linear infinite;
}

@keyframes ecg-sweep-anim {
	0% {
		stroke-dashoffset: 2000;
	}

	100% {
		stroke-dashoffset: 0;
	}
}

/* ==========================================================================
   FOOTER AREA - LUXURY MEDICAL EMERALD
   ========================================================================== */
.footer-area {
	background: var(--gradient-dark) !important;
	color: #ffffff;
	position: relative;
}

.footer-widget-title {
	font-family: var(--heading-font);
	color: #ffffff !important;
	font-size: 20px;
	font-weight: 800;
	margin-bottom: 24px;
	position: relative;
}

.footer-widget-title::after {
	content: "";
	display: block;
	width: 40px;
	height: 3px;
	background: var(--primary-light);
	border-radius: 999px;
	margin-top: 8px;
}

.footer-list li a {
	color: rgba(255, 255, 255, 0.85) !important;
	font-weight: 600;
	transition: var(--transition);
}

.footer-list li a:hover {
	color: #7DD7BE !important;
	transform: translateX(5px);
}

.footer-accent-icon {
	color: var(--primary-light) !important;
}

.copyright {
	background: #071913 !important;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding: 20px 0;
}

/* ============================================================
   MINOR TRANSITION & ANIMATION EFFECTS — BPNT
   ============================================================ */

/* ---------- 1. Buttons: lift + soft glow on hover ---------- */
.btn-teal,
.btn-outline,
.btn-pill,
.apply-now-btn,
.header-portal-login-btn,
.btn-discover,
.btn-explore {
	transition: transform 0.2s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn-teal:hover,
.btn-pill:hover,
.apply-now-btn:hover,
.header-portal-login-btn:hover,
.btn-discover:hover,
.btn-explore:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 24px rgba(34, 115, 91, 0.28);
}

.btn-outline:hover {
	transform: translateY(-2px);
	border-color: var(--teal-light, #2e9677);
	color: var(--teal-dark, #175241);
}

.btn-teal:active,
.btn-outline:active,
.btn-pill:active {
	transform: translateY(0);
	box-shadow: none;
}

/* ---------- 2. Cards: elevate + border tint on hover ---------- */
.course-card,
.highlight-card,
.feature-card,
.quick-card-new,
.step-card,
.center-card {
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.course-card:hover,
.highlight-card:hover,
.feature-card:hover,
.quick-card-new:hover,
.step-card:hover,
.center-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 16px 32px rgba(13, 38, 30, 0.1);
	border-color: var(--teal-light, #2e9677);
}

/* ---------- 3. Card icons: gentle bounce on card hover ---------- */
.course-card .icon-circle,
.highlight-card .icon-circle,
.quick-card-new img,
.center-card img {
	transition: transform 0.3s ease;
}

.course-card:hover .icon-circle,
.highlight-card:hover .icon-circle,
.quick-card-new:hover img,
.center-card:hover img {
	transform: scale(1.08) rotate(-3deg);
}

/* ---------- 4. Nav links: underline grows from center ---------- */
.nav-link {
	position: relative;
}

.nav-link::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 0px;
	width: 0%;
	height: 2px;
	background: var(--teal, #22735b);
	transition: width 0.25s ease, left 0.25s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
	width: 80%;
	left: 10%;
}

/* ---------- 5. Sticky navbar: shadow/blur eases in via JS toggle ---------- */
.site-navbar {
	transition: box-shadow 0.3s ease, background 0.3s ease, backdrop-filter 0.3s ease;
}

.site-navbar.is-scrolled {
	background: rgba(255, 255, 255, 0.92) !important;
	backdrop-filter: blur(16px);
	box-shadow: 0 10px 30px rgba(13, 38, 30, 0.12) !important;
}

.site-navbar .mini-brand {
	opacity: 0;
	transform: translateY(-6px);
	transition: opacity 0.25s ease, transform 0.25s ease;
	pointer-events: none;
}

.site-navbar.is-scrolled .mini-brand {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}

/* ---------- 6. Image zoom on hover (course/center photos) ---------- */
.img-zoom-wrap {
	overflow: hidden;
	border-radius: inherit;
}

.img-zoom-wrap img {
	transition: transform 0.4s ease;
	display: block;
	width: 100%;
}

.img-zoom-wrap:hover img {
	transform: scale(1.06);
}

/* ---------- 7. Scroll-reveal: fade + rise (paired with reveal.js) ---------- */
[data-reveal] {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-reveal].is-visible {
	opacity: 1;
	transform: translateY(0);
}

/* stagger children automatically when parent has data-reveal-group */
[data-reveal-group] [data-reveal]:nth-child(1) {
	transition-delay: 0.05s;
}

[data-reveal-group] [data-reveal]:nth-child(2) {
	transition-delay: 0.1s;
}

[data-reveal-group] [data-reveal]:nth-child(3) {
	transition-delay: 0.15s;
}

[data-reveal-group] [data-reveal]:nth-child(4) {
	transition-delay: 0.2s;
}

[data-reveal-group] [data-reveal]:nth-child(5) {
	transition-delay: 0.25s;
}

[data-reveal-group] [data-reveal]:nth-child(6) {
	transition-delay: 0.3s;
}

/* ---------- 8. Verified badge: single soft pulse (not looping) ---------- */
.badge-verified {
	animation: badgePop 0.4s ease;
}

@keyframes badgePop {
	0% {
		transform: scale(0.8);
		opacity: 0;
	}

	70% {
		transform: scale(1.08);
		opacity: 1;
	}

	100% {
		transform: scale(1);
	}
}

/* ---------- 9. Notification/ticker item: soft slide-in ---------- */
.ticker-item {
	animation: tickerIn 0.5s ease both;
}

@keyframes tickerIn {
	from {
		opacity: 0;
		transform: translateY(10px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* ---------- 10. Stat numbers ---------- */
.stat-block {
	transition: transform 0.3s ease;
}

.stat-block:hover {
	transform: translateY(-3px);
}

/* ---------- 11. Focus states (accessibility) ---------- */
a:focus-visible,
button:focus-visible,
.btn-teal:focus-visible,
.btn-outline:focus-visible {
	outline: 2px solid var(--teal-light, #2e9677);
	outline-offset: 3px;
}

/* ---------- 12. FAQ accordion ---------- */
.faq-item .faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.is-open .faq-answer {
	max-height: 400px;
}

.faq-item .faq-chevron {
	transition: transform 0.3s ease;
}

.faq-item.is-open .faq-chevron {
	transform: rotate(180deg);
}

.faq-item .faq-question {
	transition: color 0.2s ease, background 0.2s ease;
}

.faq-item.is-open .faq-question,
.faq-item .faq-question:hover {
	color: var(--teal-dark, #175241);
	background: var(--mint, #ebf5f2);
}

/* ---------- 13. Form inputs ---------- */
.form-control,
.form-select {
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-control:focus,
.form-select:focus {
	border-color: var(--teal-light, #2e9677);
	box-shadow: 0 0 0 3px rgba(46, 150, 119, 0.15);
}

/* ---------- Respect reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {

	*,
	*::before,
	*::after {
		animation-duration: 0.001ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.001ms !important;
		scroll-behavior: auto !important;
	}
}

/* ============================================================
   PREMIUM ANIMATION EXTENSIONS — BPNT
   ============================================================ */

/* Top Scroll Progress Bar */
#scroll-progress {
	position: fixed;
	top: 0;
	left: 0;
	height: 3px;
	background: linear-gradient(90deg, #22735B, #2E9677, #7DD7BE);
	z-index: 9999;
	width: 0%;
	transition: width 0.1s ease-out;
}

/* Cursor Spotlight Effect */
.cursor-spotlight {
	position: fixed;
	top: 0;
	left: 0;
	width: 450px;
	height: 450px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(46, 150, 119, 0.1) 0%, transparent 70%);
	pointer-events: none;
	transform: translate(-50%, -50%);
	z-index: 9998;
	transition: transform 0.08s ease-out;
}

/* Hero Nurse Float Animation */
.hero-nurse-img {
	animation: heroFloatAnim 6s ease-in-out infinite alternate !important;
}

@keyframes heroFloatAnim {
	0% {
		transform: translateY(0px) rotate(0deg);
	}

	100% {
		transform: translateY(-10px) rotate(1deg);
	}
}

/* Shimmer Sweep Effect for CTA Buttons */
.apply-now-btn,
.header-portal-login-btn,
.btn-teal {
	position: relative;
	overflow: hidden;
}

.apply-now-btn::after,
.header-portal-login-btn::after,
.btn-teal::after {
	content: "";
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: linear-gradient(60deg, transparent 30%, rgba(255, 255, 255, 0.35) 50%, transparent 70%);
	transform: rotate(30deg) translateX(-100%);
	animation: btnShimmerSweep 5s infinite;
	pointer-events: none;
}

@keyframes btnShimmerSweep {

	0%,
	70% {
		transform: rotate(30deg) translateX(-100%);
	}

	100% {
		transform: rotate(30deg) translateX(100%);
	}
}

/* Live Enrolment Toast Notification Popup */
.live-toast-notification {
	position: fixed;
	bottom: 90px;
	right: 25px;
	z-index: 1060;
	background: rgba(255, 255, 255, 0.96);
	backdrop-filter: blur(16px);
	border: 1px solid var(--line);
	border-left: 4px solid var(--teal);
	box-shadow: 0 12px 35px rgba(13, 38, 30, 0.15);
	border-radius: 14px;
	padding: 14px 18px;
	display: flex;
	align-items: center;
	gap: 14px;
	max-width: 360px;
	transform: translateY(100px);
	opacity: 0;
	transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.4s ease;
}

.live-toast-notification.is-visible {
	transform: translateY(0);
	opacity: 1;
}

/* ============================================================
   PREMIUM DROPDOWN UI & SURPRISE DESIGN ELEMENTS
   ============================================================ */

/* ---------- 1. Dropdown UI Formatting & Glass Effect ---------- */
.dropdown-menu {
	min-width: 250px !important;
	padding: 12px !important;
	border: 1px solid var(--line) !important;
	border-top: 3px solid var(--primary) !important;
	border-radius: 16px !important;
	box-shadow: 0 16px 40px rgba(13, 38, 30, 0.16) !important;
	background: rgba(255, 255, 255, 0.96) !important;
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	animation: dropdownFadeIn 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes dropdownFadeIn {
	from {
		opacity: 0;
		transform: translateY(8px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.dropdown-item {
	padding: 11px 16px !important;
	border-radius: 10px !important;
	font-weight: 700 !important;
	font-size: 14px !important;
	color: var(--navy) !important;
	white-space: normal;
	transition: all 0.2s ease !important;
	display: flex;
	align-items: center;
	gap: 10px;
}

.dropdown-item:hover,
.dropdown-item:focus {
	background: var(--mint) !important;
	color: var(--primary) !important;
	transform: translateX(6px);
}

/* Custom Styled Select Dropdowns */
select.form-select,
.hero-search-box select {
	appearance: none !important;
	-webkit-appearance: none !important;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2322735B'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E") !important;
	background-repeat: no-repeat !important;
	background-position: right 14px center !important;
	background-size: 20px 20px !important;
	padding-right: 40px !important;
	cursor: pointer;
}

/* ---------- 2. Surprise Design & Color Elements ---------- */
/* Medical Emerald Custom Scrollbar */
::-webkit-scrollbar {
	width: 10px;
}

::-webkit-scrollbar-track {
	background: #F8FCFA;
}

::-webkit-scrollbar-thumb {
	background: #2E9677;
	border-radius: 999px;
	border: 2px solid #F8FCFA;
}

::-webkit-scrollbar-thumb:hover {
	background: #22735B;
}

/* Glowing Surprise Gold Badge Pill */
.tag-gold-glow {
	background: linear-gradient(135deg, #FFF8E7, #FFE8B8) !important;
	color: #9F6B00 !important;
	border: 1px solid #FFD580 !important;
	box-shadow: 0 4px 14px rgba(212, 160, 23, 0.2) !important;
}

/* Course Card Hover Image Scale */
.course-card .img-zoom-wrap img {
	transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.course-card:hover .img-zoom-wrap img {
	transform: scale(1.08);
}

/* ---------- 3. Hero Floating Badge Cards ---------- */
.hero-floating-badge {
	position: absolute;
	z-index: 5;
	background: rgba(255, 255, 255, 0.96) !important;
	backdrop-filter: blur(14px);
	border: 1px solid var(--line) !important;
	box-shadow: 0 14px 30px rgba(13, 38, 30, 0.16) !important;
	border-radius: 16px !important;
	transition: transform 0.3s ease;
}

.hero-floating-badge:hover {
	transform: scale(1.05) translateY(-4px);
}

.badge-pos-1 {
	top: 2%;
	left: -30px;
	animation: floatBadge1 5s ease-in-out infinite alternate;
}

.badge-pos-2 {
	top: 15%;
	right: -35px;
	animation: floatBadge2 6s ease-in-out infinite alternate-reverse;
}

.badge-pos-3 {
	bottom: 5%;
	right: -25px;
	animation: floatBadge3 5.5s ease-in-out infinite alternate;
}

.badge-pos-4 {
	bottom: 8%;
	left: -20px;
	animation: floatBadge4 6.5s ease-in-out infinite alternate-reverse;
}

@keyframes floatBadge1 {
	0% {
		transform: translateY(0px);
	}

	100% {
		transform: translateY(-12px);
	}
}

@keyframes floatBadge2 {
	0% {
		transform: translateY(0px);
	}

	100% {
		transform: translateY(10px);
	}
}

@keyframes floatBadge3 {
	0% {
		transform: translateY(0px);
	}

	100% {
		transform: translateY(-9px);
	}
}

@keyframes floatBadge4 {
	0% {
		transform: translateY(0px);
	}

	100% {
		transform: translateY(11px);
	}
}

/* ---------- 6. Neumorphism "Why Choose Us" Section ---------- */
.redesign-choose-area {
	padding: 70px 0;
	background: #EBF4F1 !important;
	position: relative;
}

.redesign-choose-card {
	background: #EBF4F1;
	border-radius: 24px;
	padding: 32px 26px;
	height: 100%;
	position: relative;
	border: 1px solid rgba(255, 255, 255, 0.7);
	box-shadow: 10px 10px 24px #d4e2de, -10px -10px 24px #ffffff;
	transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.redesign-choose-card:hover {
	transform: translateY(-8px);
	box-shadow: 14px 14px 32px #c9dad4, -14px -14px 32px #ffffff;
	border-color: rgba(34, 115, 91, 0.3);
}

.redesign-choose-card .card-icon {
	width: 68px;
	height: 68px;
	border-radius: 20px;
	background: #EBF4F1;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 22px;
	font-size: 26px;
	color: #22735B;
	box-shadow: inset 4px 4px 10px #c9dad4, inset -4px -4px 10px #ffffff;
	transition: all 0.35s ease;
}

.redesign-choose-card:hover .card-icon {
	background: linear-gradient(135deg, #22735B, #2E9677);
	color: #ffffff;
	box-shadow: 6px 6px 16px rgba(34, 115, 91, 0.3);
}

.redesign-choose-card .card-title {
	font-size: 20px;
	font-weight: 700;
	color: #0D261E;
	margin-bottom: 12px;
}

.redesign-choose-card .card-desc {
	font-size: 15px;
	color: #4A5E57;
	line-height: 1.6;
	margin-bottom: 0;
}

/* ---------- 7. Neumorphism Academic Excellence Section ---------- */
.fullwidth-quick-info {
	background: #EBF4F1 !important;
}

.quick-card-new {
	background: #EBF4F1 !important;
	border-radius: 24px !important;
	border: 1px solid rgba(255, 255, 255, 0.75) !important;
	box-shadow: 10px 10px 24px #d4e2de, -10px -10px 24px #ffffff !important;
	transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1) !important;
}

.quick-card-new:hover {
	transform: translateY(-8px) !important;
	box-shadow: 14px 14px 32px #c9dad4, -14px -14px 32px #ffffff !important;
	border-color: rgba(34, 115, 91, 0.35) !important;
}

.quick-card-new > div:first-child {
	background: #EBF4F1 !important;
	box-shadow: inset 4px 4px 10px #c9dad4, inset -4px -4px 10px #ffffff !important;
	border-radius: 18px !important;
	transition: all 0.35s ease;
}

.quick-card-new:hover > div:first-child {
	background: #E1EFEA !important;
	box-shadow: inset 5px 5px 12px #c2d8d1, inset -5px -5px 12px #ffffff !important;
}

/* ---------- 8. Neumorphism Academic Programs & Course Cards ---------- */
.premium-programs-area {
	background: #EBF4F1 !important;
}

.premium-program-card, .course-card {
	background: #EBF4F1 !important;
	border-radius: 24px !important;
	border: 1px solid rgba(255, 255, 255, 0.75) !important;
	box-shadow: 10px 10px 24px #d4e2de, -10px -10px 24px #ffffff !important;
	transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1) !important;
}

.premium-program-card:hover, .course-card:hover {
	transform: translateY(-8px) !important;
	box-shadow: 14px 14px 32px #c9dad4, -14px -14px 32px #ffffff !important;
	border-color: rgba(34, 115, 91, 0.35) !important;
}

/* ---------- 9. Neumorphism Admission Steps Cards ---------- */
.step-card {
	background: rgba(235, 244, 241, 0.92) !important;
	backdrop-filter: blur(10px);
	border-radius: 24px !important;
	border: 1px solid rgba(255, 255, 255, 0.8) !important;
	box-shadow: 10px 10px 24px rgba(200, 218, 212, 0.8), -10px -10px 24px #ffffff !important;
	padding: 32px 24px !important;
	transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1) !important;
}

.step-card:hover {
	transform: translateY(-8px) !important;
	box-shadow: 14px 14px 32px rgba(185, 206, 199, 0.9), -14px -14px 32px #ffffff !important;
	border-color: rgba(34, 115, 91, 0.4) !important;
}

.step-icon-wrapper {
	background: #EBF4F1 !important;
	box-shadow: inset 4px 4px 10px #c9dad4, inset -4px -4px 10px #ffffff !important;
	border-radius: 20px !important;
	width: 64px !important;
	height: 64px !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	font-size: 24px !important;
	color: #22735B !important;
	transition: all 0.35s ease !important;
}

.step-card:hover .step-icon-wrapper {
	background: linear-gradient(135deg, #22735B, #2E9677) !important;
	color: #ffffff !important;
	box-shadow: 6px 6px 16px rgba(34, 115, 91, 0.35) !important;
}

/* ---------- 10. Universal Neumorphism (Soft UI) Cards System ---------- */
.center-card,
.student-ticker-card,
.lu-card,
.news-card,
.blog-card,
.feature-card,
.redesign-card {
	background: #EBF4F1 !important;
	border-radius: 24px !important;
	border: 1px solid rgba(255, 255, 255, 0.75) !important;
	box-shadow: 10px 10px 24px #d4e2de, -10px -10px 24px #ffffff !important;
	transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1) !important;
}

.center-card:hover,
.student-ticker-card:hover,
.lu-card:hover,
.news-card:hover,
.blog-card:hover,
.feature-card:hover,
.redesign-card:hover {
	transform: translateY(-8px) !important;
	box-shadow: 14px 14px 32px #c9dad4, -14px -14px 32px #ffffff !important;
	border-color: rgba(34, 115, 91, 0.35) !important;
}

/* ==================================================
   SKEUOMORPHIC CONTACT PAGE DESIGN
================================================== */
.contact-area {
	background: #eaf3f0 !important;
	position: relative;
}

.skeuo-contact-card {
	background: linear-gradient(145deg, #ffffff 0%, #e6f0ed 100%);
	border-radius: 22px;
	padding: 28px 22px;
	height: 100%;
	display: flex;
	align-items: flex-start;
	gap: 18px;
	border: 1px solid rgba(255, 255, 255, 0.9);
	border-bottom: 4px solid #1f6b55;
	box-shadow: 8px 8px 20px rgba(18, 55, 43, 0.14), -6px -6px 16px #ffffff, inset 1px 1px 2px rgba(255, 255, 255, 0.95), inset -1px -1px 2px rgba(0, 0, 0, 0.05);
	transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.skeuo-contact-card:hover {
	transform: translateY(-6px);
	box-shadow: 12px 12px 28px rgba(18, 55, 43, 0.18), -8px -8px 20px #ffffff, inset 1px 1px 2px rgba(255, 255, 255, 1);
	border-bottom-color: #22735B;
}

.skeuo-icon-badge {
	width: 58px;
	height: 58px;
	min-width: 58px;
	border-radius: 18px;
	background: linear-gradient(145deg, #288569 0%, #175241 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	color: #ffffff;
	border: 2px solid #ffffff;
	box-shadow: 4px 4px 10px rgba(13, 38, 30, 0.3), inset 2px 2px 4px rgba(255, 255, 255, 0.45), inset -2px -2px 4px rgba(0, 0, 0, 0.35);
	transition: all 0.3s ease;
}

.skeuo-contact-card:hover .skeuo-icon-badge {
	background: linear-gradient(145deg, #2e9b7a 0%, #1d634f 100%);
	transform: scale(1.06) rotate(-3deg);
	box-shadow: 6px 6px 14px rgba(13, 38, 30, 0.35), inset 2px 2px 4px rgba(255, 255, 255, 0.6), inset -2px -2px 4px rgba(0, 0, 0, 0.3);
}

.skeuo-card-content h5 {
	font-size: 18px;
	font-weight: 800;
	color: #0D261E;
	margin-bottom: 6px;
	font-family: var(--font-heading, sans-serif);
}

.skeuo-card-content p, .skeuo-card-content a {
	font-size: 14px;
	color: #4A5E57;
	line-height: 1.55;
	margin: 0;
	text-decoration: none;
}

.skeuo-card-content a:hover {
	color: #22735B;
	font-weight: 600;
}

.skeuo-contact-wrapper {
	background: linear-gradient(145deg, #ffffff 0%, #f0f7f4 100%);
	border-radius: 28px;
	padding: 38px;
	border: 1px solid rgba(255, 255, 255, 0.95);
	box-shadow: 14px 14px 32px rgba(18, 55, 43, 0.12), -10px -10px 24px #ffffff, inset 1px 1px 2px rgba(255, 255, 255, 0.9);
	margin-top: 20px;
}

.skeuo-map-frame {
	border-radius: 20px;
	overflow: hidden;
	height: 100%;
	min-height: 420px;
	border: 3px solid #ffffff;
	box-shadow: inset 2px 2px 6px rgba(0,0,0,0.15), 6px 6px 16px rgba(18, 55, 43, 0.12);
}

.skeuo-map-frame iframe {
	width: 100%;
	height: 100%;
	min-height: 420px;
	border: 0;
}

.skeuo-form-title {
	font-size: 28px;
	font-weight: 800;
	color: #0D261E;
	margin-bottom: 8px;
	font-family: var(--font-heading, sans-serif);
}

.skeuo-form-subtitle {
	font-size: 15px;
	color: #556E65;
	margin-bottom: 24px;
}

.skeuo-input {
	background: #eaf3f0 !important;
	border: 1px solid rgba(34, 115, 91, 0.22) !important;
	border-radius: 14px !important;
	padding: 13px 18px !important;
	font-size: 15px !important;
	color: #0D261E !important;
	box-shadow: inset 3px 3px 6px rgba(18, 55, 43, 0.12), inset -3px -3px 6px #ffffff !important;
	transition: all 0.3s ease !important;
}

.skeuo-input:focus {
	background: #ffffff !important;
	border-color: #22735B !important;
	box-shadow: inset 1px 1px 3px rgba(0,0,0,0.1), 0 0 0 3px rgba(34, 115, 91, 0.25) !important;
	outline: none !important;
}

.skeuo-submit-btn {
	background: linear-gradient(180deg, #2E9677 0%, #22735B 50%, #175241 100%) !important;
	color: #ffffff !important;
	border: 1px solid #175241 !important;
	border-radius: 50px !important;
	padding: 14px 38px !important;
	font-weight: 800 !important;
	font-size: 15px !important;
	letter-spacing: 0.5px !important;
	text-transform: uppercase !important;
	box-shadow: 0 6px 14px rgba(23, 82, 65, 0.4), inset 0 2px 2px rgba(255, 255, 255, 0.5), inset 0 -2px 4px rgba(0, 0, 0, 0.3) !important;
	transition: all 0.2s ease !important;
	cursor: pointer;
}

.skeuo-submit-btn:hover {
	background: linear-gradient(180deg, #33a583 0%, #257e64 50%, #1a5b4a 100%) !important;
	box-shadow: 0 8px 18px rgba(23, 82, 65, 0.5), inset 0 2px 2px rgba(255, 255, 255, 0.6), inset 0 -2px 4px rgba(0, 0, 0, 0.3) !important;
	transform: translateY(-2px);
}

.skeuo-submit-btn:active {
	transform: translateY(2px);
	box-shadow: 0 2px 6px rgba(23, 82, 65, 0.4), inset 0 2px 4px rgba(0, 0, 0, 0.4) !important;
}

/* ==================================================
   UNIVERSAL MOBILE & TABLET RESPONSIVENESS (BREAKPOINTS)
================================================== */
@media (max-width: 991.98px) {
	.hero-carousel-slide {
		min-height: auto;
		height: auto;
		padding: 60px 15px 80px 15px;
	}

	.hero-slide-1 {
		background-image:
			linear-gradient(180deg, rgba(7, 25, 19, 0.94) 0%, rgba(13, 38, 30, 0.90) 100%),
			url("/web-assets/img/BANNER/banner_main.webp");
		background-position: center;
	}

	.hero-slide-2 {
		background-image:
			linear-gradient(180deg, rgba(7, 25, 19, 0.94) 0%, rgba(13, 38, 30, 0.90) 100%),
			url("/web-assets/img/BANNER/banner-2.webp");
		background-position: center;
	}

	.hero-slide-3 {
		background-image:
			linear-gradient(180deg, rgba(7, 25, 19, 0.94) 0%, rgba(13, 38, 30, 0.90) 100%),
			url("/web-assets/img/BANNER/banner-3.webp");
		background-position: center;
	}

	.hero-title {
		font-size: 32px !important;
	}

	.hero-desc {
		font-size: 15px !important;
	}

	.hero-arrow {
		width: 40px;
		height: 40px;
		font-size: 14px;
	}

	.hero-arrow-left {
		left: 10px;
	}

	.hero-arrow-right {
		right: 10px;
	}

	.skeuo-contact-wrapper {
		padding: 24px;
	}

	.skeuo-map-frame {
		min-height: 320px;
	}

	.skeuo-submit-btn {
		width: 100%;
	}
}

@media (max-width: 767.98px) {
	.hero-title {
		font-size: 26px !important;
	}

	.hero-actions {
		flex-direction: column;
		width: 100%;
	}

	.hero-actions a {
		width: 100%;
		text-align: center;
		justify-content: center;
	}

	.skeuo-contact-card {
		padding: 22px 18px;
	}

	.skeuo-form-title {
		font-size: 22px;
	}

	.redesign-choose-card,
	.quick-card-new,
	.premium-program-card,
	.step-card,
	.center-card {
		padding: 24px 18px !important;
	}
}

@media (max-width: 575.98px) {
	.hero-carousel-slide {
		padding: 50px 10px 70px 10px;
	}

	.hero-indicators {
		bottom: 15px;
	}

	.hero-indicators button {
		width: 24px;
		height: 4px;
	}

	.skeuo-contact-wrapper {
		padding: 18px 14px;
	}
}

/* ==========================================================================
   MOBILE HEADER, NAVBAR, HAMBURGER MENU & HERO BUTTON REDESIGN + ANIMATIONS
   ========================================================================== */

/* 1. Topbar Mobile Styling */
.topbar-badge {
	font-size: 12px;
	letter-spacing: 0.2px;
}
@media (max-width: 575.98px) {
	.redesign-topbar {
		padding: 4px 0;
		font-size: 11px;
	}
	.topbar-badge {
		font-size: 11px;
	}
}

/* 2. Unified Mobile Header & Action Buttons */
.mobile-header-login-btn {
	width: 36px;
	height: 36px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: var(--mint, #e8f5f1);
	color: var(--primary, #22735b) !important;
	font-size: 15px;
	border: 1px solid rgba(34, 115, 91, 0.2);
	transition: all 0.25s ease;
}
.mobile-header-login-btn:hover {
	background: var(--primary, #22735b);
	color: #fff !important;
	transform: scale(1.05);
}

/* 3. Animated Hamburger Toggler */
.custom-hamburger-btn {
	width: 42px;
	height: 42px;
	padding: 0 !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	border-radius: 12px !important;
	background: var(--mint, #e8f5f1) !important;
	border: 1px solid rgba(34, 115, 91, 0.25) !important;
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative !important;
	overflow: hidden;
}
.custom-hamburger-btn:focus {
	box-shadow: 0 0 0 3px rgba(34, 115, 91, 0.25) !important;
}

.hamburger-box {
	width: 20px;
	height: 14px;
	display: block !important;
	position: relative !important;
	margin: 0 auto !important;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
	width: 20px;
	height: 2.5px;
	background-color: var(--primary, #22735b);
	border-radius: 4px;
	position: absolute !important;
	left: 0 !important;
	right: 0 !important;
	margin: 0 auto !important;
	transition: transform 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0.3s ease, top 0.3s ease, bottom 0.3s ease, opacity 0.2s ease;
}

.hamburger-inner {
	top: 50%;
	transform: translateY(-50%);
}

.hamburger-inner::before {
	content: "";
	top: -6px;
	left: 0 !important;
}

.hamburger-inner::after {
	content: "";
	bottom: -6px;
	left: 0 !important;
}

/* Morph to X on expanded */
.custom-hamburger-btn[aria-expanded="true"] {
	background: var(--primary, #22735b) !important;
}

.custom-hamburger-btn[aria-expanded="true"] .hamburger-inner {
	transform: rotate(225deg);
	background-color: #fff;
	transition: transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0.12s, background-color 0.3s ease;
}

.custom-hamburger-btn[aria-expanded="true"] .hamburger-inner::before {
	top: 0;
	opacity: 0;
	transition: top 0.1s ease, opacity 0.1s ease 0.12s;
}

.custom-hamburger-btn[aria-expanded="true"] .hamburger-inner::after {
	bottom: 0;
	transform: rotate(-90deg);
	background-color: #fff;
	transition: bottom 0.1s ease, transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0.12s, background-color 0.3s ease;
}

/* 4. Mobile Menu Drawer Styling */
@media (max-width: 991.98px) {
	.main-navigation .navbar-collapse {
		background: rgba(255, 255, 255, 0.98);
		backdrop-filter: blur(20px);
		-webkit-backdrop-filter: blur(20px);
		border-radius: 18px;
		padding: 16px 20px 22px;
		margin-top: 10px;
		box-shadow: 0 20px 40px rgba(13, 38, 30, 0.15);
		border: 1px solid rgba(34, 115, 91, 0.15);
		animation: slideInNav 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
	}

	.navbar-nav .nav-item {
		margin-bottom: 4px;
	}

	.navbar-nav .nav-link {
		display: flex !important;
		align-items: center;
		padding: 11px 16px !important;
		border-radius: 12px !important;
		font-weight: 700 !important;
		font-size: 15px !important;
		color: var(--navy, #0f2c23) !important;
		background: transparent;
		transition: all 0.25s ease;
	}

	.navbar-nav .nav-link:hover,
	.navbar-nav .nav-link.active {
		background: var(--mint, #e8f5f1) !important;
		color: var(--primary, #22735b) !important;
		transform: translateX(4px);
	}

	.nav-icon {
		color: var(--primary, #22735b);
		width: 20px;
		text-align: center;
	}

	/* Dropdown submenus on mobile */
	.navbar-nav .dropdown-menu {
		border: none;
		border-left: 3px solid var(--primary, #22735b);
		border-radius: 0 12px 12px 0;
		background: rgba(240, 249, 246, 0.7);
		margin: 6px 0 10px 14px;
		padding: 6px 8px;
		box-shadow: none;
	}

	.navbar-nav .dropdown-item {
		padding: 9px 14px;
		font-size: 14px;
		border-radius: 8px;
		font-weight: 600;
	}

	.mobile-drawer-login-btn {
		background: rgba(34, 115, 91, 0.1);
		color: var(--primary, #22735b) !important;
		font-weight: 700;
		border: 1px solid rgba(34, 115, 91, 0.2);
		padding: 10px 16px;
	}
}

/* 5. Button Base & Mobile Formatting Fixes */
.btn-explore,
.btn-brochure,
.btn-discover,
.btn-premium,
.theme-btn {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 10px;
	padding: 13px 28px !important;
	min-height: 48px;
	border-radius: 999px !important;
	font-weight: 800 !important;
	font-size: 15px;
	line-height: 1.2;
	text-decoration: none !important;
	transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease, background 0.25s ease !important;
	position: relative;
	overflow: hidden;
	white-space: nowrap !important;
}

/* Dedicated Header Apply Now Button Formatting */
.apply-now-btn {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	white-space: nowrap !important;
	padding: 10px 22px !important;
	min-height: 42px !important;
	border-radius: 999px !important;
	font-weight: 800 !important;
	font-size: 14px !important;
	letter-spacing: 0.3px;
	color: #fff !important;
	background: var(--gradient-primary) !important;
	box-shadow: 0 4px 15px rgba(34, 115, 91, 0.25) !important;
	transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
	text-decoration: none !important;
	position: relative;
	overflow: hidden;
}

.apply-now-btn:hover {
	background: var(--gradient-dark) !important;
	color: #fff !important;
	transform: translateY(-2px) !important;
	box-shadow: 0 8px 25px rgba(34, 115, 91, 0.35) !important;
}

.apply-now-btn i {
	margin-left: 6px !important;
	font-size: 13px !important;
	transition: transform 0.25s ease !important;
}

.apply-now-btn:hover i {
	transform: translateX(4px) !important;
}

@media (max-width: 991.98px) {
	.apply-now-btn {
		width: 100% !important;
		padding: 12px 20px !important;
		min-height: 46px !important;
		font-size: 15px !important;
	}
}

/* Button Shimmer Animation */
.btn-explore::before,
.btn-premium::before,
.apply-now-btn::before,
.theme-btn::before {
	content: "";
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: linear-gradient(
		60deg,
		transparent 30%,
		rgba(255, 255, 255, 0.3) 50%,
		transparent 70%
	);
	transform: rotate(30deg) translateX(-100%);
	transition: transform 0.6s ease;
}

.btn-explore:hover::before,
.btn-premium:hover::before,
.apply-now-btn:hover::before,
.theme-btn:hover::before {
	transform: rotate(30deg) translateX(100%);
}

.btn-explore:hover i,
.apply-now-btn:hover i,
.btn-brochure:hover i,
.btn-discover:hover i {
	transform: translateX(4px);
	transition: transform 0.25s ease;
}

.btn-explore i,
.apply-now-btn i,
.btn-brochure i,
.btn-discover i {
	transition: transform 0.25s ease;
}

@media (max-width: 767.98px) {
	.hero-actions {
		width: 100%;
		max-width: 420px;
		margin: 0 auto;
	}

	.hero-actions .btn-explore,
	.hero-actions .btn-brochure {
		width: 100% !important;
		min-height: 50px !important;
		padding: 12px 22px !important;
		border-radius: 999px !important;
		justify-content: center !important;
		text-align: center;
		font-size: 15px !important;
		box-shadow: 0 8px 20px rgba(34, 115, 91, 0.25) !important;
	}
}

/* 6. Section Spacing Adjustments */
.redesign-quick-info,
.redesign-welcome-area,
.redesign-choose-area,
.redesign-faq-area,
.redesign-widgets-area,
.redesign-initiatives-section,
.redesign-cta-section {
	padding: 48px 0 !important;
}

@media (max-width: 991.98px) {
	.py-120,
	.py-80,
	.redesign-welcome-area,
	.redesign-choose-area,
	.redesign-faq-area,
	.redesign-widgets-area,
	.redesign-initiatives-section,
	.redesign-steps-area,
	.redesign-quick-info,
	.redesign-cta-section {
		padding-top: 36px !important;
		padding-bottom: 36px !important;
	}
}

/* 7. Animations */
@keyframes slideInNav {
	from {
		opacity: 0;
		transform: translateY(-12px) scale(0.98);
	}
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

.pulsing-dot {
	display: inline-block;
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background-color: #10b981;
	box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
	animation: emeraldPulse 1.8s infinite;
}

@keyframes emeraldPulse {
	0% {
		transform: scale(0.95);
		box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
	}
	70% {
		transform: scale(1);
		box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
	}
	100% {
		transform: scale(0.95);
		box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
	}
}