:root {
	--sr-navy: #0B1F3A;
	--sr-blue: #163B73;
	--sr-blue-dark: #0e2952;
	--sr-blue-light: #3B6FD4;
	--sr-cyan: #22D3EE;
	--sr-white: #ffffff;
	--sr-bg: #F5F7FA;
	--sr-text-muted: #6b7688;
	--sr-radius: 16px;
	--sr-radius-btn: 12px;
	--sr-shadow: 0 10px 30px rgba(11, 31, 58, 0.08);
	--sr-shadow-lg: 0 20px 50px rgba(11, 31, 58, 0.16);
	--sr-section-pad: 80px;
	--sr-section-pad-mobile: 50px;
	--sr-gradient-brand: linear-gradient(135deg, var(--sr-navy) 0%, var(--sr-blue) 55%, var(--sr-blue-light) 100%);
	--sr-crimson: #8B1E3B;
	--sr-crimson-dark: #641530;
	--sr-crimson-light: #B4304F;
}

.gradient-text {
	background: linear-gradient(90deg, var(--sr-crimson-light), var(--sr-cyan));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

/* Blurred decorative gradient blobs for modern depth-of-field backgrounds */
.sr-blob {
	position: absolute;
	border-radius: 50%;
	filter: blur(60px);
	opacity: 0.35;
	z-index: 0;
	pointer-events: none;
}
.sr-blob.blob-blue { background: var(--sr-blue-light); }
.sr-blob.blob-cyan { background: var(--sr-cyan); }

body {
	font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
	color: #1c2438;
	background: var(--sr-bg);
}

h1, h2, h3, h4, h5, h6,
.navbar-brand, .sr-section-title h2, .sr-plan .price {
	font-family: 'Poppins', 'Inter', 'Segoe UI', Arial, sans-serif;
}

a { text-decoration: none; transition: color 0.3s ease; }

.text-accent { color: var(--sr-blue); }
.text-orange { color: var(--sr-blue); } /* back-compat alias, repointed to new palette */
.text-gold { color: var(--sr-blue); }   /* back-compat alias, repointed to new palette */
.bg-blue { background-color: var(--sr-blue); }
.bg-blue-gradient,
.bg-navy-gradient {
	background: linear-gradient(135deg, var(--sr-navy) 0%, var(--sr-blue) 100%);
}

/* ---------- Scroll reveal ---------- */
.fade-up {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.is-visible {
	opacity: 1;
	transform: translateY(0);
}

/* ---------- Header ---------- */
.sr-header {
	position: sticky;
	top: 0;
	z-index: 1030;
	background: rgba(255,255,255,0.92);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	box-shadow: 0 2px 12px rgba(11,31,58,0.08);
	transition: box-shadow 0.3s ease, background 0.3s ease;
	border-bottom: 1px solid rgba(11,31,58,0.06);
}
.sr-header::after {
	content: '';
	position: absolute;
	left: 0; right: 0; bottom: -2px;
	height: 2px;
	background: linear-gradient(90deg, var(--sr-crimson), var(--sr-blue-light), var(--sr-cyan));
	opacity: 0;
	transition: opacity 0.3s ease;
}
.sr-header.is-scrolled { box-shadow: 0 8px 30px rgba(11,31,58,0.16); background: rgba(255,255,255,0.97); }
.sr-header.is-scrolled::after { opacity: 1; }
.sr-topbar {
	position: relative;
	background: linear-gradient(90deg, var(--sr-navy) 0%, var(--sr-blue-dark) 100%);
	color: #d9e0f2;
	font-size: 0.85rem;
	overflow: hidden;
}
.sr-topbar::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: repeating-linear-gradient(45deg, rgba(255,255,255,0.05) 0 2px, transparent 2px 14px);
	pointer-events: none;
}
.sr-topbar > .container { position: relative; z-index: 1; }
.sr-topbar a { color: #d9e0f2; transition: color 0.2s ease; }
.sr-topbar a:hover { color: var(--sr-crimson-light); }
.sr-topbar .text-gold { color: var(--sr-crimson-light) !important; font-weight: 600; }

.navbar-brand { font-weight: 700; color: var(--sr-navy) !important; }

/* Responsive header logo — scales down on smaller screens instead of a fixed pixel height */
.sr-brand-logo { display: flex; align-items: center; padding: 0; }
.sr-brand-logo img {
	height: 56px;
	width: auto;
	max-width: 100%;
	object-fit: contain;
}
@media (max-width: 991.98px) {
	.sr-brand-logo img { height: 44px; }
}
@media (max-width: 400px) {
	.sr-brand-logo img { height: 38px; }
}
.navbar-brand span { color: var(--sr-blue); }

.sr-nav {
	flex-wrap: nowrap;
}
.sr-nav .nav-link {
	color: var(--sr-navy);
	font-weight: 600;
	font-size: 0.88rem;
	padding: 0.75rem 0.6rem !important;
	white-space: nowrap;
	border-radius: 8px;
	transition: color 0.2s ease, background 0.2s ease;
}
@media (min-width: 992px) and (max-width: 1300px) {
	.sr-nav .nav-link { padding: 0.75rem 0.4rem !important; font-size: 0.82rem; }
}
.sr-nav .nav-link:hover,
.sr-nav .nav-link.active { color: var(--sr-blue); background: rgba(22,59,115,0.06); }
.sr-nav-cta {
	background: linear-gradient(135deg, var(--sr-crimson-light), var(--sr-crimson));
	color: #fff !important;
	padding: 0.6rem 1.25rem !important;
	border-radius: var(--sr-radius-btn);
	font-weight: 600;
	margin-left: 0.5rem;
	box-shadow: 0 4px 14px rgba(139,30,59,0.35);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.sr-nav-cta:hover {
	color: #fff !important;
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(139,30,59,0.45);
	background: linear-gradient(135deg, var(--sr-crimson), var(--sr-crimson-light));
}
.sr-nav .dropdown-menu {
	background: #fff;
	border: 1px solid rgba(11,31,58,0.08);
	box-shadow: var(--sr-shadow);
	border-radius: var(--sr-radius-btn);
}
.sr-nav .dropdown-item { color: var(--sr-navy); }
.sr-nav .dropdown-item:hover,
.sr-nav .dropdown-item:focus { background: rgba(22,59,115,0.08); color: var(--sr-blue); }

/* Third-level nested dropdown (category -> product), opens to the side on hover */
.dropdown-submenu { position: relative; }
.dropdown-submenu > .dropdown-menu {
	top: 0;
	left: 100%;
	margin-top: -1px;
	display: none;
}
@media (min-width: 992px) {
	.dropdown-submenu:hover > .dropdown-menu { display: block; }
}
.dropdown-submenu.show > .dropdown-menu { display: block; }
.dropdown-submenu > .dropdown-toggle::after {
	transform: rotate(-90deg);
	float: right;
	margin-top: 6px;
}

/* Scrolling compliance ticker beneath the hero */
.sr-ticker {
	background: var(--sr-blue);
	color: #fff;
	font-size: 0.8rem;
	padding: 6px 0;
	overflow: hidden;
	white-space: nowrap;
}
.sr-ticker span {
	display: inline-block;
	padding-left: 100%;
	/* Speed set in Admin -> Settings -> Marquee Speed; falls back to 28s if unset */
	animation: sr-ticker-scroll var(--sr-ticker-speed, 28s) linear infinite;
}
.sr-ticker:hover span {
	animation-play-state: paused;
}

/* ---------- E-KYC page ---------- */
.sr-ekyc-page .sr-card { height: auto; }
.sr-payment-page .sr-card { height: auto; }

.sr-plan-choice { cursor: pointer; transition: border-color 0.15s ease, background 0.15s ease; }
.sr-plan-choice:hover { border-color: var(--sr-blue-light) !important; }
.sr-plan-choice:has(input:checked) { border-color: var(--sr-blue) !important; background: rgba(22,59,115,0.05); }

.sr-ekyc-terms-title {
	color: var(--sr-blue);
	font-weight: 700;
	margin-bottom: 1rem;
	display: flex;
	align-items: center;
	gap: 8px;
}
.sr-ekyc-terms-body {
	max-height: 340px;
	overflow-y: auto;
	padding-right: 8px;
	font-size: 0.92rem;
	color: #45526b;
	line-height: 1.7;
}
.sr-ekyc-terms-body ul { padding-left: 1.2rem; }
.sr-ekyc-terms-body li { margin-bottom: 0.6rem; }
.sr-ekyc-terms-body::-webkit-scrollbar { width: 6px; }
.sr-ekyc-terms-body::-webkit-scrollbar-thumb { background: rgba(11,31,58,0.2); border-radius: 10px; }

.sr-ekyc-section-title {
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--sr-blue);
	border-bottom: 2px solid rgba(22,59,115,0.12);
	padding-bottom: 8px;
	margin-bottom: 1rem;
}

.sr-ekyc-upload { display: block; cursor: pointer; margin-bottom: 0; }
.sr-ekyc-upload input[type=file] {
	position: absolute;
	width: 1px; height: 1px;
	opacity: 0;
	overflow: hidden;
}
.sr-ekyc-upload-box {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	border: 2px dashed rgba(22,59,115,0.25);
	border-radius: var(--sr-radius-btn);
	padding: 20px 12px;
	height: 100%;
	min-height: 130px;
	transition: all 0.2s ease;
	background: rgba(22,59,115,0.02);
}
.sr-ekyc-upload:hover .sr-ekyc-upload-box,
.sr-ekyc-upload input:focus + .sr-ekyc-upload-box {
	border-color: var(--sr-blue-light);
	background: rgba(22,59,115,0.06);
}
.sr-ekyc-upload-box i { font-size: 1.6rem; color: var(--sr-blue-light); margin-bottom: 6px; }
.sr-ekyc-upload-label { font-weight: 600; font-size: 0.9rem; color: var(--sr-navy); }
.sr-ekyc-upload-filename {
	font-size: 0.78rem;
	color: #8a93a6;
	margin-top: 4px;
	word-break: break-all;
}

.sr-ekyc-submit { padding: 12px; font-size: 1.02rem; }

@media (max-width: 576px) {
	.sr-ekyc-terms-body { max-height: 260px; }
	.sr-ekyc-upload-box { min-height: 100px; padding: 14px 10px; }
}

/* Investor Complaints Data table + "View More" split pill button */
.sr-complaints-table {
	width: 100%;
	border-collapse: collapse;
	text-align: center;
}
.sr-complaints-table th, .sr-complaints-table td {
	border: 1px solid #dee2e6;
	padding: 14px 10px;
	vertical-align: middle;
}
.sr-complaints-table thead th {
	background: #f0f0f0;
	font-weight: 700;
}
.sr-complaints-table tfoot td {
	background: #f0f0f0;
	font-weight: 700;
}
.sr-viewmore-btn {
	display: inline-flex;
	align-items: center;
	border-radius: 50px;
	overflow: hidden;
	text-decoration: none;
	font-weight: 600;
	color: #fff;
}
.sr-viewmore-btn .sr-vm-label {
	background: var(--sr-blue-light);
	padding: 14px 32px;
}
.sr-viewmore-btn .sr-vm-icon {
	background: var(--sr-blue-dark);
	padding: 14px 22px;
	display: flex;
	align-items: center;
}
.sr-viewmore-btn:hover {
	color: #fff;
	opacity: 0.92;
}
@keyframes sr-ticker-scroll {
	0% { transform: translateX(0); }
	100% { transform: translateX(-100%); }
}

.btn-gold, .btn-orange {
	background: linear-gradient(135deg, var(--sr-blue-light), var(--sr-blue));
	border-color: var(--sr-blue);
	color: #fff;
	font-weight: 600;
	border-radius: var(--sr-radius-btn);
	transition: all 0.15s ease;
}
.btn-gold:hover, .btn-orange:hover {
	background: linear-gradient(135deg, var(--sr-blue), var(--sr-blue-light)); border-color: var(--sr-blue); color: #fff;
	box-shadow: 0 6px 0 var(--sr-blue-dark), 0 10px 26px rgba(59,111,212,0.45);
	transform: translateY(-2px);
}
.btn-gold:active, .btn-orange:active {
	box-shadow: 0 1px 0 var(--sr-blue-dark);
	transform: translateY(3px);
}

/* Primary CTA buttons — crimson accent, matches the Numus logo mark */
.btn-crimson, .btn-accent {
	background: linear-gradient(135deg, var(--sr-crimson-light), var(--sr-crimson));
	border-color: var(--sr-crimson);
	color: #fff;
	font-weight: 600;
	border-radius: var(--sr-radius-btn);
	transition: all 0.15s ease;
}
.btn-crimson:hover, .btn-accent:hover {
	background: linear-gradient(135deg, var(--sr-crimson), var(--sr-crimson-light)); border-color: var(--sr-crimson); color: #fff;
	box-shadow: 0 6px 0 var(--sr-crimson-dark), 0 10px 26px rgba(139,30,59,0.4);
	transform: translateY(-2px);
}
.btn-crimson:active, .btn-accent:active {
	box-shadow: 0 1px 0 var(--sr-crimson-dark);
	transform: translateY(3px);
}

.btn-navy, .btn-blue {
	background: linear-gradient(135deg, var(--sr-blue), var(--sr-navy));
	border-color: var(--sr-navy);
	color: #fff;
	font-weight: 600;
	border-radius: var(--sr-radius-btn);
	box-shadow: 0 4px 0 var(--sr-blue-dark), 0 6px 14px rgba(11,31,58,0.3);
	transition: all 0.15s ease;
}
.btn-navy:hover, .btn-blue:hover {
	background: linear-gradient(135deg, var(--sr-navy), var(--sr-blue)); border-color: var(--sr-navy); color: #fff;
	box-shadow: 0 6px 0 var(--sr-blue-dark), 0 10px 22px rgba(11,31,58,0.4);
	transform: translateY(-2px);
}
.btn-navy:active, .btn-blue:active {
	box-shadow: 0 1px 0 var(--sr-blue-dark);
	transform: translateY(3px);
}
.btn-outline-secondary, .btn-outline-light { border-radius: var(--sr-radius-btn); }

/* ---------- Hero Slider ---------- */
.sr-hero { position: relative; overflow: hidden; }
.sr-hero .carousel-item {
	min-height: 520px;
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
	background-color: var(--sr-navy);
	position: relative;
}
.sr-hero .carousel-item::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(11,31,58,0.92) 0%, rgba(11,31,58,0.6) 55%, rgba(11,31,58,0.3) 100%);
}
/* Slow-drifting mesh gradient for a modern, alive background */
.sr-hero .bg-navy-gradient::after {
	content: '';
	position: absolute;
	inset: -20%;
	background:
		radial-gradient(circle at 20% 30%, rgba(139,30,59,0.35), transparent 40%),
		radial-gradient(circle at 80% 70%, rgba(34,211,238,0.18), transparent 45%),
		radial-gradient(circle at 60% 20%, rgba(59,111,212,0.25), transparent 40%);
	animation: sr-mesh-drift 16s ease-in-out infinite alternate;
	z-index: 0;
	pointer-events: none;
}
@keyframes sr-mesh-drift {
	0% { transform: translate(0, 0) scale(1); }
	100% { transform: translate(-4%, 3%) scale(1.08); }
}
.sr-hero .carousel-caption-custom {
	max-width: 620px;
	color: #fff;
	padding: 1.5rem 0;
	position: relative;
	z-index: 1;
}
.sr-hero h1 { font-weight: 700; font-size: 2.75rem; line-height: 1.25; margin-bottom: 0.75rem; }
.sr-hero .lead { font-size: 1.1rem; margin-bottom: 0.75rem; color: #dfe6f5; }

/* Floating decorative elements */
.sr-hero .floating-shape {
	position: absolute;
	border-radius: 50%;
	background: rgba(255,255,255,0.08);
	animation: sr-float 6s ease-in-out infinite;
	z-index: 0;
}
.sr-hero .floating-shape.s1 { width: 140px; height: 140px; top: 12%; right: 12%; animation-delay: 0s; }
.sr-hero .floating-shape.s2 { width: 90px; height: 90px; bottom: 15%; right: 25%; animation-delay: 1.5s; }
.sr-hero .floating-shape.s3 { width: 60px; height: 60px; top: 45%; right: 6%; animation-delay: 3s; }
@keyframes sr-float {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-18px); }
}

/* Mouse-parallax tilt on the hero illustration */
.sr-hero-tilt {
	transform-style: preserve-3d;
	perspective: 1000px;
	position: relative;
}
.sr-hero-tilt img {
	transition: transform 0.15s ease-out;
	will-change: transform;
	filter: drop-shadow(0 25px 40px rgba(0,0,0,0.35));
	animation: sr-hero-pop 0.9s cubic-bezier(.2,.8,.2,1) both;
}
@keyframes sr-hero-pop {
	from { opacity: 0; transform: scale(0.85) translateY(30px); }
	to { opacity: 1; transform: scale(1) translateY(0); }
}
/* Glow ring pulsing behind the hero illustration */
.sr-hero-tilt::before {
	content: '';
	position: absolute;
	inset: 8%;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(139,30,59,0.35), transparent 70%);
	filter: blur(30px);
	animation: sr-glow-pulse 4s ease-in-out infinite;
	z-index: -1;
}
@keyframes sr-glow-pulse {
	0%, 100% { opacity: 0.5; transform: scale(1); }
	50% { opacity: 0.9; transform: scale(1.12); }
}

/* Floating mini stat badges over the hero illustration */
.sr-float-badge {
	position: absolute;
	background: rgba(255,255,255,0.97);
	border-radius: 14px;
	box-shadow: 0 15px 35px rgba(11,31,58,0.35);
	padding: 10px 16px;
	display: flex;
	align-items: center;
	gap: 10px;
	z-index: 2;
	animation: sr-float 5s ease-in-out infinite;
}
.sr-float-badge .badge-icon {
	width: 34px; height: 34px;
	border-radius: 10px;
	display: flex; align-items: center; justify-content: center;
	color: #fff;
	font-size: 1rem;
	flex-shrink: 0;
}
.sr-float-badge .badge-text { line-height: 1.15; }
.sr-float-badge .badge-text strong { display: block; font-size: 0.82rem; color: var(--sr-navy); }
.sr-float-badge .badge-text span { font-size: 0.72rem; color: var(--sr-text-muted); }
.sr-float-badge.badge-top { top: 6%; left: -4%; animation-delay: 0.3s; }
.sr-float-badge.badge-bottom { bottom: 8%; right: -6%; animation-delay: 1.6s; }
@media (max-width: 991.98px) {
	.sr-float-badge { display: none; }
}

/* Trust indicators strip inside hero */
.sr-trust-strip {
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem;
	margin-top: 1.5rem;
	position: relative;
	z-index: 1;
}
.sr-trust-strip .item { display: flex; align-items: center; gap: 0.5rem; color: #dfe6f5; font-size: 0.9rem; }
.sr-trust-strip .item i { color: #fff; font-size: 1.1rem; }

/* ---------- Section spacing ---------- */
.sr-section { padding: var(--sr-section-pad) 0; }
@media (max-width: 767.98px) {
	.sr-section { padding: var(--sr-section-pad-mobile) 0; }
}
.sr-section-cream { background: var(--sr-bg); }
.sr-section-title { margin-bottom: 40px; }
.sr-section-title .eyebrow {
	color: var(--sr-blue);
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	font-size: 0.78rem;
	margin-bottom: 6px;
}
.sr-section-title h2 {
	font-weight: 700; color: var(--sr-navy); font-size: 2rem;
	position: relative;
	display: inline-block;
	padding-bottom: 14px;
}
.sr-section-title h2::after {
	content: '';
	position: absolute;
	left: 50%; bottom: 0;
	transform: translateX(-50%);
	width: 56px; height: 4px;
	border-radius: 4px;
	background: linear-gradient(90deg, var(--sr-crimson), var(--sr-blue-light));
	transition: width .4s ease;
}
.sr-section-title.fade-up.is-visible h2::after,
.sr-section-title:not(.fade-up) h2::after { width: 56px; }

/* Process / Blueprint step connector line with pulsing node */
.sr-step-node {
	position: relative;
}
.sr-step-node::before {
	content: '';
	position: absolute;
	top: 38px; left: 50%;
	width: 100%; height: 2px;
	background: repeating-linear-gradient(90deg, rgba(11,31,58,0.15) 0 8px, transparent 8px 16px);
	z-index: 0;
}
.sr-step-node:last-child::before { display: none; }
@media (max-width: 991.98px) { .sr-step-node::before { display: none; } }
.sr-step-node .icon-wrap { position: relative; z-index: 1; }
.sr-step-node .badge {
	animation: sr-badge-pulse 2.4s ease-in-out infinite;
}
@keyframes sr-badge-pulse {
	0%, 100% { box-shadow: 0 0 0 0 rgba(139,30,59,0.4); }
	50% { box-shadow: 0 0 0 6px rgba(139,30,59,0); }
}

/* Round ribbon/pill section badges - each section gets its own accent color */
.sr-ribbon {
	display: inline-block;
	padding: 6px 18px;
	border-radius: 30px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	font-size: 0.72rem;
	color: #fff;
	margin-bottom: 12px;
	box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}
.sr-ribbon-blue    { background: linear-gradient(135deg, var(--sr-blue-light), var(--sr-blue)); }
.sr-ribbon-cyan    { background: linear-gradient(135deg, var(--sr-cyan), #0e9bb5); color: #04303a; }
.sr-ribbon-navy    { background: linear-gradient(135deg, var(--sr-blue), var(--sr-navy)); }
.sr-ribbon-green   { background: linear-gradient(135deg, #4ADE80, #16a34a); }
.sr-ribbon-purple  { background: linear-gradient(135deg, #A78BFA, #7C3AED); }
.sr-ribbon-amber   { background: linear-gradient(135deg, #FBBF24, #D97706); }
.sr-ribbon-pink    { background: linear-gradient(135deg, #F472B6, #DB2777); }
.sr-ribbon-teal    { background: linear-gradient(135deg, #2DD4BF, #0D9488); }

/* ---------- Cards ---------- */
.sr-card {
	background: var(--sr-white);
	border-radius: var(--sr-radius);
	box-shadow: var(--sr-shadow);
	border: 1px solid rgba(11,31,58,0.05);
	transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
	transform-style: preserve-3d;
	will-change: transform;
	height: 100%;
	position: relative;
	overflow: hidden;
}
.sr-card::after {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: inherit;
	padding: 1.5px;
	background: linear-gradient(135deg, var(--sr-crimson), var(--sr-blue-light));
	-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	opacity: 0;
	transition: opacity .35s ease;
	pointer-events: none;
}
.sr-card:hover {
	box-shadow: 0 30px 60px rgba(11,31,58,0.22);
}
.sr-card:hover::after { opacity: 1; }
.sr-card .icon-wrap {
	width: 60px; height: 60px;
	border-radius: var(--sr-radius-btn);
	background: linear-gradient(145deg, #eef2fa, #dde5f3);
	color: var(--sr-blue);
	display: flex; align-items: center; justify-content: center;
	font-size: 1.6rem;
	box-shadow: -4px -4px 10px rgba(255,255,255,0.8), 4px 4px 12px rgba(11,31,58,0.15);
	transition: transform .4s cubic-bezier(.34,1.56,.64,1), background .35s ease, color .35s ease;
}
.sr-card:hover .icon-wrap {
	transform: scale(1.12) rotate(-8deg) translateZ(30px);
	background: linear-gradient(145deg, var(--sr-crimson-light), var(--sr-crimson));
	color: #fff;
}

/* Feature highlight cards (Why Choose Us) */
.sr-feature-card {
	background: rgba(255,255,255,0.7);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255,255,255,0.5);
	border-radius: var(--sr-radius);
	box-shadow: var(--sr-shadow);
	padding: 1.75rem 1rem;
	text-align: center;
	transition: transform .35s ease, box-shadow .35s ease;
	transform-style: preserve-3d;
	will-change: transform;
}
.sr-feature-card:hover { box-shadow: 0 30px 60px rgba(11,31,58,0.22); }
.sr-feature-card .icon-wrap {
	width: 60px; height: 60px;
	border-radius: var(--sr-radius-btn);
	background: linear-gradient(145deg, #1c4a8f, var(--sr-blue));
	color: #fff;
	display: flex; align-items: center; justify-content: center;
	font-size: 1.6rem;
	margin: 0 auto 14px;
	box-shadow: 0 8px 16px rgba(22,59,115,0.4), inset 0 1px 0 rgba(255,255,255,0.25);
}
.sr-feature-card h6 { font-weight: 700; color: var(--sr-navy); margin-bottom: 6px; font-size: 1rem; }
.sr-feature-card p { font-size: 0.85rem; }

/* Market feed / RSS-style cards */
.sr-feed-card {
	background: #fff;
	border-radius: var(--sr-radius);
	box-shadow: var(--sr-shadow);
	overflow: hidden;
	height: 100%;
	transition: transform .35s ease, box-shadow .35s ease;
	transform-style: preserve-3d;
	will-change: transform;
}
.sr-feed-card:hover { box-shadow: 0 30px 60px rgba(11,31,58,0.22); }
.sr-feed-card .feed-header {
	background: var(--sr-navy);
	color: #fff;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	text-align: center;
	padding: 10px;
	font-size: 0.8rem;
}
.sr-feed-card .feed-body { padding: 1.1rem 1.25rem; font-size: 0.9rem; }
.sr-feed-card li { border-bottom: 1px solid #f0f1f5; }
.sr-feed-card li:last-child { border-bottom: none; }

/* Mid-page "Get In Touch" band */
.sr-touch-band {
	background: var(--sr-navy);
	color: #fff;
	padding: 1.25rem 0;
}
.sr-touch-band h4 { font-weight: 700; margin-bottom: 0; font-size: 1.4rem; }
.sr-touch-band .btn-outline-light {
	border-radius: 30px;
	font-weight: 600;
	font-size: 0.85rem;
	padding: 0.4rem 1rem;
}

/* ---------- Counters ---------- */
.sr-counter {
	text-align: center;
	color: #fff;
}
.sr-counter .num { font-size: 2.6rem; font-weight: 700; color: #fff; transition: text-shadow .3s ease; }
.sr-counter .label { color: #c3cee6; text-transform: uppercase; font-size: 0.8rem; letter-spacing: 1px; }
.sr-counter-card {
	background: rgba(255,255,255,0.06);
	border: 1px solid rgba(255,255,255,0.12);
	border-radius: var(--sr-radius);
	padding: 1.75rem 1rem;
	box-shadow: 0 12px 30px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.15);
	transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.sr-counter-card:hover {
	transform: translateY(-6px) scale(1.03);
	border-color: rgba(139,30,59,0.5);
	box-shadow: 0 20px 40px rgba(0,0,0,0.35), 0 0 30px rgba(139,30,59,0.25), inset 0 1px 0 rgba(255,255,255,0.2);
}

/* Reusable 3D tilt-on-hover utility for standalone images (About section, etc.) */
.tilt-img {
	transition: transform 0.3s ease;
	will-change: transform;
	filter: drop-shadow(0 20px 30px rgba(11,31,58,0.25));
}
.tilt-img:hover {
	transform: perspective(900px) rotateY(-6deg) rotateX(3deg) scale(1.02);
}

/* Angled section divider for layered depth between stacked sections */
.sr-angle-divider {
	position: relative;
	overflow: hidden;
}
.sr-angle-divider::before {
	content: '';
	position: absolute;
	top: -1px; left: 0; right: 0;
	height: 60px;
	background: inherit;
	transform: skewY(-2deg);
	transform-origin: top left;
	z-index: 0;
}

/* ---------- Plans / Pricing ---------- */
.sr-plan {
	border: 1px solid #e7ebf2;
	border-radius: var(--sr-radius);
	background: #fff;
	padding: 2rem;
	text-align: center;
	position: relative;
	height: 100%;
	transition: transform .35s ease, box-shadow .35s ease;
	transform-style: preserve-3d;
	will-change: transform;
}
.sr-plan:hover { box-shadow: 0 30px 60px rgba(11,31,58,0.22); }
.sr-plan.popular {
	border-color: var(--sr-blue);
	box-shadow: var(--sr-shadow);
}
.sr-plan .badge-popular {
	position: absolute;
	top: -14px; left: 50%;
	transform: translateX(-50%);
	background: var(--sr-blue);
	color: #fff;
	font-weight: 700;
	padding: 4px 16px;
	border-radius: 20px;
	font-size: 0.75rem;
}
.sr-plan .price { font-size: 2.2rem; font-weight: 700; color: var(--sr-navy); }

/* ---------- Testimonials ---------- */
.sr-testimonial {
	background: #fff;
	border-radius: var(--sr-radius);
	padding: 1.75rem;
	box-shadow: var(--sr-shadow);
	height: 100%;
	text-align: center;
	transition: transform .35s ease, box-shadow .35s ease;
	transform-style: preserve-3d;
	will-change: transform;
}
.sr-testimonial:hover { box-shadow: 0 30px 60px rgba(11,31,58,0.22); }
.sr-testimonial p.fst-italic { font-size: 0.9rem; color: #4a5568; }
.sr-testimonial .stars { color: var(--sr-blue); font-size: 0.85rem; }
.sr-testimonial .avatar {
	width: 50px; height: 50px;
	border-radius: 50%;
	background: var(--sr-bg);
	color: var(--sr-blue);
	display: flex; align-items: center; justify-content: center;
	font-size: 1.4rem;
	margin: 0 auto 10px;
}

/* ---------- App download ---------- */
.sr-app-phone {
	max-width: 260px;
	margin: 0 auto;
	border: 10px solid var(--sr-navy);
	border-radius: 28px;
	overflow: hidden;
	box-shadow: var(--sr-shadow-lg);
}

/* ---------- Footer ---------- */
/* Colors/font set in Admin -> Settings -> Footer Design */
.sr-footer {
	position: relative;
	background: var(--sr-footer-bg, var(--sr-navy));
	color: var(--sr-footer-text, #c3cee6);
	font-size: 0.9rem;
	font-family: var(--sr-footer-font, inherit), sans-serif;
	overflow: hidden;
}
/* Wave divider separating page content from the footer */
.sr-footer-wave {
	position: absolute;
	top: -1px; left: 0; width: 100%;
	line-height: 0;
	transform: translateY(-99%);
}
.sr-footer-wave svg { width: 100%; height: 60px; display: block; }
.sr-footer-wave path { fill: var(--sr-footer-bg, var(--sr-navy)); }
/* Subtle dot-grid texture for depth */
.sr-footer::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
	background-size: 22px 22px;
	pointer-events: none;
}
.sr-footer::after {
	content: '';
	position: absolute;
	width: 380px; height: 380px;
	border-radius: 50%;
	background: var(--sr-crimson);
	opacity: 0.12;
	filter: blur(80px);
	top: -120px; right: -80px;
	pointer-events: none;
}
.sr-footer > .container { position: relative; z-index: 1; }
.sr-footer h5 {
	color: var(--sr-footer-heading, #fff); font-weight: 700; font-size: 1.05rem; margin-bottom: 1.1rem;
	position: relative; padding-bottom: 10px;
}
.sr-footer h5::after {
	content: '';
	position: absolute;
	left: 0; bottom: 0;
	width: 34px; height: 3px;
	border-radius: 3px;
	background: linear-gradient(90deg, var(--sr-crimson), var(--sr-crimson-light));
}
.sr-footer a { color: var(--sr-footer-link, #c3cee6); transition: color 0.2s ease, padding-left 0.2s ease; }
.sr-footer a:hover { color: var(--sr-footer-heading, #fff); padding-left: 4px; }
.sr-footer ul li { margin-bottom: 0.6rem; }
.sr-footer-bottom {
	position: relative;
	z-index: 1;
	background: color-mix(in srgb, var(--sr-footer-bg, var(--sr-blue-dark)) 80%, black);
	color: var(--sr-footer-text, #a6b3d1);
	font-size: 0.82rem;
}
.sr-footer-logo img { max-height: 70px; width: auto; max-width: 100%; }

/* Circular social icon buttons */
.sr-footer .d-flex.gap-3 a {
	width: 38px; height: 38px;
	display: inline-flex; align-items: center; justify-content: center;
	border-radius: 50%;
	background: rgba(255,255,255,0.08);
	transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}
.sr-footer .d-flex.gap-3 a:hover {
	background: linear-gradient(135deg, var(--sr-crimson-light), var(--sr-crimson));
	color: #fff;
	transform: translateY(-3px) rotate(6deg);
	padding-left: 0;
}

/* ---------- Back to top ---------- */
#sr-back-to-top {
	position: fixed;
	right: 20px; bottom: 90px; /* stacked above the floating call button so they don't overlap */
	width: 44px; height: 44px;
	border-radius: 50%;
	background: var(--sr-blue);
	color: #fff;
	display: none;
	align-items: center; justify-content: center;
	box-shadow: var(--sr-shadow);
	z-index: 1040;
	transition: all 0.3s ease;
}
#sr-back-to-top:hover { background: var(--sr-navy); transform: translateY(-4px); }

/* Floating WhatsApp (bottom-left) + Call (bottom-right) buttons */
.sr-float-btn {
	position: fixed;
	bottom: 20px;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 1.5rem;
	box-shadow: 0 4px 14px rgba(0,0,0,0.25);
	z-index: 1041;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.sr-float-btn:hover { color: #fff; transform: translateY(-3px); box-shadow: 0 8px 20px rgba(0,0,0,0.3); }
.sr-float-whatsapp { left: 20px; background: #25D366; }
.sr-float-call { right: 20px; background: #E53935; animation: sr-float-call-pulse 2s infinite; }

@keyframes sr-float-call-pulse {
	0%   { box-shadow: 0 4px 14px rgba(229,57,53,0.35), 0 0 0 0 rgba(229,57,53,0.45); }
	70%  { box-shadow: 0 4px 14px rgba(229,57,53,0.35), 0 0 0 12px rgba(229,57,53,0); }
	100% { box-shadow: 0 4px 14px rgba(229,57,53,0.35), 0 0 0 0 rgba(229,57,53,0); }
}

@media (max-width: 576px) {
	.sr-float-btn { width: 48px; height: 48px; font-size: 1.3rem; bottom: 16px; }
	.sr-float-whatsapp { left: 16px; }
	.sr-float-call { right: 16px; }
	/* Keep back-to-top clear of the smaller call button on small screens */
	#sr-back-to-top { bottom: 76px; }
}

/* ---------- Breadcrumb banner ---------- */
.sr-breadcrumb-banner {
	background: linear-gradient(135deg, var(--sr-navy) 0%, var(--sr-blue) 100%);
	color: #fff;
	padding: 60px 0;
	position: relative;
	overflow: hidden;
}
.sr-breadcrumb-banner::before {
	content: '';
	position: absolute;
	width: 320px; height: 320px;
	border-radius: 50%;
	background: var(--sr-crimson);
	opacity: 0.18;
	filter: blur(60px);
	top: -140px; right: -60px;
	pointer-events: none;
}
.sr-breadcrumb-banner h1 {
	animation: sr-banner-in 0.6s ease both;
}
.sr-breadcrumb-banner .breadcrumb {
	animation: sr-banner-in 0.6s ease 0.1s both;
}
.sr-breadcrumb-banner .breadcrumb a { color: #d9e0f2; }
.sr-breadcrumb-banner .breadcrumb .active { color: #fff; }
@keyframes sr-banner-in {
	from { opacity: 0; transform: translateY(16px); }
	to { opacity: 1; transform: translateY(0); }
}

/* ---------- Nav link underline ---------- */
.sr-nav .nav-link {
	position: relative;
}
.sr-nav .nav-item > .nav-link::after {
	content: '';
	position: absolute;
	left: 0.6rem; right: 0.6rem; bottom: 0.35rem;
	height: 2px;
	background: var(--sr-crimson);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.25s ease;
}
.sr-nav .nav-item > .nav-link:hover::after,
.sr-nav .nav-item > .nav-link.active::after {
	transform: scaleX(1);
}

/* ---------- Button ripple ---------- */
.btn { position: relative; overflow: hidden; }
.sr-ripple {
	position: absolute;
	border-radius: 50%;
	background: rgba(255,255,255,0.55);
	transform: scale(0);
	animation: sr-ripple-anim 0.6s ease-out;
	pointer-events: none;
}
@keyframes sr-ripple-anim {
	to { transform: scale(2.5); opacity: 0; }
}

/* ---------- Fade-up stagger variants ---------- */
.fade-up.fade-up-delay-1 { transition-delay: 0.08s; }
.fade-up.fade-up-delay-2 { transition-delay: 0.16s; }
.fade-up.fade-up-delay-3 { transition-delay: 0.24s; }
.fade-up.fade-up-delay-4 { transition-delay: 0.32s; }

/* ---------- Utilities ---------- */
.sr-badge-risk-low { background: #1f9d55; }
.sr-badge-risk-medium { background: var(--sr-blue); color: #fff; }
.sr-badge-risk-high { background: #d64545; }
