﻿* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: "Segoe UI", Arial, sans-serif;
	color: #0f172a;
	background: #f8fafc;
}

a {
	text-decoration: none;
}

img {
	max-width: 100%;
}

.container {
	position: relative;
	z-index: 2;
}
/* ========================= Reveal Animation ========================= */

.reveal {
	opacity: 0;
	transform: translateY(22px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

	.reveal.active {
		opacity: 1;
		transform: translateY(0);
	}

.delay-1 {
	transition-delay: 0.12s;
}

.delay-2 {
	transition-delay: 0.22s;
}
/* ========================= Premium Header ========================= */

.premium-main-header {
	position: sticky;
	top: 0;
	background: rgba(255, 255, 255, 0.95) !important;
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border-bottom: 1px solid rgba(226, 232, 240, 0.9);
	box-shadow: 0 10px 30px rgba(15, 23, 42, 0.07);
	padding: 12px 0;
	z-index: 999;
}

	.premium-main-header::after {
		content: "";
		position: absolute;
		left: 0;
		bottom: -1px;
		width: 100%;
		height: 3px;
		background: linear-gradient(90deg, #2563eb, #06b6d4, #10b981, #2563eb);
		background-size: 300% 100%;
		animation: headerLineMove 7s linear infinite;
	}

.premium-logo {
	display: flex;
	align-items: center;
	gap: 12px;
	color: #071633 !important;
	font-size: 24px;
	font-weight: 950;
	letter-spacing: -0.7px;
}

.premium-logo-icon {
	width: 44px;
	height: 44px;
	border-radius: 15px;
	display: grid;
	place-items: center;
	color: #ffffff;
	font-size: 22px;
	background: linear-gradient(135deg, #2563eb, #06b6d4);
	box-shadow: 0 14px 30px rgba(37, 99, 235, 0.26);
}

.premium-menu {
	gap: 6px;
}

.premium-menu-link {
	position: relative;
	color: #0f172a !important;
	font-weight: 850;
	padding: 10px 15px !important;
	border-radius: 999px;
	transition: 0.28s ease;
}

	.premium-menu-link:hover, .premium-menu-link.active {
		color: #2563eb !important;
		background: linear-gradient(135deg, #eff6ff, #ffffff);
		box-shadow: 0 10px 24px rgba(37, 99, 235, 0.10);
	}

	.premium-menu-link::before {
		content: "";
		position: absolute;
		left: 50%;
		bottom: 4px;
		width: 0;
		height: 2px;
		border-radius: 999px;
		background: linear-gradient(90deg, #2563eb, #06b6d4);
		transform: translateX(-50%);
		transition: 0.28s ease;
	}

	.premium-menu-link:hover::before, .premium-menu-link.active::before {
		width: 42%;
	}

.premium-start-btn {
	position: relative;
	overflow: hidden;
	border: none;
	border-radius: 14px;
	padding: 12px 24px;
	color: #ffffff !important;
	font-weight: 950;
	background: linear-gradient(135deg, #2563eb, #1d4ed8);
	box-shadow: 0 16px 34px rgba(37, 99, 235, 0.28);
	transition: 0.3s ease;
}

	.premium-start-btn:hover {
		transform: translateY(-3px);
		box-shadow: 0 22px 46px rgba(37, 99, 235, 0.40);
	}

	.premium-start-btn::after, .home-primary-btn::after, .home-secondary-btn::after, .quick-tenure button::after, .gst-type-buttons button::after, .schedule-btn::after {
		content: "";
		position: absolute;
		top: 0;
		left: -85%;
		width: 70%;
		height: 100%;
		background: linear-gradient(90deg, transparent, rgba(255,255,255,0.38), transparent);
		transform: skewX(-18deg);
		transition: 0.7s ease;
	}

	.premium-start-btn:hover::after, .home-primary-btn:hover::after, .home-secondary-btn:hover::after, .quick-tenure button:hover::after, .gst-type-buttons button:hover::after, .schedule-btn:hover::after {
		left: 120%;
	}

.premium-dropdown {
	position: relative;
}

.premium-calculator-menu {
	width: 390px;
	padding: 14px;
	border: 1px solid rgba(226, 232, 240, 0.95);
	border-radius: 22px;
	background: rgba(255, 255, 255, 0.98);
	box-shadow: 0 30px 80px rgba(15, 23, 42, 0.16);
	backdrop-filter: blur(18px);
	margin-top: 14px !important;
	animation: dropdownFade 0.25s ease;
}

.calculator-menu-grid {
	display: grid;
	gap: 8px;
}

.calculator-menu-item {
	display: flex;
	align-items: center;
	gap: 13px;
	padding: 13px;
	border-radius: 16px;
	color: #0f172a;
	transition: 0.25s ease;
}

	.calculator-menu-item:hover {
		background: linear-gradient(135deg, #eff6ff, #ffffff);
		transform: translateX(5px);
		box-shadow: 0 10px 26px rgba(15, 23, 42, 0.07);
	}

	.calculator-menu-item strong {
		display: block;
		color: #071633;
		font-weight: 950;
		font-size: 15px;
	}

	.calculator-menu-item small {
		display: block;
		color: #64748b;
		font-size: 12px;
		font-weight: 700;
		margin-top: 2px;
	}

.calc-icon {
	width: 44px;
	height: 44px;
	border-radius: 15px;
	display: grid;
	place-items: center;
	color: #ffffff;
	font-size: 21px;
	flex: 0 0 auto;
	transition: 0.25s ease;
}

.calculator-menu-item:hover .calc-icon {
	transform: rotate(-5deg) scale(1.08);
}

.calc-icon.blue, .tool-icon.blue, .more-tool-icon.blue {
	background: linear-gradient(135deg, #2563eb, #60a5fa);
}

.calc-icon.green, .tool-icon.green, .more-tool-icon.green {
	background: linear-gradient(135deg, #10b981, #34d399);
}

.calc-icon.orange, .tool-icon.orange, .more-tool-icon.orange {
	background: linear-gradient(135deg, #f97316, #fb923c);
}

.calc-icon.purple, .tool-icon.purple, .more-tool-icon.purple {
	background: linear-gradient(135deg, #7c3aed, #a78bfa);
}

.calc-icon.pink, .tool-icon.pink, .more-tool-icon.pink {
	background: linear-gradient(135deg, #db2777, #f472b6);
}

.calc-icon.teal, .tool-icon.teal, .more-tool-icon.teal {
	background: linear-gradient(135deg, #0891b2, #22d3ee);
}

.premium-mobile-toggle {
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	box-shadow: none !important;
}
/* ========================= Home Hero ========================= */

.home-hero-section {
	position: relative;
	overflow: hidden;
	padding: 80px 0 70px;
	background: radial-gradient(circle at 12% 20%, rgba(37, 99, 235, 0.12), transparent 30%), radial-gradient(circle at 85% 25%, rgba(6, 182, 212, 0.14), transparent 32%), linear-gradient(135deg, #ffffff 0%, #f8fbff 48%, #eaf8ff 100%);
}

.home-shape {
	position: absolute;
	border-radius: 50%;
	filter: blur(8px);
	opacity: 0.65;
	pointer-events: none;
}

.shape-left {
	width: 260px;
	height: 260px;
	left: -90px;
	top: 120px;
	background: rgba(37, 99, 235, 0.14);
	animation: softShapeOne 9s ease-in-out infinite;
}

.shape-right {
	width: 320px;
	height: 320px;
	right: -120px;
	top: 70px;
	background: rgba(6, 182, 212, 0.16);
	animation: softShapeTwo 10s ease-in-out infinite;
}

.home-trust-badge, .hero-badge {
	display: inline-flex;
	align-items: center;
	padding: 9px 15px;
	border-radius: 999px;
	background: #ecfdf5;
	color: #047857;
	border: 1px solid #a7f3d0;
	font-weight: 900;
	font-size: 13px;
}

.home-main-title {
	color: #020617;
	font-size: clamp(42px, 5vw, 68px);
	font-weight: 950;
	line-height: 1.05;
	margin: 20px 0 18px;
	letter-spacing: -2px;
	background: linear-gradient(120deg, #020617, #1d4ed8, #0891b2, #020617);
	background-size: 250% 250%;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	animation: titleGradient 6s ease-in-out infinite;
}

.home-main-subtitle {
	color: #475569;
	font-size: 18px;
	line-height: 1.8;
	max-width: 600px;
	margin-bottom: 26px;
}

.home-feature-row {
	display: grid;
	gap: 14px;
	margin-bottom: 30px;
}

	.home-feature-row > div {
		display: flex;
		align-items: center;
		gap: 13px;
		padding: 14px;
		background: rgba(255, 255, 255, 0.78);
		border: 1px solid #e2e8f0;
		border-radius: 18px;
		box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
		transition: 0.3s ease;
	}

		.home-feature-row > div:hover {
			transform: translateY(-5px);
			box-shadow: 0 18px 40px rgba(15, 23, 42, 0.10);
		}

	.home-feature-row span {
		width: 42px;
		height: 42px;
		border-radius: 14px;
		display: grid;
		place-items: center;
		color: #ffffff;
		background: linear-gradient(135deg, #2563eb, #06b6d4);
		flex: 0 0 auto;
	}

	.home-feature-row strong {
		display: block;
		color: #0f172a;
		font-weight: 950;
	}

	.home-feature-row small {
		color: #64748b;
		font-weight: 700;
	}

.home-action-row {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

.home-primary-btn, .home-secondary-btn {
	position: relative;
	overflow: hidden;
	border-radius: 14px;
	padding: 13px 22px;
	font-weight: 950;
	transition: 0.3s ease;
}

.home-primary-btn {
	color: #ffffff !important;
	border: none;
	background: linear-gradient(135deg, #2563eb, #1d4ed8);
	box-shadow: 0 16px 36px rgba(37, 99, 235, 0.26);
}

.home-secondary-btn {
	color: #2563eb !important;
	background: #ffffff;
	border: 1px solid #bfdbfe;
}

	.home-primary-btn:hover, .home-secondary-btn:hover {
		transform: translateY(-4px);
	}
/* ========================= Home Right Dashboard ========================= */

.home-visual-area {
	position: relative;
	min-height: 520px;
	perspective: 1000px;
}

.hero-dashboard-card {
	position: absolute;
	left: 50%;
	top: 60px;
	transform: translateX(-50%);
	width: 430px;
	max-width: 100%;
	padding: 34px;
	border-radius: 28px;
	background: rgba(255, 255, 255, 0.96);
	border: 1px solid rgba(226, 232, 240, 0.95);
	box-shadow: 0 35px 90px rgba(37, 99, 235, 0.18);
	backdrop-filter: blur(18px);
	z-index: 4;
}

	.hero-dashboard-card.animated-dashboard {
		animation: dashboardFloat 4.5s ease-in-out infinite;
	}

	.hero-dashboard-card h6 {
		color: #64748b;
		font-weight: 900;
		margin-bottom: 4px;
	}

	.hero-dashboard-card h2 {
		color: #0f172a;
		font-weight: 950;
		font-size: 38px;
		margin-bottom: 22px;
	}

.dashboard-body {
	display: flex;
	align-items: center;
	gap: 24px;
}

.dashboard-donut {
	width: 150px;
	height: 150px;
	border-radius: 50%;
	background: conic-gradient(#2563eb 0 58%, #10b981 58% 100%);
	display: grid;
	place-items: center;
	flex: 0 0 auto;
}

.animated-donut {
	animation: donutPulse 3.5s ease-in-out infinite;
}

.donut-inner {
	width: 104px;
	height: 104px;
	border-radius: 50%;
	background: #ffffff;
	display: grid;
	place-items: center;
	text-align: center;
	padding: 10px;
}

	.donut-inner small {
		color: #64748b;
		font-size: 11px;
		font-weight: 800;
	}

	.donut-inner strong {
		color: #0f172a;
		font-size: 14px;
		font-weight: 950;
	}

.dashboard-info {
	flex: 1;
}

	.dashboard-info > div {
		margin-bottom: 14px;
	}

	.dashboard-info small {
		color: #64748b;
		display: block;
		font-weight: 750;
	}

	.dashboard-info strong {
		color: #0f172a;
		font-weight: 950;
	}

.dot {
	width: 10px;
	height: 10px;
	display: inline-block;
	border-radius: 50%;
	margin-right: 7px;
}

	.dot.blue, .legend-dot.principal {
		background: #2563eb;
	}

	.dot.green, .legend-dot.interest {
		background: #10b981;
	}

.success-dot {
	background: #16a34a;
}

.tenure-box {
	background: #eff6ff;
	color: #1d4ed8;
	font-weight: 900;
	padding: 9px 12px;
	border-radius: 12px;
}

.floating-card {
	position: absolute;
	width: 150px;
	padding: 18px;
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.96);
	border: 1px solid #e2e8f0;
	box-shadow: 0 22px 55px rgba(15, 23, 42, 0.12);
	z-index: 5;
	animation: cardFloat 4.8s ease-in-out infinite;
}

	.floating-card span {
		width: 38px;
		height: 38px;
		border-radius: 13px;
		display: grid;
		place-items: center;
		color: #ffffff;
		background: linear-gradient(135deg, #2563eb, #06b6d4);
		margin-bottom: 10px;
	}

	.floating-card small {
		display: block;
		color: #64748b;
		font-weight: 800;
		font-size: 12px;
	}

	.floating-card strong {
		display: block;
		color: #0f172a;
		font-weight: 950;
		font-size: 16px;
	}

.card-fd {
	left: 18px;
	top: 28px;
	animation-delay: 0s;
}

.card-sip {
	right: 4px;
	top: 62px;
	animation-delay: 0.3s;
}

.card-rd {
	left: 25px;
	bottom: 80px;
	animation-delay: 0.6s;
}

.card-gst {
	right: 12px;
	bottom: 52px;
	animation-delay: 0.9s;
}

.running-line {
	width: 100%;
	height: 42px;
	margin-top: 8px;
	overflow: visible;
}

	.running-line polyline {
		fill: none;
		stroke-width: 6;
		stroke-linecap: round;
		stroke-linejoin: round;
		stroke-dasharray: 180;
		stroke-dashoffset: 180;
		animation: graphLineRun 2.8s ease-in-out infinite;
	}

.green-line polyline {
	stroke: #10b981;
}

.purple-line polyline {
	stroke: #7c3aed;
}

.orange-line polyline {
	stroke: #f97316;
}

.pink-line polyline {
	stroke: #ec4899;
}

.platform-shadow {
	position: absolute;
	left: 50%;
	bottom: 18px;
	transform: translateX(-50%);
	width: 440px;
	height: 50px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(37, 99, 235, 0.35), transparent 70%);
	filter: blur(10px);
}
/* ========================= Finance Ticker ========================= */

.home-finance-ticker {
	overflow: hidden;
	background: linear-gradient(90deg, #0f172a, #1e3a8a, #0f172a);
	padding: 14px 0;
}

.ticker-track {
	display: flex;
	gap: 18px;
	width: max-content;
	animation: tickerMove 34s linear infinite;
}

	.ticker-track span {
		display: inline-flex;
		align-items: center;
		gap: 8px;
		color: #ffffff;
		background: rgba(255, 255, 255, 0.12);
		border: 1px solid rgba(255, 255, 255, 0.16);
		padding: 9px 18px;
		border-radius: 999px;
		font-size: 14px;
		font-weight: 900;
		white-space: nowrap;
	}

	.ticker-track i {
		color: #67e8f9;
	}
/* ========================= Home Tools ========================= */

.home-tools-section {
	position: relative;
	overflow: hidden;
	padding: 70px 0;
	background: #ffffff;
}

	.home-tools-section::before {
		content: "";
		position: absolute;
		width: 420px;
		height: 420px;
		left: -120px;
		top: 40px;
		background: radial-gradient(circle, rgba(37,99,235,0.13), transparent 65%);
	}

	.home-tools-section::after {
		content: "";
		position: absolute;
		width: 420px;
		height: 420px;
		right: -140px;
		bottom: 20px;
		background: radial-gradient(circle, rgba(6,182,212,0.14), transparent 65%);
	}

.home-section-title, .section-title {
	text-align: center;
	max-width: 720px;
	margin: 0 auto 42px;
}

	.home-section-title span, .section-title span {
		color: #2563eb;
		font-weight: 950;
		text-transform: uppercase;
		font-size: 13px;
		letter-spacing: 1px;
	}

	.home-section-title h2, .section-title h2 {
		color: #071633;
		font-size: 36px;
		font-weight: 950;
		margin: 8px 0 10px;
	}

	.home-section-title p, .section-title p {
		color: #64748b;
		font-size: 16px;
	}

.home-tool-box {
	display: block;
	height: 100%;
	min-height: 245px;
	text-align: center;
	padding: 26px 18px;
	border-radius: 22px;
	background: #ffffff;
	border: 1px solid #e2e8f0;
	box-shadow: 0 16px 38px rgba(15, 23, 42, 0.07);
	transition: 0.3s ease;
}

	.home-tool-box:hover {
		transform: translateY(-12px) scale(1.02);
		border-color: rgba(37, 99, 235, 0.30);
		box-shadow: 0 28px 70px rgba(15, 23, 42, 0.13);
	}

.tool-icon, .more-tool-icon {
	width: 72px;
	height: 72px;
	border-radius: 24px;
	display: grid;
	place-items: center;
	margin: 0 auto 18px;
	color: #ffffff;
	font-size: 32px;
}

.home-tool-box h5 {
	color: #071633;
	font-weight: 950;
	margin-bottom: 10px;
}

.home-tool-box p {
	color: #475569;
	font-size: 14px;
	line-height: 1.55;
	min-height: 64px;
	margin-bottom: 14px;
}

.home-tool-box span {
	color: #2563eb;
	font-weight: 900;
	font-size: 14px;
}

.home-stats-bar {
	margin-top: 44px;
	padding: 24px;
	border-radius: 26px;
	background: #ffffff;
	border: 1px solid #e2e8f0;
	box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 12px;
}

	.home-stats-bar div {
		text-align: center;
		padding: 12px;
		border-radius: 16px;
		transition: 0.3s ease;
	}

		.home-stats-bar div:hover {
			background: #f8fafc;
			transform: translateY(-5px);
		}

	.home-stats-bar i {
		color: #2563eb;
		font-size: 24px;
	}

	.home-stats-bar strong {
		display: block;
		color: #071633;
		font-size: 26px;
		font-weight: 950;
	}

	.home-stats-bar span {
		display: block;
		color: #64748b;
		font-weight: 800;
		font-size: 13px;
	}
/* ========================= Calculator Pages ========================= */

.emi-live-section {
	position: relative;
	overflow: hidden;
	padding: 55px 0 70px;
	background: radial-gradient(circle at 10% 10%, rgba(37,99,235,0.10), transparent 28%), radial-gradient(circle at 90% 20%, rgba(6,182,212,0.10), transparent 26%), linear-gradient(135deg, #ffffff, #f8fafc);
}

.emi-panel {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 24px;
	padding: 28px;
	box-shadow: 0 18px 45px rgba(15,23,42,0.08);
	transition: 0.3s ease;
}

	.emi-panel:hover {
		transform: translateY(-6px);
		box-shadow: 0 28px 70px rgba(15,23,42,0.12);
	}

	.emi-panel h3 {
		color: #0f172a;
		font-size: 18px;
		font-weight: 900;
		margin-bottom: 24px;
	}

.slider-block {
	margin-bottom: 28px;
}

.slider-head {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	margin-bottom: 9px;
}

	.slider-head label {
		color: #64748b;
		font-size: 14px;
		font-weight: 800;
	}

.slider-edit-box {
	display: flex;
	align-items: center;
	min-width: 130px;
	height: 36px;
	background: #1e40af;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 8px 20px rgba(37, 99, 235, 0.22);
}

	.slider-edit-box span {
		color: #ffffff;
		font-weight: 900;
		padding: 0 9px;
		font-size: 14px;
	}

	.slider-edit-box input {
		width: 100%;
		height: 100%;
		border: none;
		outline: none;
		background: transparent;
		color: #ffffff;
		font-weight: 900;
		text-align: center;
		font-size: 14px;
		padding: 0 6px;
	}

		.slider-edit-box input::-webkit-outer-spin-button, .slider-edit-box input::-webkit-inner-spin-button {
			-webkit-appearance: none;
			margin: 0;
		}

		.slider-edit-box input[type=number] {
			-moz-appearance: textfield;
		}

.custom-range {
	width: 100%;
	height: 7px;
	border-radius: 999px;
	outline: none;
	cursor: pointer;
	border: none;
	appearance: none;
	-webkit-appearance: none;
}

	.custom-range::-webkit-slider-thumb {
		-webkit-appearance: none;
		width: 19px;
		height: 19px;
		border-radius: 50%;
		background: #ffffff;
		border: 4px solid #2563eb;
		box-shadow: 0 2px 8px rgba(37,99,235,0.35);
		cursor: pointer;
	}

	.custom-range::-moz-range-thumb {
		width: 19px;
		height: 19px;
		border-radius: 50%;
		background: #ffffff;
		border: 4px solid #2563eb;
		box-shadow: 0 2px 8px rgba(37,99,235,0.35);
		cursor: pointer;
	}

.slider-minmax {
	display: flex;
	justify-content: space-between;
	margin-top: 6px;
}

	.slider-minmax span {
		color: #94a3b8;
		font-size: 12px;
		font-weight: 700;
	}

.quick-tenure {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

	.quick-tenure button, .gst-type-buttons button, .schedule-btn {
		position: relative;
		overflow: hidden;
		border: 1.5px solid #e2e8f0;
		background: #f8fafc;
		color: #64748b;
		border-radius: 10px;
		padding: 8px 14px;
		font-size: 13px;
		font-weight: 900;
		transition: 0.25s ease;
	}

		.quick-tenure button:hover, .quick-tenure button.active, .gst-type-buttons button:hover, .gst-type-buttons button.active {
			color: #ffffff;
			background: linear-gradient(135deg, #2563eb, #06b6d4);
			border-color: #2563eb;
			box-shadow: 0 12px 26px rgba(37,99,235,0.22);
		}

.gst-type-buttons {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
}

.emi-highlight {
	position: relative;
	overflow: hidden;
	background: linear-gradient(135deg, #1e40af, #2563eb);
	border-radius: 18px;
	padding: 22px;
	text-align: center;
	margin-bottom: 22px;
	box-shadow: 0 18px 38px rgba(37,99,235,0.25);
}

	.emi-highlight::before {
		content: "";
		position: absolute;
		top: 0;
		left: -90%;
		width: 70%;
		height: 100%;
		background: linear-gradient(90deg, transparent, rgba(255,255,255,0.32), transparent);
		transform: skewX(-18deg);
		animation: shineMove 4.5s ease-in-out infinite;
	}

	.emi-highlight > * {
		position: relative;
		z-index: 2;
	}

	.emi-highlight span {
		color: rgba(255,255,255,0.78);
		font-size: 13px;
		font-weight: 700;
	}

	.emi-highlight h2 {
		color: #ffffff;
		font-size: 38px;
		font-weight: 950;
		margin: 6px 0;
	}

	.emi-highlight p {
		color: rgba(255,255,255,0.70);
		margin-bottom: 0;
		font-size: 13px;
	}

.result-grid-three {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 14px;
	margin-bottom: 18px;
}

.result-mini-card {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 18px;
	padding: 18px 10px;
	min-height: 76px;
	text-align: center;
	transition: 0.3s ease;
}

	.result-mini-card:hover {
		transform: translateY(-5px);
		border-color: rgba(37, 99, 235, 0.30);
		box-shadow: 0 16px 36px rgba(15, 23, 42, 0.09);
	}

	.result-mini-card span {
		display: block;
		color: #64748b;
		font-size: 12px;
		font-weight: 850;
		margin-bottom: 6px;
	}

	.result-mini-card strong {
		color: #020617;
		font-size: 20px;
		font-weight: 950;
	}

.total-payable-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	border-top: 1px dashed #e2e8f0;
	margin-top: 18px;
	padding-top: 18px;
}

	.total-payable-row span {
		color: #64748b;
		font-weight: 750;
	}

	.total-payable-row strong {
		color: #0f172a;
		font-size: 20px;
		font-weight: 950;
	}
/* ========================= Charts ========================= */

.chart-panel, .gst-chart-box, .amortization-panel, .schedule-wrapper {
	background: linear-gradient(180deg, #ffffff, #f8fafc);
	border: 1px solid #e2e8f0;
	border-radius: 22px;
	padding: 20px;
	box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
	transition: 0.3s ease;
}

	.chart-panel:hover, .gst-chart-box:hover, .amortization-panel:hover {
		transform: translateY(-5px);
		box-shadow: 0 22px 55px rgba(15, 23, 42, 0.10);
	}

	.chart-panel h6, .gst-chart-box h6 {
		color: #0f172a;
		font-weight: 950;
		text-align: center;
		margin-bottom: 18px;
	}
/* RD Chart */

.rd-bar-chart {
	height: 230px;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	gap: 50px;
	padding-top: 10px;
}

.rd-bar-item {
	width: 110px;
	text-align: center;
}

.rd-bar-track {
	height: 150px;
	width: 62px;
	margin: 0 auto 12px;
	border-radius: 999px 999px 16px 16px;
	background: #e2e8f0;
	display: flex;
	align-items: flex-end;
	overflow: hidden;
}

.rd-bar {
	width: 100%;
	min-height: 8%;
	border-radius: 999px 999px 16px 16px;
	transition: height 0.5s ease;
}

.deposit-bar {
	background: linear-gradient(180deg, #2563eb, #60a5fa);
}

.interest-bar {
	background: linear-gradient(180deg, #f97316, #fb923c);
}

.rd-bar-item span {
	display: block;
	color: #64748b;
	font-size: 13px;
	font-weight: 850;
	margin-bottom: 4px;
}

.rd-bar-item strong {
	display: block;
	color: #020617;
	font-size: 14px;
	font-weight: 950;
}
/* SIP Chart */

.sip-line-chart {
	width: 100%;
	height: 230px;
}

.chart-axis {
	stroke: #cbd5e1;
	stroke-width: 2;
}

.chart-label {
	fill: #64748b;
	font-size: 13px;
	font-weight: 800;
}

.sip-growth-line {
	fill: none;
	stroke: #2563eb;
	stroke-width: 5;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-dasharray: 900;
	stroke-dashoffset: 900;
	animation: sipLineDraw 1.2s ease forwards;
	filter: drop-shadow(0 8px 14px rgba(37, 99, 235, 0.25));
}

.sip-growth-point {
	fill: #ffffff;
	stroke: #2563eb;
	stroke-width: 4;
}
/* GST Chart */

.gst-chart-track {
	width: 100%;
	height: 58px;
	display: flex;
	overflow: hidden;
	border-radius: 999px;
	background: #e2e8f0;
	box-shadow: inset 0 2px 8px rgba(15, 23, 42, 0.08);
}

.gst-chart-net, .gst-chart-tax {
	height: 100%;
	min-width: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: width 0.45s ease;
}

.gst-chart-net {
	background: linear-gradient(135deg, #2563eb, #60a5fa);
}

.gst-chart-tax {
	background: linear-gradient(135deg, #f97316, #fb923c);
}

	.gst-chart-net span, .gst-chart-tax span {
		color: #ffffff;
		font-size: 13px;
		font-weight: 950;
	}

.gst-chart-values {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 14px;
	margin-top: 18px;
}

	.gst-chart-values div {
		background: #ffffff;
		border: 1px solid #e2e8f0;
		border-radius: 16px;
		padding: 14px;
		color: #475569;
		font-size: 13px;
		font-weight: 850;
	}

	.gst-chart-values strong {
		display: block;
		color: #020617;
		font-size: 17px;
		font-weight: 950;
		margin-top: 6px;
	}

.gst-dot {
	width: 10px;
	height: 10px;
	display: inline-block;
	border-radius: 50%;
	margin-right: 7px;
}

.net-dot {
	background: #2563eb;
}

.tax-dot {
	background: #f97316;
}
/* ========================= More Tools Partial ========================= */

.tools-section {
	position: relative;
	overflow: hidden;
	padding: 65px 0;
	background: linear-gradient(135deg, #ffffff, #f8fafc);
}

.more-tools-row .more-tool-card, .tool-card {
	display: block;
	min-height: 245px;
	text-align: center;
	padding: 26px 18px;
	border-radius: 22px;
	background: #ffffff;
	border: 1px solid #e2e8f0;
	box-shadow: 0 16px 38px rgba(15, 23, 42, 0.07);
	transition: 0.3s ease;
}

	.more-tool-card:hover, .tool-card:hover {
		transform: translateY(-10px) scale(1.02);
		border-color: rgba(37, 99, 235, 0.35);
		box-shadow: 0 26px 60px rgba(15, 23, 42, 0.13);
	}

.more-tools-row .tool-card .more-tool-icon i, .more-tools-row .tool-card .more-tool-link i {
	width: auto !important;
	height: auto !important;
	border-radius: 0 !important;
	background: transparent !important;
	color: inherit !important;
	display: inline-block !important;
	margin: 0 !important;
	font-size: inherit !important;
	box-shadow: none !important;
}

.more-tool-card h5 {
	color: #071633;
	font-weight: 950;
	margin-bottom: 10px;
}

.more-tool-card p {
	color: #475569;
	font-size: 14px;
	line-height: 1.55;
	min-height: 64px;
	margin-bottom: 14px;
}

.more-tool-link {
	color: #2563eb;
	font-weight: 900;
	font-size: 14px;
}

.active-tool {
	border-color: rgba(37, 99, 235, 0.45) !important;
	background: linear-gradient(135deg, #ffffff, #eff6ff) !important;
	box-shadow: 0 24px 58px rgba(37, 99, 235, 0.16) !important;
}

	.active-tool h5 {
		color: #1d4ed8;
	}
/* ========================= Content Pages Blog / About / Contact ========================= */

.content-page-section {
	position: relative;
	overflow: hidden;
	padding: 70px 0;
	min-height: calc(100vh - 180px);
	background: radial-gradient(circle at 10% 10%, rgba(37, 99, 235, 0.10), transparent 30%), radial-gradient(circle at 90% 20%, rgba(6, 182, 212, 0.10), transparent 30%), linear-gradient(135deg, #ffffff, #f8fafc);
}

.content-page-header {
	max-width: 760px;
	margin: 0 auto 42px;
	text-align: center;
}

	.content-page-header h1, .content-page-box h1 {
		color: #071633;
		font-weight: 950;
		margin-top: 18px;
		margin-bottom: 14px;
		letter-spacing: -1px;
	}

	.content-page-header p, .content-page-box p {
		color: #475569;
		font-size: 17px;
		line-height: 1.8;
	}

.content-page-box {
	max-width: 900px;
	margin: 0 auto;
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 28px;
	padding: 42px;
	box-shadow: 0 22px 60px rgba(15, 23, 42, 0.08);
	transition: 0.3s ease;
}

	.content-page-box:hover {
		transform: translateY(-6px);
		box-shadow: 0 30px 70px rgba(15, 23, 42, 0.12);
	}

.content-highlight {
	background: linear-gradient(135deg, #eff6ff, #ffffff);
	border: 1px solid #dbeafe;
	border-radius: 22px;
	padding: 24px;
	margin: 28px 0;
}

	.content-highlight h5 {
		color: #071633;
		font-weight: 950;
		margin-bottom: 16px;
	}

	.content-highlight li {
		color: #475569;
		margin-bottom: 10px;
		font-weight: 650;
	}

.contact-card {
	display: flex;
	align-items: center;
	gap: 16px;
	background: #eff6ff;
	border: 1px solid #dbeafe;
	border-radius: 20px;
	padding: 20px;
	margin-top: 22px;
}

	.contact-card i {
		width: 52px;
		height: 52px;
		border-radius: 18px;
		display: grid;
		place-items: center;
		color: #ffffff;
		background: linear-gradient(135deg, #2563eb, #06b6d4);
		font-size: 22px;
	}

	.contact-card span {
		display: block;
		color: #64748b;
		font-weight: 800;
		font-size: 13px;
	}

	.contact-card strong {
		color: #071633;
		font-weight: 950;
	}
/* Blog Articles */

.blog-article-list {
	max-width: 980px;
	margin: 0 auto;
	display: grid;
	gap: 26px;
}

.blog-article-card {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 26px;
	padding: 32px;
	box-shadow: 0 18px 45px rgba(15, 23, 42, 0.07);
	transition: 0.3s ease;
}

	.blog-article-card:hover {
		transform: translateY(-6px);
		border-color: rgba(37, 99, 235, 0.35);
		box-shadow: 0 28px 65px rgba(15, 23, 42, 0.12);
	}

	.blog-article-card h2 {
		color: #071633;
		font-size: 24px;
		font-weight: 950;
		margin-bottom: 16px;
		letter-spacing: -0.4px;
	}

	.blog-article-card p, .blog-article-card li {
		color: #475569;
		font-size: 16px;
		line-height: 1.8;
	}

.blog-formula-box {
	background: linear-gradient(135deg, #eff6ff, #ffffff);
	border: 1px solid #bfdbfe;
	color: #1e40af;
	border-radius: 18px;
	padding: 18px;
	margin: 20px 0;
	font-size: 18px;
	font-weight: 900;
	text-align: center;
}

.blog-comparison-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 14px;
	margin: 20px 0;
}

	.blog-comparison-grid div {
		background: #f8fafc;
		border: 1px solid #e2e8f0;
		border-radius: 18px;
		padding: 18px;
	}

	.blog-comparison-grid strong {
		display: block;
		color: #2563eb;
		font-size: 18px;
		font-weight: 950;
		margin-bottom: 6px;
	}

	.blog-comparison-grid span {
		color: #475569;
		font-weight: 650;
	}
/* ========================= Footer ========================= */

.footer-section {
	position: relative;
	background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
	border-top: 1px solid #e2e8f0;
	padding: 42px 0 18px;
}

	.footer-section::before {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		height: 3px;
		background: linear-gradient(90deg, #2563eb, #06b6d4, #f97316);
	}

.footer-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding-bottom: 28px;
	margin-bottom: 28px;
	border-bottom: 1px solid #e2e8f0;
}

	.footer-top h5 {
		color: #0f172a;
		font-weight: 900;
		margin-bottom: 6px;
		letter-spacing: -0.4px;
	}

	.footer-top p {
		color: #64748b;
		margin-bottom: 0;
		font-size: 15px;
	}

.footer-badge {
	display: inline-flex;
	align-items: center;
	white-space: nowrap;
	padding: 9px 15px;
	border-radius: 999px;
	color: #1e40af;
	background: #dbeafe;
	border: 1px solid rgba(37, 99, 235, 0.18);
	font-weight: 800;
	font-size: 13px;
}

.footer-links-row {
	padding-bottom: 28px;
}

.footer-section h6 {
	color: #0f172a;
	font-weight: 900;
	margin-bottom: 14px;
}

.footer-section a {
	display: block;
	width: fit-content;
	color: #64748b;
	margin-bottom: 10px;
	font-weight: 600;
	transition: 0.25s ease;
}

	.footer-section a:hover {
		color: #2563eb;
		transform: translateX(4px);
	}

.footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding-top: 18px;
	border-top: 1px solid #e2e8f0;
	color: #64748b;
	font-size: 14px;
}
/* ========================= Keyframes ========================= */

@keyframes headerLineMove {
	from {
		background-position: 0% 50%;
	}

	to {
		background-position: 300% 50%;
	}
}

@keyframes dropdownFade {
	from {
		opacity: 0;
		transform: translateY(12px) scale(0.98);
	}

	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

@keyframes softShapeOne {
	0%, 100% {
		transform: translate(0, 0) scale(1);
	}

	50% {
		transform: translate(28px, -20px) scale(1.05);
	}
}

@keyframes softShapeTwo {
	0%, 100% {
		transform: translate(0, 0) scale(1);
	}

	50% {
		transform: translate(-25px, 22px) scale(1.06);
	}
}

@keyframes titleGradient {
	0%, 100% {
		background-position: 0% 50%;
	}

	50% {
		background-position: 100% 50%;
	}
}

@keyframes dashboardFloat {
	0%, 100% {
		transform: translateX(-50%) translateY(0);
	}

	50% {
		transform: translateX(-50%) translateY(-10px);
	}
}

@keyframes donutPulse {
	0%, 100% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.04);
	}
}

@keyframes cardFloat {
	0%, 100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-10px);
	}
}

@keyframes graphLineRun {
	0% {
		stroke-dashoffset: 180;
		opacity: 0.3;
	}

	50% {
		stroke-dashoffset: 0;
		opacity: 1;
	}

	100% {
		stroke-dashoffset: -180;
		opacity: 0.3;
	}
}

@keyframes tickerMove {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-50%);
	}
}

@keyframes shineMove {
	0% {
		left: -90%;
	}

	40% {
		left: 120%;
	}

	100% {
		left: 120%;
	}
}

@keyframes sipLineDraw {
	to {
		stroke-dashoffset: 0;
	}
}
/* ========================= Responsive ========================= */

@media (min-width: 992px) {
	.premium-dropdown:hover .premium-calculator-menu {
		display: block;
	}
}

@media (max-width: 991px) {
	.premium-main-header {
		padding: 10px 0;
	}

	.premium-logo {
		font-size: 20px;
	}

	.premium-logo-icon {
		width: 40px;
		height: 40px;
	}

	.premium-menu {
		padding-top: 14px;
		gap: 4px;
	}

	.premium-menu-link {
		border-radius: 14px;
	}

	.premium-start-btn {
		width: 100%;
		margin-top: 8px;
	}

	.premium-calculator-menu {
		width: 100%;
		margin-top: 8px !important;
		box-shadow: none;
		border-radius: 16px;
	}
}

@media (max-width: 768px) {
	.home-hero-section {
		padding: 55px 0;
	}

	.home-main-title {
		font-size: 38px;
		letter-spacing: -1px;
	}

	.home-visual-area {
		min-height: auto;
		margin-top: 20px;
	}

	.hero-dashboard-card {
		position: relative;
		left: auto;
		top: auto;
		transform: none;
		width: 100%;
		animation: none !important;
	}

	.floating-card, .platform-shadow {
		display: none;
	}

	.dashboard-body {
		flex-direction: column;
		text-align: center;
	}

	.home-stats-bar {
		grid-template-columns: repeat(2, 1fr);
	}

	.slider-head {
		align-items: flex-start;
		flex-direction: column;
	}

	.slider-edit-box {
		width: 100%;
	}

	.result-grid-three {
		grid-template-columns: 1fr;
	}

	.rd-bar-chart {
		gap: 28px;
	}

	.rd-bar-item {
		width: 95px;
	}

	.gst-chart-values, .blog-comparison-grid {
		grid-template-columns: 1fr;
	}

	.content-page-section {
		padding: 50px 0;
	}

	.content-page-box {
		padding: 28px;
		border-radius: 22px;
	}

	.blog-article-card {
		padding: 24px;
		border-radius: 22px;
	}

	.footer-top, .footer-bottom {
		flex-direction: column;
		align-items: flex-start;
	}

	.ticker-track {
		animation: none;
	}
}

/* =========================
   IFSC Left Side Professional Panel
   ========================= */

.ifsc-side-panel {
	position: relative;
	padding: 34px;
	border-radius: 28px;
	background: rgba(255, 255, 255, 0.88);
	border: 1px solid #e2e8f0;
	box-shadow: 0 24px 70px rgba(15, 23, 42, 0.09);
	backdrop-filter: blur(16px);
	overflow: hidden;
}

	.ifsc-side-panel::before {
		content: "";
		position: absolute;
		width: 220px;
		height: 220px;
		left: -80px;
		top: -80px;
		background: radial-gradient(circle, rgba(37, 99, 235, 0.16), transparent 70%);
	}

	.ifsc-side-panel::after {
		content: "";
		position: absolute;
		width: 240px;
		height: 240px;
		right: -110px;
		bottom: -110px;
		background: radial-gradient(circle, rgba(6, 182, 212, 0.16), transparent 70%);
	}

	.ifsc-side-panel > * {
		position: relative;
		z-index: 2;
	}

.ifsc-side-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 9px 15px;
	border-radius: 999px;
	color: #047857;
	background: #ecfdf5;
	border: 1px solid #a7f3d0;
	font-size: 13px;
	font-weight: 950;
}

.ifsc-side-panel h1 {
	color: #071633;
	font-size: 42px;
	font-weight: 950;
	line-height: 1.12;
	margin: 22px 0 14px;
	letter-spacing: -1.3px;
}

.ifsc-side-panel p {
	color: #475569;
	font-size: 16px;
	line-height: 1.8;
	margin-bottom: 24px;
}

.ifsc-benefit-grid {
	display: grid;
	gap: 14px;
}

.ifsc-mini-benefit {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 16px;
	border-radius: 18px;
	background: #ffffff;
	border: 1px solid #e2e8f0;
	box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
	transition: 0.25s ease;
}

	.ifsc-mini-benefit:hover {
		transform: translateY(-4px);
		border-color: rgba(37, 99, 235, 0.30);
		box-shadow: 0 18px 42px rgba(15, 23, 42, 0.10);
	}

	.ifsc-mini-benefit i {
		width: 44px;
		height: 44px;
		border-radius: 15px;
		display: grid;
		place-items: center;
		color: #ffffff;
		background: linear-gradient(135deg, #2563eb, #06b6d4);
		font-size: 20px;
		flex: 0 0 auto;
	}

	.ifsc-mini-benefit strong {
		display: block;
		color: #0f172a;
		font-size: 15px;
		font-weight: 950;
		margin-bottom: 3px;
	}

	.ifsc-mini-benefit span {
		color: #64748b;
		font-size: 13px;
		font-weight: 700;
	}

.ifsc-side-note {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-top: 22px;
	padding: 17px;
	border-radius: 18px;
	background: linear-gradient(135deg, #eff6ff, #ffffff);
	border: 1px solid #dbeafe;
}

.ifsc-note-icon {
	width: 42px;
	height: 42px;
	border-radius: 14px;
	display: grid;
	place-items: center;
	color: #2563eb;
	background: #dbeafe;
	flex: 0 0 auto;
}

.ifsc-side-note strong {
	display: block;
	color: #0f172a;
	font-weight: 950;
	margin-bottom: 3px;
}

.ifsc-side-note span {
	color: #64748b;
	font-size: 13px;
	font-weight: 700;
}

@media (max-width: 768px) {
	.ifsc-side-panel {
		padding: 26px;
		border-radius: 22px;
	}

		.ifsc-side-panel h1 {
			font-size: 34px;
		}
}

/* ========================= IFSC Right Side Premium Card ========================= */ .ifsc-right-card {
	background: rgba(255, 255, 255, 0.96);
	border: 1px solid #e2e8f0;
	border-radius: 30px;
	padding: 32px;
	box-shadow: 0 28px 80px rgba(15, 23, 42, 0.11);
	backdrop-filter: blur(16px);
}

.ifsc-right-header {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 26px;
}

.ifsc-right-icon {
	width: 60px;
	height: 60px;
	border-radius: 20px;
	display: grid;
	place-items: center;
	color: #ffffff;
	font-size: 26px;
	background: linear-gradient(135deg, #2563eb, #06b6d4);
	box-shadow: 0 16px 34px rgba(37, 99, 235, 0.28);
}

.ifsc-right-header h3 {
	color: #071633;
	font-size: 26px;
	font-weight: 950;
	margin-bottom: 4px;
}

.ifsc-right-header p {
	color: #64748b;
	margin-bottom: 0;
	font-weight: 650;
}

.ifsc-form-group {
	margin-bottom: 18px;
}

	.ifsc-form-group label {
		display: block;
		color: #334155;
		font-weight: 900;
		margin-bottom: 8px;
	}

.ifsc-premium-input {
	height: 52px;
	display: flex;
	align-items: center;
	border: 1.5px solid #dbe3ef;
	border-radius: 16px;
	overflow: hidden;
	background: #ffffff;
	transition: 0.25s ease;
}

	.ifsc-premium-input:focus-within {
		border-color: #2563eb;
		box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.10);
	}

	.ifsc-premium-input i {
		width: 56px;
		height: 100%;
		display: grid;
		place-items: center;
		color: #2563eb;
		background: #eff6ff;
		font-size: 21px;
	}

	.ifsc-premium-input input {
		flex: 1;
		height: 100%;
		border: none;
		outline: none;
		padding: 0 14px;
		color: #0f172a;
		font-weight: 800;
		background: transparent;
	}

.ifsc-premium-btn {
	position: relative;
	overflow: hidden;
	width: 100%;
	height: 52px;
	border: none;
	border-radius: 16px;
	color: #ffffff;
	font-weight: 950;
	background: linear-gradient(135deg, #2563eb, #1d4ed8);
	box-shadow: 0 16px 34px rgba(37, 99, 235, 0.24);
	transition: 0.3s ease;
}

	.ifsc-premium-btn:hover {
		transform: translateY(-3px);
		box-shadow: 0 22px 46px rgba(37, 99, 235, 0.34);
	}

	.ifsc-premium-btn::after {
		content: "";
		position: absolute;
		top: 0;
		left: -85%;
		width: 70%;
		height: 100%;
		background: linear-gradient(90deg, transparent, rgba(255,255,255,0.38), transparent);
		transform: skewX(-18deg);
		transition: 0.7s ease;
	}

	.ifsc-premium-btn:hover::after {
		left: 120%;
	}
/* Result */

.ifsc-premium-result {
	background: linear-gradient(180deg, #ffffff, #f8fafc);
	border: 1px solid #dbe3ef;
	border-radius: 24px;
	padding: 24px;
	box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.ifsc-result-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	padding-bottom: 18px;
	margin-bottom: 18px;
	border-bottom: 1px dashed #dbe3ef;
}

	.ifsc-result-header span {
		display: block;
		color: #64748b;
		font-size: 13px;
		font-weight: 850;
		margin-bottom: 4px;
	}

	.ifsc-result-header h4 {
		color: #1d4ed8;
		font-size: 28px;
		font-weight: 950;
		margin-bottom: 0;
		letter-spacing: 0.5px;
	}

.ifsc-copy-btn {
	border: 1px solid #bfdbfe;
	background: #eff6ff;
	color: #2563eb;
	border-radius: 12px;
	padding: 9px 14px;
	font-weight: 900;
	transition: 0.25s ease;
}

	.ifsc-copy-btn:hover {
		color: #ffffff;
		background: #2563eb;
	}

.ifsc-success-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #047857;
	background: #ecfdf5;
	border: 1px solid #a7f3d0;
	border-radius: 999px;
	padding: 8px 14px;
	font-size: 13px;
	font-weight: 900;
	margin-bottom: 18px;
}

.ifsc-premium-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 14px;
}

.ifsc-premium-box {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 18px;
	padding: 16px;
	transition: 0.25s ease;
}

	.ifsc-premium-box:hover {
		transform: translateY(-4px);
		border-color: rgba(37, 99, 235, 0.28);
		box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
	}

	.ifsc-premium-box span, .ifsc-premium-address span {
		display: flex;
		align-items: center;
		gap: 7px;
		color: #64748b;
		font-size: 13px;
		font-weight: 850;
		margin-bottom: 7px;
	}

		.ifsc-premium-box span i, .ifsc-premium-address span i {
			color: #2563eb;
		}

	.ifsc-premium-box strong {
		color: #0f172a;
		font-size: 15px;
		font-weight: 950;
	}

.ifsc-premium-address {
	margin-top: 14px;
	background: linear-gradient(135deg, #eff6ff, #ffffff);
	border: 1px solid #dbeafe;
	border-radius: 18px;
	padding: 18px;
}

	.ifsc-premium-address p {
		color: #0f172a;
		font-weight: 800;
		line-height: 1.7;
		margin-bottom: 0;
	}

@media (max-width: 768px) {
	.ifsc-right-card {
		padding: 22px;
		border-radius: 22px;
	}

	.ifsc-right-header {
		align-items: flex-start;
		flex-direction: column;
	}

	.ifsc-premium-grid {
		grid-template-columns: 1fr;
	}

	.ifsc-result-header {
		flex-direction: column;
		align-items: flex-start;
	}

	.ifsc-copy-btn {
		width: 100%;
	}
}

/* =========================================================
   CLEAN ADDITIONS - Only latest required features
   No duplicate all-page floating / no emergency overrides
   ========================================================= */

/* =========================
   BT Header Support - Clean Horizontal Version
   Use only if _Layout uses bt-header classes
   ========================= */

.bt-header {
	position: sticky;
	top: 0;
	z-index: 9999;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
	border-bottom: 1px solid rgba(226, 232, 240, 0.95);
	box-shadow: 0 12px 32px rgba(15, 23, 42, 0.07);
}

.bt-navbar {
	padding: 12px 0;
}

	.bt-navbar > .container {
		display: flex;
		align-items: center;
		justify-content: space-between;
		flex-wrap: nowrap;
		gap: 16px;
		max-width: 1240px;
	}

.bt-brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	flex: 0 0 auto;
	padding: 8px 14px 8px 8px;
	border-radius: 24px;
	color: #071633;
	text-decoration: none;
	white-space: nowrap;
	background: linear-gradient(135deg, #ffffff, #eff6ff);
	border: 1px solid #bfdbfe;
	box-shadow: 0 14px 34px rgba(37, 99, 235, 0.10);
	transition: 0.25s ease;
}

	.bt-brand:hover {
		color: #071633;
		transform: translateY(-2px);
		box-shadow: 0 22px 46px rgba(37, 99, 235, 0.14);
	}

.bt-brand-icon {
	width: 46px;
	height: 46px;
	border-radius: 17px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
	font-size: 22px;
	background: linear-gradient(135deg, #2563eb, #06b6d4);
	box-shadow: 0 14px 30px rgba(37, 99, 235, 0.26);
}

.bt-brand span:last-child {
	font-size: 20px;
	font-weight: 950;
	letter-spacing: -0.7px;
	background: linear-gradient(135deg, #071633, #1d4ed8, #0891b2);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.bt-navbar .navbar-collapse {
	flex-grow: 1;
}

.bt-nav {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-end;
	flex-wrap: nowrap;
	gap: 6px;
	margin-left: auto;
	padding: 7px;
	border-radius: 30px;
	background: rgba(255, 255, 255, 0.74);
	border: 1px solid rgba(203, 213, 225, 0.85);
	box-shadow: 0 16px 38px rgba(15, 23, 42, 0.06);
}

	.bt-nav .nav-item {
		position: relative;
		display: flex;
		align-items: center;
		width: auto;
		margin: 0;
	}

.bt-nav-link,
.bt-mega-trigger {
	min-height: 48px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: auto;
	padding: 9px 12px;
	border: 1px solid transparent;
	border-radius: 18px;
	background: transparent;
	color: #0f172a;
	font-size: 14px;
	font-weight: 950;
	line-height: 1.1;
	white-space: nowrap;
	transition: 0.25s ease;
	cursor: pointer;
}

	.bt-nav-link > i:first-child,
	.bt-mega-trigger > i:first-child {
		width: 31px;
		height: 31px;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		border-radius: 12px;
		color: #2563eb;
		background: #eff6ff;
		border: 1px solid #bfdbfe;
	}

	.bt-nav-link:hover,
	.bt-nav-link.active,
	.bt-mega-wrap.active-parent > .bt-nav-link,
	.bt-mega-wrap.bt-mega-open > .bt-nav-link {
		color: #2563eb;
		background: #ffffff;
		border-color: #93c5fd;
		transform: translateY(-2px);
		box-shadow: 0 14px 30px rgba(37, 99, 235, 0.13);
	}

		.bt-nav-link:hover > i:first-child,
		.bt-nav-link.active > i:first-child,
		.bt-mega-wrap.active-parent > .bt-nav-link > i:first-child,
		.bt-mega-wrap.bt-mega-open > .bt-nav-link > i:first-child {
			color: #ffffff;
			background: linear-gradient(135deg, #2563eb, #06b6d4);
			border-color: transparent;
		}

.bt-chevron {
	font-size: 12px !important;
	transition: 0.25s ease;
}

.bt-mega-wrap:hover .bt-chevron,
.bt-mega-wrap.bt-mega-open .bt-chevron {
	transform: rotate(180deg);
}

.bt-loan-nav-btn {
	position: relative;
	overflow: hidden;
	min-height: 48px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: auto;
	padding: 9px 15px;
	border-radius: 18px;
	color: #ffffff;
	text-decoration: none;
	font-size: 14px;
	font-weight: 950;
	white-space: nowrap;
	background: linear-gradient(135deg, #16a34a, #059669, #06b6d4);
	border: 1px solid rgba(134, 239, 172, 0.55);
	box-shadow: 0 18px 38px rgba(22, 163, 74, 0.24);
	transition: 0.25s ease;
}

	.bt-loan-nav-btn:hover,
	.bt-loan-nav-btn.active {
		color: #ffffff;
		transform: translateY(-3px);
		box-shadow: 0 26px 50px rgba(22, 163, 74, 0.34);
	}

	.bt-loan-nav-btn i {
		width: 31px;
		height: 31px;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		border-radius: 12px;
		background: rgba(255, 255, 255, 0.20);
	}

.bt-start-btn {
	min-height: 48px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: auto;
	padding: 9px 16px;
	border-radius: 18px;
	color: #ffffff;
	text-decoration: none;
	font-size: 14px;
	font-weight: 950;
	white-space: nowrap;
	background: linear-gradient(135deg, #2563eb, #1d4ed8);
	box-shadow: 0 16px 34px rgba(37, 99, 235, 0.26);
	transition: 0.25s ease;
}

	.bt-start-btn:hover {
		color: #ffffff;
		transform: translateY(-3px);
	}

.bt-mega-menu {
	position: fixed;
	top: 84px;
	left: 50%;
	width: min(980px, calc(100vw - 34px));
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	z-index: 10000;
	transform: translateX(-50%) translateY(16px) scale(0.98);
	transition: 0.28s ease;
}

.bt-mega-wrap:hover .bt-mega-menu,
.bt-mega-wrap.bt-mega-open .bt-mega-menu {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateX(-50%) translateY(0) scale(1);
}

.bt-mega-panel {
	display: grid;
	grid-template-columns: 285px 1fr;
	gap: 18px;
	padding: 18px;
	border-radius: 30px;
	background: rgba(255, 255, 255, 0.97);
	border: 1px solid rgba(191, 219, 254, 0.95);
	box-shadow: 0 34px 85px rgba(15, 23, 42, 0.18);
	backdrop-filter: blur(22px);
	overflow: hidden;
}

.bt-mega-left {
	position: relative;
	overflow: hidden;
	padding: 24px;
	border-radius: 24px;
	color: #ffffff;
	background: radial-gradient(circle at 20% 15%, rgba(255,255,255,0.24), transparent 28%), linear-gradient(135deg, #1d4ed8, #2563eb, #06b6d4);
}

	.bt-mega-left::after {
		content: "";
		position: absolute;
		width: 180px;
		height: 180px;
		right: -70px;
		bottom: -70px;
		border-radius: 50%;
		background: rgba(255, 255, 255, 0.15);
		animation: btMegaFloat 5s ease-in-out infinite;
	}

.bt-mega-badge {
	position: relative;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 8px 12px;
	border-radius: 999px;
	background: rgba(255,255,255,0.18);
	border: 1px solid rgba(255,255,255,0.25);
	font-size: 12px;
	font-weight: 900;
	margin-bottom: 18px;
}

.bt-mega-left h4 {
	position: relative;
	z-index: 1;
	font-size: 27px;
	line-height: 1.15;
	font-weight: 950;
	margin-bottom: 12px;
}

.bt-mega-left p {
	position: relative;
	z-index: 1;
	color: rgba(255,255,255,0.86);
	font-size: 14px;
	font-weight: 750;
	line-height: 1.7;
	margin: 0;
}

.bt-mega-grid,
.tools-ifsc-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 13px;
}

.bt-mega-card {
	position: relative;
	min-height: 94px;
	display: flex;
	align-items: center;
	gap: 13px;
	padding: 15px;
	border-radius: 22px;
	background: #ffffff;
	border: 1px solid #e2e8f0;
	box-shadow: 0 10px 25px rgba(15, 23, 42, 0.035);
	transition: 0.25s ease;
	overflow: hidden;
}

	.bt-mega-card:hover,
	.bt-mega-card.active {
		transform: translateY(-5px);
		border-color: rgba(37, 99, 235, 0.35);
		box-shadow: 0 20px 45px rgba(15, 23, 42, 0.10);
	}

.bt-tool-icon {
	width: 52px;
	height: 52px;
	flex: 0 0 auto;
	border-radius: 18px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
	font-size: 22px;
	box-shadow: 0 14px 28px rgba(15, 23, 42, 0.12);
}

	.bt-tool-icon.blue {
		background: linear-gradient(135deg, #3b82f6, #2563eb);
	}

	.bt-tool-icon.green {
		background: linear-gradient(135deg, #34d399, #10b981);
	}

	.bt-tool-icon.orange {
		background: linear-gradient(135deg, #fb923c, #f97316);
	}

	.bt-tool-icon.purple {
		background: linear-gradient(135deg, #a78bfa, #7c3aed);
	}

	.bt-tool-icon.pink {
		background: linear-gradient(135deg, #f472b6, #ec4899);
	}

	.bt-tool-icon.teal {
		background: linear-gradient(135deg, #14b8a6, #0891b2);
	}

.bt-mega-card strong {
	display: block;
	color: #071633;
	font-size: 15px;
	font-weight: 950;
	margin-bottom: 5px;
}

.bt-mega-card small {
	display: block;
	color: #64748b;
	font-size: 12.5px;
	font-weight: 750;
	line-height: 1.4;
}

.bt-card-arrow {
	margin-left: auto;
	color: #2563eb;
	font-size: 25px;
	opacity: 0;
	transform: translateX(-8px);
	transition: 0.25s ease;
}

.bt-mega-card:hover .bt-card-arrow {
	opacity: 1;
	transform: translateX(0);
}

.ifsc-mega-card {
	background: linear-gradient(135deg, #ffffff, #ecfeff);
	border-color: rgba(20, 184, 166, 0.25);
}

/* =========================
   IFSC Multiple Results + Live Suggestions
   ========================= */

.ifsc-list-wrapper {
	background: linear-gradient(180deg, #ffffff, #f8fafc);
	border: 1px solid #dbe3ef;
	border-radius: 24px;
	padding: 22px;
	box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.ifsc-list-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	padding-bottom: 16px;
	margin-bottom: 16px;
	border-bottom: 1px dashed #dbe3ef;
}

	.ifsc-list-header span {
		display: block;
		color: #64748b;
		font-size: 13px;
		font-weight: 850;
		margin-bottom: 4px;
	}

	.ifsc-list-header h4 {
		color: #071633;
		font-size: 22px;
		font-weight: 950;
		margin-bottom: 0;
	}

	.ifsc-list-header small {
		color: #2563eb;
		background: #eff6ff;
		border: 1px solid #bfdbfe;
		border-radius: 999px;
		padding: 7px 12px;
		font-weight: 900;
		white-space: nowrap;
	}

.ifsc-branch-list {
	display: grid;
	gap: 16px;
	max-height: 560px;
	overflow-y: auto;
	padding-right: 6px;
}

.ifsc-branch-card {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 20px;
	padding: 18px;
	transition: 0.25s ease;
}

	.ifsc-branch-card:hover {
		transform: translateY(-4px);
		border-color: rgba(37, 99, 235, 0.30);
		box-shadow: 0 16px 38px rgba(15, 23, 42, 0.10);
	}

.ifsc-branch-top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 14px;
	margin-bottom: 12px;
}

	.ifsc-branch-top span {
		display: block;
		color: #64748b;
		font-size: 12px;
		font-weight: 850;
		margin-bottom: 3px;
	}

	.ifsc-branch-top h5 {
		color: #1d4ed8;
		font-size: 22px;
		font-weight: 950;
		margin-bottom: 0;
		letter-spacing: 0.4px;
	}

.small-copy {
	padding: 7px 11px !important;
	font-size: 12px;
	white-space: nowrap;
}

.ifsc-branch-bank {
	display: flex;
	align-items: center;
	gap: 9px;
	color: #0f172a;
	font-weight: 950;
	margin-bottom: 12px;
}

	.ifsc-branch-bank i {
		color: #2563eb;
	}

.ifsc-branch-meta {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px;
	margin-bottom: 12px;
}

	.ifsc-branch-meta div {
		display: flex;
		align-items: center;
		gap: 8px;
		color: #475569;
		background: #f8fafc;
		border: 1px solid #e2e8f0;
		border-radius: 14px;
		padding: 10px;
		font-size: 13px;
		font-weight: 800;
	}

	.ifsc-branch-meta i {
		color: #2563eb;
	}

.ifsc-branch-card p {
	display: flex;
	gap: 8px;
	color: #475569;
	font-size: 13px;
	font-weight: 750;
	line-height: 1.7;
	margin-bottom: 0;
}

.ifsc-autocomplete-wrapper {
	position: relative;
}

.ifsc-suggestions-dropdown {
	display: none;
	position: absolute;
	left: 0;
	right: 0;
	top: calc(100% + 10px);
	z-index: 9999;
	background: #ffffff;
	border: 1px solid #dbeafe;
	border-radius: 18px;
	box-shadow: 0 20px 45px rgba(15, 23, 42, 0.14);
	overflow: hidden;
	max-height: 360px;
	overflow-y: auto;
}

	.ifsc-suggestions-dropdown.show {
		display: block;
	}

.ifsc-suggestion-item {
	width: 100%;
	border: 0;
	background: #ffffff;
	padding: 14px 16px;
	text-align: left;
	display: flex;
	justify-content: space-between;
	gap: 14px;
	cursor: pointer;
	border-bottom: 1px solid #eef2f7;
	transition: 0.22s ease;
}

	.ifsc-suggestion-item:hover {
		background: linear-gradient(135deg, #eff6ff, #ffffff);
	}

.ifsc-suggestion-main strong {
	display: block;
	color: #071633;
	font-size: 14px;
	font-weight: 950;
	margin-bottom: 4px;
}

.ifsc-suggestion-main span {
	display: block;
	color: #64748b;
	font-size: 13px;
	font-weight: 750;
}

.ifsc-suggestion-meta {
	text-align: right;
	flex: 0 0 auto;
}

	.ifsc-suggestion-meta span {
		display: block;
		color: #1d4ed8;
		font-size: 14px;
		font-weight: 950;
		margin-bottom: 4px;
	}

	.ifsc-suggestion-meta small {
		color: #64748b;
		font-size: 12px;
		font-weight: 800;
	}

/* =========================
   EMI / FD Result and Amortization Safe Fix
   ========================= */

.emi-chart-row {
	display: grid !important;
	grid-template-columns: 190px 1fr;
	align-items: center;
	gap: 24px;
	padding: 24px;
	border-radius: 24px;
	background: linear-gradient(135deg, #ffffff, #f8fafc);
	border: 1px solid #e2e8f0;
	box-shadow: 0 16px 42px rgba(15, 23, 42, 0.07);
	margin-top: 8px;
}

.donut-chart {
	width: 170px !important;
	height: 170px !important;
	display: grid;
	place-items: center;
	border-radius: 50%;
	background: #ffffff;
	box-shadow: 0 18px 42px rgba(37, 99, 235, 0.13);
	padding: 10px;
	margin: 0 auto;
}

	.donut-chart svg {
		width: 100%;
		height: 100%;
	}

.emi-legend {
	display: grid;
	gap: 14px;
}

	.emi-legend > div {
		position: relative;
		padding: 16px 18px;
		border-radius: 18px;
		background: #ffffff;
		border: 1px solid #e2e8f0;
		box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
		transition: 0.25s ease;
		margin-bottom: 0 !important;
	}

		.emi-legend > div:hover {
			transform: translateY(-4px);
			border-color: rgba(37, 99, 235, 0.28);
			box-shadow: 0 16px 36px rgba(15, 23, 42, 0.09);
		}

.legend-dot {
	width: 11px;
	height: 11px;
	display: inline-block;
	border-radius: 50%;
	flex: 0 0 auto;
}

	.legend-dot.principal {
		background: #2563eb !important;
	}

	.legend-dot.interest {
		background: #f97316 !important;
	}

.success-dot {
	background: #16a34a !important;
}

.total-payable-row {
	display: flex !important;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	margin-top: 20px !important;
	padding: 18px 20px !important;
	border: 1px solid #dbeafe !important;
	border-radius: 18px;
	background: linear-gradient(135deg, #eff6ff, #ffffff);
	box-shadow: 0 12px 30px rgba(37, 99, 235, 0.08);
}

	.total-payable-row span {
		color: #475569 !important;
		font-weight: 850 !important;
	}

	.total-payable-row strong {
		color: #1d4ed8 !important;
		font-size: 24px !important;
		font-weight: 950 !important;
	}

.amortization-panel {
	margin-top: 28px;
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 26px;
	padding: 28px;
	box-shadow: 0 20px 55px rgba(15, 23, 42, 0.08);
	animation: none !important;
}

.amortization-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	margin-bottom: 18px;
}

	.amortization-header h3 {
		color: #071633;
		font-size: 22px;
		font-weight: 950;
		margin-bottom: 6px;
	}

	.amortization-header p {
		color: #64748b;
		margin-bottom: 0;
		font-size: 15px;
		font-weight: 650;
	}

.schedule-wrapper {
	margin-top: 18px;
	padding: 0 !important;
	overflow-x: auto;
	border: 1px solid #dbe3ef;
	border-radius: 18px;
	background: #ffffff;
	box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
	animation: none !important;
}

.schedule-table {
	width: 100%;
	min-width: 850px;
	border-collapse: separate;
	border-spacing: 0;
	margin: 0;
	font-size: 14px;
}

	.schedule-table thead {
		background: linear-gradient(135deg, #1e40af, #2563eb);
		color: #ffffff;
	}

	.schedule-table th {
		padding: 15px 16px;
		font-weight: 950;
		text-align: right;
		white-space: nowrap;
		border: none;
	}

		.schedule-table th:first-child {
			text-align: left;
			border-top-left-radius: 16px;
		}

		.schedule-table th:last-child {
			border-top-right-radius: 16px;
		}

	.schedule-table td {
		padding: 14px 16px;
		text-align: right;
		color: #334155;
		font-weight: 750;
		border-bottom: 1px solid #edf2f7;
		white-space: nowrap;
	}

		.schedule-table td:first-child {
			text-align: left;
			color: #0f172a;
			font-weight: 950;
		}

/* =========================
   Loan Enquiry Page
   ========================= */

.loan-page-section {
	position: relative;
	overflow: hidden;
	padding: 70px 0 90px;
	background: radial-gradient(circle at 10% 10%, rgba(37, 99, 235, 0.12), transparent 30%), radial-gradient(circle at 90% 20%, rgba(6, 182, 212, 0.12), transparent 30%), linear-gradient(135deg, #ffffff, #f8fbff, #eef6ff);
}

.loan-info-card,
.loan-form-card {
	position: relative;
	border-radius: 30px;
	padding: 34px;
	background: rgba(255, 255, 255, 0.94);
	border: 1px solid #dbeafe;
	box-shadow: 0 24px 65px rgba(15, 23, 42, 0.10);
	overflow: hidden;
}

.loan-info-card {
	position: sticky;
	top: 110px;
}

.loan-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #047857;
	background: #ecfdf5;
	border: 1px solid #a7f3d0;
	border-radius: 999px;
	padding: 9px 14px;
	font-size: 13px;
	font-weight: 900;
	margin-bottom: 20px;
}

.loan-info-card h1 {
	color: #071633;
	font-size: 42px;
	line-height: 1.12;
	font-weight: 950;
	letter-spacing: -1.2px;
	margin-bottom: 16px;
}

.loan-info-card p {
	color: #64748b;
	font-size: 16px;
	font-weight: 650;
	line-height: 1.8;
	margin-bottom: 24px;
}

.loan-feature-list {
	display: grid;
	gap: 14px;
	margin-bottom: 24px;
}

	.loan-feature-list div {
		display: flex;
		align-items: center;
		gap: 12px;
		background: #ffffff;
		border: 1px solid #e2e8f0;
		border-radius: 18px;
		padding: 15px;
		font-weight: 900;
		color: #0f172a;
		box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
		transition: 0.25s ease;
	}

		.loan-feature-list div:hover {
			transform: translateY(-5px);
			border-color: rgba(37, 99, 235, 0.35);
			box-shadow: 0 22px 46px rgba(37, 99, 235, 0.12);
		}

	.loan-feature-list i {
		width: 42px;
		height: 42px;
		border-radius: 14px;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		color: #ffffff;
		background: linear-gradient(135deg, #2563eb, #06b6d4);
		font-size: 19px;
	}

.loan-note-box {
	display: flex;
	gap: 12px;
	color: #92400e;
	background: #fffbeb;
	border: 1px solid #fde68a;
	border-radius: 18px;
	padding: 16px;
	font-size: 13px;
	font-weight: 800;
	line-height: 1.6;
}

.loan-form-header {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 26px;
	padding-bottom: 22px;
	border-bottom: 1px dashed rgba(148, 163, 184, 0.45);
}

.loan-form-icon {
	width: 58px;
	height: 58px;
	border-radius: 20px;
	display: grid;
	place-items: center;
	color: #ffffff;
	background: linear-gradient(135deg, #2563eb, #06b6d4);
	box-shadow: 0 14px 30px rgba(37, 99, 235, 0.24);
	font-size: 25px;
}

.loan-form-header h3 {
	color: #071633;
	font-size: 25px;
	font-weight: 950;
	margin-bottom: 4px;
}

.loan-form-header p {
	color: #64748b;
	font-size: 14px;
	font-weight: 700;
	margin-bottom: 0;
}

.loan-label {
	color: #334155;
	font-size: 13px;
	font-weight: 900;
	margin-bottom: 8px;
}

.loan-input {
	width: 100%;
	min-height: 54px;
	border: 1px solid #cbd5e1;
	border-radius: 16px;
	background: #ffffff;
	color: #071633;
	padding: 13px 15px;
	font-size: 14px;
	font-weight: 750;
	outline: none;
	transition: 0.25s ease;
}

	.loan-input:focus {
		border-color: #2563eb;
		box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
	}

.loan-textarea {
	min-height: 110px;
	resize: vertical;
}

.loan-consent {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	color: #475569;
	font-size: 13px;
	font-weight: 800;
	line-height: 1.6;
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 16px;
	padding: 14px;
}

	.loan-consent input {
		margin-top: 4px;
	}

.loan-submit-btn {
	width: 100%;
	min-height: 58px;
	border: none;
	border-radius: 18px;
	color: #ffffff;
	background: linear-gradient(135deg, #2563eb, #1d4ed8, #06b6d4);
	font-size: 16px;
	font-weight: 950;
	box-shadow: 0 18px 38px rgba(37, 99, 235, 0.26);
	transition: 0.25s ease;
}

	.loan-submit-btn:hover {
		transform: translateY(-3px);
		box-shadow: 0 26px 50px rgba(37, 99, 235, 0.34);
	}

.loan-success-alert {
	display: flex;
	align-items: center;
	gap: 10px;
	color: #047857;
	background: #ecfdf5;
	border: 1px solid #a7f3d0;
	border-radius: 18px;
	padding: 14px 16px;
	font-size: 14px;
	font-weight: 900;
	margin-bottom: 22px;
}

/* Home Loan Highlight */
.home-loan-highlight-section {
	padding: 55px 0;
	background: linear-gradient(135deg, #ffffff, #f8fbff);
}

.home-loan-highlight-card {
	position: relative;
	overflow: hidden;
	display: grid;
	grid-template-columns: 1.4fr 0.6fr;
	gap: 28px;
	align-items: center;
	padding: 34px;
	border-radius: 32px;
	background: radial-gradient(circle at 8% 10%, rgba(22, 163, 74, 0.12), transparent 28%), radial-gradient(circle at 88% 20%, rgba(6, 182, 212, 0.12), transparent 30%), linear-gradient(135deg, #ffffff, #eff6ff);
	border: 1px solid rgba(191, 219, 254, 0.95);
	box-shadow: 0 28px 70px rgba(15, 23, 42, 0.10);
}

.home-loan-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 9px 14px;
	border-radius: 999px;
	color: #047857;
	background: #ecfdf5;
	border: 1px solid #a7f3d0;
	font-size: 13px;
	font-weight: 950;
	margin-bottom: 16px;
}

.home-loan-highlight-left h2 {
	color: #071633;
	font-size: 36px;
	line-height: 1.15;
	font-weight: 950;
	letter-spacing: -1.1px;
	margin-bottom: 12px;
}

.home-loan-highlight-left p {
	color: #64748b;
	font-size: 15px;
	font-weight: 750;
	line-height: 1.8;
	margin-bottom: 18px;
}

.home-loan-points {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

	.home-loan-points span {
		display: inline-flex;
		align-items: center;
		gap: 7px;
		padding: 9px 12px;
		border-radius: 999px;
		background: #ffffff;
		border: 1px solid #dbeafe;
		color: #334155;
		font-size: 13px;
		font-weight: 900;
	}

	.home-loan-points i {
		color: #16a34a;
	}

.home-loan-highlight-right {
	display: grid;
	gap: 16px;
}

.loan-mini-card {
	padding: 22px;
	border-radius: 24px;
	background: rgba(255, 255, 255, 0.88);
	border: 1px solid rgba(191, 219, 254, 0.95);
	box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
	text-align: center;
}

	.loan-mini-card i {
		width: 58px;
		height: 58px;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		border-radius: 20px;
		color: #ffffff;
		background: linear-gradient(135deg, #16a34a, #06b6d4);
		font-size: 25px;
		margin-bottom: 14px;
		box-shadow: 0 16px 34px rgba(22, 163, 74, 0.24);
	}

	.loan-mini-card strong {
		display: block;
		color: #071633;
		font-size: 17px;
		font-weight: 950;
		margin-bottom: 5px;
	}

	.loan-mini-card span {
		display: block;
		color: #64748b;
		font-size: 13px;
		font-weight: 800;
	}

.home-loan-apply-btn {
	min-height: 58px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	border-radius: 20px;
	color: #ffffff;
	text-decoration: none;
	font-size: 16px;
	font-weight: 950;
	background: linear-gradient(135deg, #16a34a, #059669, #06b6d4);
	box-shadow: 0 22px 46px rgba(22, 163, 74, 0.28);
	transition: 0.25s ease;
}

	.home-loan-apply-btn:hover {
		color: #ffffff;
		transform: translateY(-4px);
		box-shadow: 0 30px 60px rgba(22, 163, 74, 0.36);
	}

/* New page elements should float only when safe */
.loan-mini-card,
.home-loan-highlight-card {
	animation: safeCardFloat 5s ease-in-out infinite;
}

@keyframes safeCardFloat {
	0%, 100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-6px);
	}
}

@keyframes btMegaFloat {
	0%, 100% {
		transform: translateY(0) scale(1);
	}

	50% {
		transform: translateY(-12px) scale(1.05);
	}
}

/* =========================
   Clean Responsive Additions
   ========================= */

@media (max-width: 1199px) {
	.bt-navbar > .container {
		max-width: 100%;
	}

	.bt-nav-link,
	.bt-mega-trigger,
	.bt-loan-nav-btn {
		padding: 9px 10px;
		font-size: 13px;
	}

	.bt-brand span:last-child {
		font-size: 18px;
	}
}

@media (max-width: 991px) {
	.bt-navbar > .container {
		flex-wrap: wrap;
	}

	.bt-nav {
		width: 100%;
		display: grid;
		gap: 8px;
		padding: 14px 0;
		background: transparent;
		border: 0;
		box-shadow: none;
	}

		.bt-nav .nav-item {
			width: 100%;
			display: block;
		}

	.bt-nav-link,
	.bt-mega-trigger,
	.bt-loan-nav-btn,
	.bt-start-btn {
		width: 100%;
		justify-content: flex-start;
		background: #ffffff;
		border: 1px solid #e2e8f0;
	}

	.bt-mega-menu {
		position: static;
		width: 100%;
		transform: none !important;
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		display: none;
		margin-top: 10px;
	}

	.bt-mega-wrap.bt-mega-open .bt-mega-menu {
		display: block;
	}

	.bt-mega-panel {
		grid-template-columns: 1fr;
		padding: 12px;
		border-radius: 22px;
	}

	.bt-mega-grid,
	.tools-ifsc-grid {
		grid-template-columns: 1fr;
	}

	.home-loan-highlight-card {
		grid-template-columns: 1fr;
	}

	.loan-info-card {
		position: static;
	}

		.loan-info-card h1 {
			font-size: 34px;
		}
}

@media (max-width: 768px) {
	.emi-chart-row {
		grid-template-columns: 1fr !important;
		text-align: center;
		padding: 20px;
	}

	.donut-chart {
		width: 155px !important;
		height: 155px !important;
	}

	.total-payable-row {
		flex-direction: column;
		align-items: flex-start;
	}

	.ifsc-list-header,
	.ifsc-branch-top,
	.ifsc-result-header,
	.amortization-header {
		flex-direction: column;
		align-items: flex-start;
	}

	.ifsc-branch-meta {
		grid-template-columns: 1fr;
	}

	.ifsc-suggestion-item {
		flex-direction: column;
	}

	.ifsc-suggestion-meta {
		text-align: left;
	}

	.schedule-table {
		min-width: 760px;
		font-size: 13px;
	}
}

@media (max-width: 576px) {
	.loan-info-card,
	.loan-form-card,
	.home-loan-highlight-card {
		padding: 24px;
		border-radius: 24px;
	}

		.loan-info-card h1,
		.home-loan-highlight-left h2 {
			font-size: 30px;
		}
}

/* =====================================================
   FINAL CLEAN PREMIUM HEADER WITH LOGO
   ===================================================== */

.bti-header {
	position: sticky !important;
	top: 0 !important;
	z-index: 99999 !important;
	padding: 14px 0 !important;
	background: rgba(255, 255, 255, 0.92) !important;
	backdrop-filter: blur(24px) saturate(180%) !important;
	-webkit-backdrop-filter: blur(24px) saturate(180%) !important;
	border-bottom: 1px solid rgba(37, 99, 235, 0.16) !important;
	box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08) !important;
}

	.bti-header::after {
		content: "" !important;
		position: absolute !important;
		left: 0 !important;
		bottom: -1px !important;
		width: 100% !important;
		height: 3px !important;
		background: linear-gradient(90deg, #2563eb, #0ea5e9, #16a34a, #2563eb) !important;
		background-size: 300% 100% !important;
		animation: btiHeaderLine 7s linear infinite !important;
	}

.bti-header-container {
	width: min(1320px, calc(100% - 32px)) !important;
	margin: 0 auto !important;
	display: flex !important;
	align-items: center !important;
	justify-content: space-between !important;
	gap: 22px !important;
}

/* Logo */
.bti-logo {
	flex: 0 0 auto !important;
	display: inline-flex !important;
	align-items: center !important;
	gap: 12px !important;
	padding: 8px 16px 8px 8px !important;
	border-radius: 26px !important;
	color: #071633 !important;
	text-decoration: none !important;
	background: linear-gradient(135deg, #ffffff, #eff6ff) !important;
	border: 1px solid #bfdbfe !important;
	box-shadow: 0 18px 42px rgba(37, 99, 235, 0.13) !important;
	transition: 0.25s ease !important;
	white-space: nowrap !important;
}

	.bti-logo:hover {
		color: #071633 !important;
		transform: translateY(-2px) !important;
		box-shadow: 0 26px 56px rgba(37, 99, 235, 0.18) !important;
	}

.bti-logo-icon {
	width: 50px !important;
	height: 50px !important;
	flex: 0 0 auto !important;
	border-radius: 18px !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	color: #ffffff !important;
	font-size: 24px !important;
	background: linear-gradient(135deg, #2563eb, #0284c7, #0ea5e9) !important;
	box-shadow: 0 16px 34px rgba(37, 99, 235, 0.32) !important;
	animation: btiLogoFloat 4s ease-in-out infinite !important;
}

.bti-logo-text {
	display: inline-block !important;
	font-size: 20px !important;
	font-weight: 950 !important;
	letter-spacing: -0.8px !important;
	background: linear-gradient(135deg, #071633, #1d4ed8, #0ea5e9) !important;
	-webkit-background-clip: text !important;
	background-clip: text !important;
	color: transparent !important;
}

/* Mobile button */
.bti-mobile-btn {
	display: none !important;
	width: 48px !important;
	height: 48px !important;
	border: 1px solid #bfdbfe !important;
	border-radius: 16px !important;
	color: #2563eb !important;
	background: #ffffff !important;
	font-size: 24px !important;
}

/* Nav */
.bti-nav {
	flex: 1 1 auto !important;
	display: flex !important;
	align-items: center !important;
	justify-content: flex-end !important;
	gap: 8px !important;
	padding: 8px !important;
	border-radius: 34px !important;
	background: rgba(255, 255, 255, 0.74) !important;
	border: 1px solid rgba(191, 219, 254, 0.88) !important;
	box-shadow: 0 18px 42px rgba(15, 23, 42, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.95) !important;
}

.bti-nav-link,
.bti-tools-trigger,
.bti-loan-link {
	min-height: 54px !important;
	border: 1px solid transparent !important;
	border-radius: 20px !important;
	padding: 10px 15px !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 8px !important;
	color: #0f172a !important;
	background: transparent !important;
	text-decoration: none !important;
	font-size: 14px !important;
	font-weight: 950 !important;
	line-height: 1.1 !important;
	white-space: nowrap !important;
	cursor: pointer !important;
	transition: 0.25s ease !important;
}

	.bti-nav-link > i:first-child,
	.bti-tools-trigger > i:first-child,
	.bti-loan-link > i:first-child {
		width: 34px !important;
		height: 34px !important;
		flex: 0 0 auto !important;
		border-radius: 14px !important;
		display: inline-flex !important;
		align-items: center !important;
		justify-content: center !important;
		color: #2563eb !important;
		background: linear-gradient(135deg, #eff6ff, #ffffff) !important;
		border: 1px solid #bfdbfe !important;
		box-shadow: 0 9px 20px rgba(37, 99, 235, 0.10) !important;
	}

	.bti-nav-link:hover,
	.bti-nav-link.active,
	.bti-tools-wrap.active > .bti-tools-trigger,
	.bti-tools-wrap.open > .bti-tools-trigger {
		color: #1d4ed8 !important;
		background: #ffffff !important;
		border-color: #93c5fd !important;
		transform: translateY(-3px) !important;
		box-shadow: 0 18px 38px rgba(37, 99, 235, 0.15), inset 0 1px 0 rgba(255,255,255,1) !important;
	}

		.bti-nav-link:hover > i:first-child,
		.bti-nav-link.active > i:first-child,
		.bti-tools-wrap.active > .bti-tools-trigger > i:first-child,
		.bti-tools-wrap.open > .bti-tools-trigger > i:first-child {
			color: #ffffff !important;
			background: linear-gradient(135deg, #2563eb, #0ea5e9) !important;
			border-color: transparent !important;
		}

.bti-down-icon {
	font-size: 12px !important;
	transition: 0.25s ease !important;
}

.bti-tools-wrap:hover .bti-down-icon,
.bti-tools-wrap.open .bti-down-icon {
	transform: rotate(180deg) !important;
}

/* Loan link */
.bti-loan-link {
	position: relative !important;
	overflow: hidden !important;
	color: #ffffff !important;
	padding: 10px 20px !important;
	border-radius: 22px !important;
	background: linear-gradient(135deg, #16a34a, #059669, #0ea5e9) !important;
	border-color: rgba(134, 239, 172, 0.55) !important;
	box-shadow: 0 22px 48px rgba(22, 163, 74, 0.32), 0 0 0 6px rgba(22, 163, 74, 0.08) !important;
}

	.bti-loan-link::before {
		content: "" !important;
		position: absolute !important;
		inset: -60% !important;
		background: linear-gradient(120deg, transparent, rgba(255,255,255,0.45), transparent) !important;
		transform: translateX(-130%) rotate(25deg) !important;
		animation: btiShine 3.4s ease-in-out infinite !important;
	}

	.bti-loan-link i,
	.bti-loan-link span {
		position: relative !important;
		z-index: 1 !important;
	}

	.bti-loan-link > i:first-child {
		color: #ffffff !important;
		background: rgba(255,255,255,0.22) !important;
		border-color: rgba(255,255,255,0.22) !important;
	}

	.bti-loan-link:hover,
	.bti-loan-link.active {
		color: #ffffff !important;
		transform: translateY(-4px) scale(1.02) !important;
		box-shadow: 0 30px 65px rgba(22, 163, 74, 0.42), 0 0 0 8px rgba(22, 163, 74, 0.10) !important;
	}

/* Tools menu */
.bti-tools-wrap {
	position: relative !important;
}

.bti-tools-menu {
	position: fixed !important;
	top: 92px !important;
	left: 50% !important;
	width: min(980px, calc(100vw - 34px)) !important;
	display: grid !important;
	grid-template-columns: 285px 1fr !important;
	gap: 18px !important;
	padding: 18px !important;
	border-radius: 32px !important;
	background: rgba(255, 255, 255, 0.97) !important;
	backdrop-filter: blur(24px) !important;
	-webkit-backdrop-filter: blur(24px) !important;
	border: 1px solid rgba(191, 219, 254, 0.95) !important;
	box-shadow: 0 34px 85px rgba(15, 23, 42, 0.18) !important;
	opacity: 0 !important;
	visibility: hidden !important;
	pointer-events: none !important;
	z-index: 100000 !important;
	transform: translateX(-50%) translateY(18px) scale(0.98) !important;
	transition: 0.28s ease !important;
}

.bti-tools-wrap:hover .bti-tools-menu,
.bti-tools-wrap.open .bti-tools-menu {
	opacity: 1 !important;
	visibility: visible !important;
	pointer-events: auto !important;
	transform: translateX(-50%) translateY(0) scale(1) !important;
}

.bti-tools-left {
	position: relative !important;
	overflow: hidden !important;
	padding: 24px !important;
	border-radius: 25px !important;
	color: #ffffff !important;
	background: radial-gradient(circle at 20% 15%, rgba(255,255,255,0.24), transparent 28%), linear-gradient(135deg, #1d4ed8, #2563eb, #0ea5e9) !important;
}

	.bti-tools-left::after {
		content: "" !important;
		position: absolute !important;
		width: 180px !important;
		height: 180px !important;
		right: -70px !important;
		bottom: -70px !important;
		border-radius: 50% !important;
		background: rgba(255,255,255,0.15) !important;
		animation: btiMenuBubble 5s ease-in-out infinite !important;
	}

	.bti-tools-left span {
		position: relative !important;
		z-index: 1 !important;
		display: inline-flex !important;
		align-items: center !important;
		gap: 7px !important;
		padding: 8px 12px !important;
		border-radius: 999px !important;
		background: rgba(255,255,255,0.18) !important;
		border: 1px solid rgba(255,255,255,0.25) !important;
		font-size: 12px !important;
		font-weight: 900 !important;
		margin-bottom: 18px !important;
	}

	.bti-tools-left h4 {
		position: relative !important;
		z-index: 1 !important;
		font-size: 28px !important;
		line-height: 1.15 !important;
		font-weight: 950 !important;
		margin-bottom: 12px !important;
	}

	.bti-tools-left p {
		position: relative !important;
		z-index: 1 !important;
		color: rgba(255,255,255,0.86) !important;
		font-size: 14px !important;
		font-weight: 750 !important;
		line-height: 1.7 !important;
		margin: 0 !important;
	}

.bti-tools-grid {
	display: grid !important;
	grid-template-columns: repeat(3, 1fr) !important;
	gap: 13px !important;
}

.bti-tool-card {
	position: relative !important;
	min-height: 96px !important;
	display: flex !important;
	align-items: center !important;
	gap: 13px !important;
	padding: 15px !important;
	border-radius: 23px !important;
	background: #ffffff !important;
	border: 1px solid #e2e8f0 !important;
	box-shadow: 0 10px 25px rgba(15, 23, 42, 0.035) !important;
	transition: 0.25s ease !important;
	overflow: hidden !important;
}

	.bti-tool-card:hover,
	.bti-tool-card.active {
		transform: translateY(-5px) !important;
		border-color: rgba(37, 99, 235, 0.35) !important;
		box-shadow: 0 20px 45px rgba(15, 23, 42, 0.10) !important;
	}

	.bti-tool-card.ifsc {
		background: linear-gradient(135deg, #ffffff, #ecfeff) !important;
		border-color: rgba(20, 184, 166, 0.25) !important;
	}

.bti-tool-icon {
	width: 52px !important;
	height: 52px !important;
	flex: 0 0 auto !important;
	border-radius: 18px !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	color: #ffffff !important;
	font-size: 22px !important;
	box-shadow: 0 14px 28px rgba(15, 23, 42, 0.12) !important;
}

	.bti-tool-icon.blue {
		background: linear-gradient(135deg, #3b82f6, #2563eb) !important;
	}

	.bti-tool-icon.green {
		background: linear-gradient(135deg, #34d399, #10b981) !important;
	}

	.bti-tool-icon.orange {
		background: linear-gradient(135deg, #fb923c, #f97316) !important;
	}

	.bti-tool-icon.purple {
		background: linear-gradient(135deg, #a78bfa, #7c3aed) !important;
	}

	.bti-tool-icon.pink {
		background: linear-gradient(135deg, #f472b6, #ec4899) !important;
	}

	.bti-tool-icon.teal {
		background: linear-gradient(135deg, #14b8a6, #0f766e) !important;
	}

.bti-tool-card strong {
	display: block !important;
	color: #071633 !important;
	font-size: 15px !important;
	font-weight: 950 !important;
	margin-bottom: 5px !important;
}

.bti-tool-card small {
	display: block !important;
	color: #64748b !important;
	font-size: 12.5px !important;
	font-weight: 750 !important;
}

/* Animations */
@keyframes btiHeaderLine {
	from {
		background-position: 0% 50%;
	}

	to {
		background-position: 300% 50%;
	}
}

@keyframes btiLogoFloat {
	0%, 100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-3px);
	}
}

@keyframes btiShine {
	0%, 45% {
		transform: translateX(-130%) rotate(25deg);
	}

	75%, 100% {
		transform: translateX(130%) rotate(25deg);
	}
}

@keyframes btiMenuBubble {
	0%, 100% {
		transform: translateY(0) scale(1);
	}

	50% {
		transform: translateY(-12px) scale(1.05);
	}
}

/* Responsive */
@media (max-width: 1250px) {
	.bti-logo-text {
		font-size: 18px !important;
	}

	.bti-nav-link,
	.bti-tools-trigger,
	.bti-loan-link {
		padding: 10px 11px !important;
		font-size: 13px !important;
	}
}

@media (max-width: 991px) {
	.bti-header-container {
		flex-wrap: wrap !important;
	}

	.bti-mobile-btn {
		display: inline-flex !important;
		align-items: center !important;
		justify-content: center !important;
		margin-left: auto !important;
	}

	.bti-nav {
		display: none !important;
		width: 100% !important;
		flex-direction: column !important;
		align-items: stretch !important;
		gap: 9px !important;
		background: transparent !important;
		border: none !important;
		box-shadow: none !important;
		padding: 12px 0 4px !important;
	}

		.bti-nav.show {
			display: flex !important;
		}

	.bti-nav-link,
	.bti-tools-trigger,
	.bti-loan-link {
		width: 100% !important;
		justify-content: flex-start !important;
		background: #ffffff !important;
		border: 1px solid #e2e8f0 !important;
		box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05) !important;
	}

	.bti-tools-menu {
		position: static !important;
		width: 100% !important;
		display: none !important;
		grid-template-columns: 1fr !important;
		opacity: 1 !important;
		visibility: visible !important;
		pointer-events: auto !important;
		transform: none !important;
		margin-top: 10px !important;
		padding: 12px !important;
		border-radius: 24px !important;
	}

	.bti-tools-wrap.open .bti-tools-menu {
		display: grid !important;
	}

	.bti-tools-grid {
		grid-template-columns: 1fr !important;
	}

	.bti-tools-left {
		padding: 18px !important;
		border-radius: 20px !important;
	}

		.bti-tools-left h4 {
			font-size: 22px !important;
		}
}

@media (max-width: 575px) {
	.bti-header-container {
		width: min(100% - 20px, 1320px) !important;
	}

	.bti-logo {
		max-width: 250px !important;
		padding: 7px 12px 7px 7px !important;
	}

	.bti-logo-icon {
		width: 44px !important;
		height: 44px !important;
		font-size: 21px !important;
	}

	.bti-logo-text {
		font-size: 16px !important;
		overflow: hidden !important;
		text-overflow: ellipsis !important;
	}
}

/* =========================
   Namokar Tech Footer Brand
   ========================= */

.bti-footer-bottom-premium {
	align-items: center;
}

.namokar-footer-brand {
	display: inline-flex !important;
	align-items: center;
	gap: 10px;
	padding: 8px 13px;
	border-radius: 999px;
	background: linear-gradient(135deg, #ffffff, #f8fafc);
	border: 1px solid #e2e8f0;
	color: #475569 !important;
	text-decoration: none !important;
	box-shadow: 0 12px 26px rgba(15, 23, 42, 0.06);
	transition: 0.25s ease;
}

	.namokar-footer-brand:hover {
		transform: translateY(-3px);
		border-color: rgba(37, 99, 235, 0.28);
		box-shadow: 0 18px 38px rgba(15, 23, 42, 0.10);
	}

	.namokar-footer-brand img {
		width: 42px;
		height: 42px;
		object-fit: contain;
		border-radius: 12px;
	}

	.namokar-footer-brand span {
		font-size: 12px;
		font-weight: 800;
		line-height: 1.2;
	}

	.namokar-footer-brand strong {
		display: block;
		color: #071633;
		font-size: 14px;
		font-weight: 950;
	}

@media (max-width: 768px) {
	.bti-footer-bottom-premium {
		flex-direction: column;
		align-items: flex-start;
		gap: 14px;
	}
}
/* =====================================================
   EMI + FD RESULT PREMIUM DASHBOARD FIX
   Paste at VERY END of site.css
   ===================================================== */

.emi-panel .emi-highlight {
	position: relative !important;
	overflow: hidden !important;
	border-radius: 30px !important;
	padding: 34px 26px !important;
	text-align: center !important;
	color: #ffffff !important;
	background: radial-gradient(circle at 20% 0%, rgba(255,255,255,0.28), transparent 32%), linear-gradient(135deg, #0f3cc9, #2563eb, #0ea5e9) !important;
	box-shadow: 0 28px 70px rgba(37, 99, 235, 0.36), inset 0 1px 0 rgba(255,255,255,0.25) !important;
	margin-bottom: 26px !important;
}

	.emi-panel .emi-highlight::before {
		content: "" !important;
		position: absolute !important;
		inset: -60% !important;
		background: linear-gradient(120deg, transparent, rgba(255,255,255,0.34), transparent) !important;
		transform: translateX(-130%) rotate(25deg) !important;
		animation: resultShineMove 4s ease-in-out infinite !important;
	}

	.emi-panel .emi-highlight::after {
		content: "" !important;
		position: absolute !important;
		width: 150px !important;
		height: 150px !important;
		right: -55px !important;
		bottom: -55px !important;
		border-radius: 50% !important;
		background: rgba(255,255,255,0.14) !important;
	}

	.emi-panel .emi-highlight > * {
		position: relative !important;
		z-index: 2 !important;
	}

	.emi-panel .emi-highlight span {
		display: block !important;
		color: rgba(255,255,255,0.78) !important;
		font-size: 14px !important;
		font-weight: 900 !important;
		letter-spacing: 0.2px !important;
		margin-bottom: 8px !important;
	}

	.emi-panel .emi-highlight h2 {
		color: #ffffff !important;
		font-size: 48px !important;
		line-height: 1 !important;
		font-weight: 950 !important;
		letter-spacing: -1.5px !important;
		margin: 8px 0 10px !important;
		text-shadow: 0 12px 28px rgba(15, 23, 42, 0.22) !important;
	}

	.emi-panel .emi-highlight p {
		color: rgba(255,255,255,0.78) !important;
		font-size: 14px !important;
		font-weight: 800 !important;
		margin-bottom: 0 !important;
	}

/* Chart area */
.emi-panel .emi-chart-row {
	display: grid !important;
	grid-template-columns: 230px 1fr !important;
	align-items: center !important;
	gap: 28px !important;
	padding: 30px !important;
	border-radius: 30px !important;
	background: radial-gradient(circle at 15% 20%, rgba(37,99,235,0.08), transparent 35%), linear-gradient(145deg, #ffffff, #f8fbff) !important;
	border: 1px solid #dbeafe !important;
	box-shadow: 0 24px 65px rgba(15, 23, 42, 0.10), inset 0 1px 0 rgba(255,255,255,0.9) !important;
	animation: resultCardFloat 5s ease-in-out infinite !important;
}

.emi-panel .donut-chart {
	width: 190px !important;
	height: 190px !important;
	margin: 0 auto !important;
	padding: 12px !important;
	border-radius: 50% !important;
	display: grid !important;
	place-items: center !important;
	background: radial-gradient(circle, #ffffff 58%, #eff6ff 59%, #ffffff 70%) !important;
	box-shadow: 0 24px 55px rgba(37, 99, 235, 0.18), inset 0 1px 0 rgba(255,255,255,0.9) !important;
	animation: donutPremiumPulse 3.8s ease-in-out infinite !important;
}

	.emi-panel .donut-chart svg {
		width: 100% !important;
		height: 100% !important;
	}

/* Result cards */
.emi-panel .emi-legend {
	display: grid !important;
	gap: 18px !important;
}

	.emi-panel .emi-legend > div {
		position: relative !important;
		overflow: hidden !important;
		padding: 22px !important;
		border-radius: 24px !important;
		background: rgba(255,255,255,0.96) !important;
		border: 1px solid #dbeafe !important;
		box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08), inset 0 1px 0 rgba(255,255,255,0.95) !important;
		transition: 0.28s ease !important;
	}

		.emi-panel .emi-legend > div::before {
			content: "" !important;
			position: absolute !important;
			inset: 0 !important;
			width: 5px !important;
			background: linear-gradient(180deg, #2563eb, #0ea5e9) !important;
		}

		.emi-panel .emi-legend > div:nth-child(2)::before {
			background: linear-gradient(180deg, #16a34a, #22c55e) !important;
		}

		.emi-panel .emi-legend > div:hover {
			transform: translateY(-6px) scale(1.01) !important;
			border-color: rgba(37, 99, 235, 0.38) !important;
			box-shadow: 0 26px 60px rgba(37, 99, 235, 0.14) !important;
		}

	.emi-panel .emi-legend p {
		display: flex !important;
		align-items: center !important;
		gap: 8px !important;
		color: #64748b !important;
		font-size: 14px !important;
		font-weight: 950 !important;
		margin-bottom: 10px !important;
	}

	.emi-panel .emi-legend h5 {
		color: #071633 !important;
		font-size: 27px !important;
		font-weight: 950 !important;
		letter-spacing: -0.5px !important;
		margin-bottom: 6px !important;
	}

	.emi-panel .emi-legend small {
		color: #475569 !important;
		font-size: 13px !important;
		font-weight: 800 !important;
	}

.legend-dot {
	width: 13px !important;
	height: 13px !important;
	display: inline-block !important;
	border-radius: 50% !important;
	box-shadow: 0 0 0 5px rgba(37,99,235,0.10) !important;
}

	.legend-dot.principal {
		background: #2563eb !important;
	}

	.legend-dot.interest,
	.success-dot {
		background: #16a34a !important;
		box-shadow: 0 0 0 5px rgba(22,163,74,0.10) !important;
	}

/* Total payable / maturity row */
.emi-panel .total-payable-row {
	margin-top: 24px !important;
	padding: 22px 24px !important;
	border-radius: 24px !important;
	border: 1px solid #bfdbfe !important;
	background: radial-gradient(circle at 20% 0%, rgba(37,99,235,0.10), transparent 34%), linear-gradient(135deg, #eff6ff, #ffffff) !important;
	box-shadow: 0 18px 42px rgba(37, 99, 235, 0.12) !important;
}

	.emi-panel .total-payable-row span {
		color: #475569 !important;
		font-size: 14px !important;
		font-weight: 950 !important;
	}

	.emi-panel .total-payable-row strong {
		color: #1d4ed8 !important;
		font-size: 28px !important;
		font-weight: 950 !important;
		letter-spacing: -0.5px !important;
	}

/* Small result cards also premium */
.result-mini-card {
	border-radius: 22px !important;
	background: linear-gradient(145deg, #ffffff, #f8fbff) !important;
	border: 1px solid #dbeafe !important;
	box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08) !important;
}

	.result-mini-card:hover {
		transform: translateY(-6px) !important;
		border-color: rgba(37, 99, 235, 0.35) !important;
		box-shadow: 0 26px 58px rgba(37, 99, 235, 0.14) !important;
	}

/* Animations */
@keyframes resultCardFloat {
	0%, 100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-7px);
	}
}

@keyframes donutPremiumPulse {
	0%, 100% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.035);
	}
}

@keyframes resultShineMove {
	0%, 45% {
		transform: translateX(-130%) rotate(25deg);
	}

	75%, 100% {
		transform: translateX(130%) rotate(25deg);
	}
}

/* Mobile */
@media (max-width: 768px) {
	.emi-panel .emi-highlight h2 {
		font-size: 38px !important;
	}

	.emi-panel .emi-chart-row {
		grid-template-columns: 1fr !important;
		padding: 22px !important;
		animation: none !important;
	}

	.emi-panel .donut-chart {
		width: 165px !important;
		height: 165px !important;
	}

	.emi-panel .emi-legend h5 {
		font-size: 23px !important;
	}

	.emi-panel .total-payable-row {
		flex-direction: column !important;
		align-items: flex-start !important;
	}
}

/* =====================================================
   AMORTIZATION GRID PREMIUM LOOK FIX
   Paste at VERY END of site.css
   ===================================================== */

.amortization-panel {
	margin-top: 34px !important;
	padding: 30px !important;
	border-radius: 32px !important;
	background: radial-gradient(circle at 12% 0%, rgba(37, 99, 235, 0.10), transparent 32%), linear-gradient(145deg, #ffffff, #f8fbff) !important;
	border: 1px solid rgba(191, 219, 254, 0.95) !important;
	box-shadow: 0 30px 80px rgba(15, 23, 42, 0.12), inset 0 1px 0 rgba(255,255,255,0.95) !important;
	animation: none !important;
}

.amortization-header {
	display: flex !important;
	align-items: center !important;
	justify-content: space-between !important;
	gap: 18px !important;
	padding-bottom: 20px !important;
	margin-bottom: 22px !important;
	border-bottom: 1px dashed rgba(148, 163, 184, 0.45) !important;
}

	.amortization-header h3 {
		color: #071633 !important;
		font-size: 25px !important;
		font-weight: 950 !important;
		letter-spacing: -0.6px !important;
		margin-bottom: 6px !important;
	}

	.amortization-header p {
		color: #64748b !important;
		font-size: 14px !important;
		font-weight: 750 !important;
		margin-bottom: 0 !important;
	}

.schedule-btn {
	min-height: 46px !important;
	border: none !important;
	border-radius: 16px !important;
	padding: 11px 20px !important;
	color: #ffffff !important;
	background: linear-gradient(135deg, #2563eb, #1d4ed8, #0ea5e9) !important;
	font-size: 14px !important;
	font-weight: 950 !important;
	box-shadow: 0 18px 38px rgba(37, 99, 235, 0.25) !important;
	transition: 0.25s ease !important;
}

	.schedule-btn:hover {
		transform: translateY(-3px) !important;
		box-shadow: 0 26px 55px rgba(37, 99, 235, 0.35) !important;
	}

/* Table outer card */
.schedule-wrapper {
	margin-top: 18px !important;
	padding: 0 !important;
	overflow-x: auto !important;
	border-radius: 26px !important;
	background: #ffffff !important;
	border: 1px solid #dbeafe !important;
	box-shadow: 0 22px 55px rgba(15, 23, 42, 0.09), inset 0 1px 0 rgba(255,255,255,0.95) !important;
	animation: none !important;
}

/* Premium table */
.schedule-table {
	width: 100% !important;
	min-width: 880px !important;
	border-collapse: separate !important;
	border-spacing: 0 !important;
	margin: 0 !important;
	font-size: 14px !important;
	background: #ffffff !important;
}

	/* Header */
	.schedule-table thead {
		position: sticky !important;
		top: 0 !important;
		z-index: 2 !important;
	}

		.schedule-table thead th {
			padding: 17px 18px !important;
			color: #ffffff !important;
			background: linear-gradient(135deg, #1e40af, #2563eb, #0ea5e9) !important;
			font-size: 13px !important;
			font-weight: 950 !important;
			text-align: right !important;
			white-space: nowrap !important;
			border: none !important;
			letter-spacing: 0.2px !important;
		}

			.schedule-table thead th:first-child {
				text-align: left !important;
				border-top-left-radius: 24px !important;
			}

			.schedule-table thead th:last-child {
				border-top-right-radius: 24px !important;
			}

	/* Body cells */
	.schedule-table tbody td {
		padding: 15px 18px !important;
		text-align: right !important;
		color: #334155 !important;
		font-size: 13px !important;
		font-weight: 800 !important;
		white-space: nowrap !important;
		border-bottom: 1px solid #edf2f7 !important;
		background: transparent !important;
	}

		.schedule-table tbody td:first-child {
			text-align: left !important;
			color: #071633 !important;
			font-weight: 950 !important;
		}

	/* Zebra rows */
	.schedule-table tbody tr:nth-child(odd) {
		background: #ffffff !important;
	}

	.schedule-table tbody tr:nth-child(even) {
		background: #f8fbff !important;
	}

	/* Hover row */
	.schedule-table tbody tr {
		transition: 0.22s ease !important;
	}

		.schedule-table tbody tr:hover {
			background: linear-gradient(135deg, #eff6ff, #ffffff) !important;
			transform: scale(1.004) !important;
			box-shadow: 0 12px 28px rgba(37, 99, 235, 0.08) !important;
		}

			.schedule-table tbody tr:hover td {
				color: #0f172a !important;
			}

	/* Important amount colors */
	.schedule-table .principal-cell,
	.schedule-table td:nth-child(2) {
		color: #2563eb !important;
		font-weight: 950 !important;
	}

	.schedule-table .interest-cell,
	.schedule-table td:nth-child(3) {
		color: #f97316 !important;
		font-weight: 950 !important;
	}

	.schedule-table td:last-child {
		color: #047857 !important;
		font-weight: 950 !important;
	}

	/* Last row clean */
	.schedule-table tbody tr:last-child td {
		border-bottom: none !important;
	}

/* Scrollbar premium */
.schedule-wrapper::-webkit-scrollbar {
	height: 10px !important;
}

.schedule-wrapper::-webkit-scrollbar-track {
	background: #eff6ff !important;
	border-radius: 999px !important;
}

.schedule-wrapper::-webkit-scrollbar-thumb {
	background: linear-gradient(90deg, #2563eb, #0ea5e9) !important;
	border-radius: 999px !important;
	border: 2px solid #eff6ff !important;
}

	.schedule-wrapper::-webkit-scrollbar-thumb:hover {
		background: linear-gradient(90deg, #1d4ed8, #0284c7) !important;
	}

/* Mobile */
@media (max-width: 768px) {
	.amortization-panel {
		padding: 22px !important;
		border-radius: 26px !important;
	}

	.amortization-header {
		flex-direction: column !important;
		align-items: flex-start !important;
	}

	.schedule-btn {
		width: 100% !important;
	}

	.schedule-table {
		min-width: 780px !important;
		font-size: 13px !important;
	}

		.schedule-table thead th,
		.schedule-table tbody td {
			padding: 13px 14px !important;
		}
}
/* =====================================================
   CALCULATORS & IFSC PREMIUM HIGHLIGHT BUTTON
   Paste at VERY END of site.css
   ===================================================== */

/* =====================================================
   CALCULATORS & IFSC ROYAL PURPLE + GOLD BUTTON
   Paste at VERY END of site.css
   ===================================================== */

.bti-tools-trigger {
	position: relative !important;
	overflow: hidden !important;
	min-height: 56px !important;
	padding: 11px 20px !important;
	border-radius: 22px !important;
	color: #ffffff !important;
	background: linear-gradient(135deg, #4c1d95, #7c3aed, #c084fc) !important;
	border: 1px solid rgba(216, 180, 254, 0.75) !important;
	box-shadow: 0 22px 48px rgba(124, 58, 237, 0.32), 0 0 0 6px rgba(124, 58, 237, 0.09) !important;
}

	.bti-tools-trigger::before {
		content: "" !important;
		position: absolute !important;
		inset: -70% !important;
		background: linear-gradient( 120deg, transparent, rgba(255, 215, 120, 0.55), transparent ) !important;
		transform: translateX(-130%) rotate(25deg) !important;
		animation: btiToolsPurpleShine 3.6s ease-in-out infinite !important;
	}

	.bti-tools-trigger i,
	.bti-tools-trigger span {
		position: relative !important;
		z-index: 1 !important;
	}

	.bti-tools-trigger > i:first-child {
		color: #78350f !important;
		background: linear-gradient(135deg, #fef3c7, #f59e0b) !important;
		border-color: rgba(251, 191, 36, 0.65) !important;
		box-shadow: 0 12px 24px rgba(245, 158, 11, 0.22) !important;
	}

	.bti-tools-trigger .bti-down-icon {
		color: #fde68a !important;
	}

.bti-tools-wrap:hover > .bti-tools-trigger,
.bti-tools-wrap.open > .bti-tools-trigger,
.bti-tools-wrap.active > .bti-tools-trigger {
	color: #ffffff !important;
	transform: translateY(-4px) scale(1.02) !important;
	background: linear-gradient(135deg, #581c87, #9333ea, #f59e0b) !important;
	border-color: rgba(253, 230, 138, 0.75) !important;
	box-shadow: 0 32px 68px rgba(124, 58, 237, 0.42), 0 0 0 9px rgba(245, 158, 11, 0.10) !important;
}

	.bti-tools-wrap:hover > .bti-tools-trigger > i:first-child,
	.bti-tools-wrap.open > .bti-tools-trigger > i:first-child,
	.bti-tools-wrap.active > .bti-tools-trigger > i:first-child {
		color: #4c1d95 !important;
		background: linear-gradient(135deg, #ffffff, #fef3c7) !important;
		border-color: transparent !important;
	}

@keyframes btiToolsPurpleShine {
	0%, 45% {
		transform: translateX(-130%) rotate(25deg);
	}

	75%, 100% {
		transform: translateX(130%) rotate(25deg);
	}
}

@media (max-width: 991px) {
	.bti-tools-trigger {
		width: 100% !important;
		justify-content: flex-start !important;
	}
}

/* =====================================================
   HOME + BLOG + ABOUT + CONTACT PREMIUM HEADER BUTTONS
   Paste at VERY END of site.css
   ===================================================== */

/* Normal nav buttons premium glass look */
.bti-nav > a.bti-nav-link {
	position: relative !important;
	overflow: hidden !important;
	min-height: 56px !important;
	padding: 11px 18px !important;
	border-radius: 22px !important;
	color: #071633 !important;
	background: linear-gradient(135deg, #ffffff, #f8fbff) !important;
	border: 1px solid rgba(191, 219, 254, 0.95) !important;
	box-shadow: 0 16px 36px rgba(15, 23, 42, 0.07), inset 0 1px 0 rgba(255,255,255,0.95) !important;
	transition: 0.25s ease !important;
}

	/* Light shine layer */
	.bti-nav > a.bti-nav-link::before {
		content: "" !important;
		position: absolute !important;
		inset: -70% !important;
		background: linear-gradient( 120deg, transparent, rgba(255,255,255,0.75), transparent ) !important;
		transform: translateX(-130%) rotate(25deg) !important;
		transition: 0.25s ease !important;
	}

	/* Icon premium box */
	.bti-nav > a.bti-nav-link > i:first-child {
		width: 36px !important;
		height: 36px !important;
		border-radius: 15px !important;
		color: #2563eb !important;
		background: linear-gradient(135deg, #eff6ff, #ffffff) !important;
		border: 1px solid #bfdbfe !important;
		box-shadow: 0 10px 22px rgba(37, 99, 235, 0.12) !important;
		transition: 0.25s ease !important;
	}

	.bti-nav > a.bti-nav-link span {
		position: relative !important;
		z-index: 2 !important;
		font-weight: 950 !important;
		letter-spacing: -0.2px !important;
	}

	.bti-nav > a.bti-nav-link i {
		position: relative !important;
		z-index: 2 !important;
	}

	/* Hover + active common */
	.bti-nav > a.bti-nav-link:hover,
	.bti-nav > a.bti-nav-link.active {
		transform: translateY(-4px) scale(1.02) !important;
		color: #ffffff !important;
		border-color: rgba(255,255,255,0.45) !important;
	}

		.bti-nav > a.bti-nav-link:hover::before,
		.bti-nav > a.bti-nav-link.active::before {
			animation: btiSmallBtnShine 3.5s ease-in-out infinite !important;
		}

		.bti-nav > a.bti-nav-link:hover > i:first-child,
		.bti-nav > a.bti-nav-link.active > i:first-child {
			color: #ffffff !important;
			background: rgba(255,255,255,0.20) !important;
			border-color: rgba(255,255,255,0.25) !important;
		}

	/* Home button theme */
	.bti-nav > a.bti-nav-link[href="/"]:hover,
	.bti-nav > a.bti-nav-link[href="/"].active,
	.bti-nav > a.bti-nav-link[href="/Home"]:hover,
	.bti-nav > a.bti-nav-link[href="/Home"].active {
		background: linear-gradient(135deg, #2563eb, #1d4ed8, #0ea5e9) !important;
		box-shadow: 0 28px 58px rgba(37, 99, 235, 0.35), 0 0 0 8px rgba(37, 99, 235, 0.10) !important;
	}

	/* Blog button theme */
	.bti-nav > a.bti-nav-link[href*="Blog"]:hover,
	.bti-nav > a.bti-nav-link[href*="Blog"].active {
		background: linear-gradient(135deg, #312e81, #4f46e5, #06b6d4) !important;
		box-shadow: 0 28px 58px rgba(79, 70, 229, 0.34), 0 0 0 8px rgba(79, 70, 229, 0.10) !important;
	}

	/* About button theme */
	.bti-nav > a.bti-nav-link[href*="About"]:hover,
	.bti-nav > a.bti-nav-link[href*="About"].active {
		background: linear-gradient(135deg, #92400e, #f59e0b, #fbbf24) !important;
		box-shadow: 0 28px 58px rgba(245, 158, 11, 0.34), 0 0 0 8px rgba(245, 158, 11, 0.10) !important;
	}

	/* Contact button theme */
	.bti-nav > a.bti-nav-link[href*="Contact"]:hover,
	.bti-nav > a.bti-nav-link[href*="Contact"].active {
		background: linear-gradient(135deg, #0f766e, #14b8a6, #06b6d4) !important;
		box-shadow: 0 28px 58px rgba(20, 184, 166, 0.34), 0 0 0 8px rgba(20, 184, 166, 0.10) !important;
	}

	/* Active button subtle pulse */
	.bti-nav > a.bti-nav-link.active {
		animation: btiActivePulse 3.8s ease-in-out infinite !important;
	}

@keyframes btiSmallBtnShine {
	0%, 45% {
		transform: translateX(-130%) rotate(25deg);
	}

	75%, 100% {
		transform: translateX(130%) rotate(25deg);
	}
}

@keyframes btiActivePulse {
	0%, 100% {
		filter: brightness(1);
	}

	50% {
		filter: brightness(1.08);
	}
}

/* Mobile safe */
@media (max-width: 991px) {
	.bti-nav > a.bti-nav-link {
		width: 100% !important;
		justify-content: flex-start !important;
	}
}