﻿:root {
	--primary: #6366f1;
	--primary-dark: #4f46e5;
	--secondary: #10b981;
	--accent: #f59e0b;
	--dark: #1f2937;
	--light: #f9fafb;
	--gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	--gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
	--gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
	--shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
	--shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
	--shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
	--shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
}

* {
	padding: 0px;
	/* box-sizing: border-box; */
}

body {
	font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	background: #fff7ef;
	overflow-x: hidden;
}

.hero-section {
	padding: 4rem 0px 0rem;
	position: relative;
	overflow: hidden;
	background: #fff7ef;
}

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

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

.hero-title {
	color: rgb(65 65 65);
	font-size: 31px;
	font-weight: 500;
	margin-bottom: 6px;
	animation: 0.8s ease 0s 1 normal none running fadeInUp;
}

.hero-title span {
	background: linear-gradient(to right, rgb(55 55 141), rgb(22 22 112)) text;
	-webkit-text-fill-color: transparent;
}

.cart-float {}

.cart-btn {
	width: 55px;
	height: 55px;
	border-radius: 13%;
	background: linear-gradient(135deg, rgb(155, 144, 69) 0%, rgb(75, 75, 140) 100%);
	color: white;
	border: none;
	box-shadow: var(--shadow-xl);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	font-size: 1px;
	transition: 0.3s;
	cursor: pointer;
}

.cart-btn:hover {
	transform: scale(1.1);
	box-shadow: rgba(0, 0, 0, 0.2) 0px 25px 35px;
}

.cart-count {
	font-size: 14px;
	margin-top: 0px;
	font-weight: normal;
	float: left;
	line-height: 14px;
}

@keyframes bounce {

	0%,
	100% {
		transform: translateY(0px);
	}

	50% {
		transform: translateY(-10px);
	}
}

.separator a:hover {
	color: white !important;
}

.containeripo .ipo-section {
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	/* gap: 6px; */
}

.containeripo .ipo-text h5 {
	color: rgb(74, 73, 73);
	font-size: 44px;
	font-weight: bold;
}

.containeripo .ipo-text p {
	color: rgb(75, 75, 140);
	margin-bottom: 0px;
	font-size: 20px;
}

.containeripo .btn-custom {
	border: none;
	font-weight: normal;
	padding: 7px 8px;
	border-radius: 12px;
	color: rgb(255, 255, 255);
	transition: 0.3s;
}

.containeripo .btn-download {
	background-color: rgb(165, 142, 67);
}

.containeripo .btn-download:hover {
	background-color: rgb(145, 124, 58);
}

.containeripo .btn-help {
	background-color: rgb(33, 140, 96);
	position: relative;
}

.containeripo .btn-help:hover {
	background-color: rgb(27, 116, 79);
}

.containeripo .btn-callback {
	background-color: rgb(75, 75, 140);
}

.containeripo .btn-callback:hover {
	background-color: rgb(15, 14, 150);
}

.containeripo .call-text {
	font-size: 0.9rem;
	color: rgb(51, 51, 51);
	font-weight: 500;
	margin-bottom: 4px;
	text-align: center;
}

.containeripo {
	margin-top: 9px;
}

.ipo-page-container {
	box-shadow: rgba(31, 72, 114, 0.047) 4px 4px 24px 0px;
}

.contact-info-detail {
	position: absolute;
	top: 110%;
	left: 50%;
	transform: translateX(-50%) scale(0.9);
	background: rgb(255, 255, 255);
	border-radius: 10px;
	box-shadow: rgba(0, 0, 0, 0.15) 0px 8px 20px;
	padding: 12px 18px;
	opacity: 0;
	visibility: hidden;
	transition: 0.3s ease-in-out;
	z-index: 100;
	width: 250px;
	text-align: left;
}

.btn-help:hover .contact-info-detail {
	opacity: 1;
	visibility: visible;
	transform: translateX(-50%) scale(1);
}

.contact-info-detail p {
	margin: 6px 0px;
	font-size: 15px;
	padding: 11px 0px;
}

.contact-info-detail a {
	text-decoration: none;
	color: rgb(51, 51, 51);
}

.contact-info-detail i {
	color: rgb(199, 156, 60);
	margin-right: 8px;
	font-size: 20px;
}

.contact-info-detail a:hover {
	color: rgb(92, 99, 216);
}

.search-wrapper {
	position: relative;
	max-width: 599px;
	margin: 0px auto 5px;
	animation: 0.8s ease 0.2s 1 normal both running fadeInUp;
}

.search-box {
	background: white;
	border-radius: 12px;
	padding: 4px 11px;
	box-shadow: var(--shadow-lg);
	display: flex;
	align-items: center;
	transition: 0.3s;
	width: 100%;
	border: 1px solid rgb(204, 204, 204);
}

.search-box:focus-within {
	box-shadow: rgba(99, 102, 241, 0.2) 0px 20px 40px;
	transform: translateY(-2px);
}

.search-box input {
	border: none;
	outline: none;
	flex: 1 1 0%;
	padding: 9px 5px;
	font-size: 1rem;
}

.search-box button {
	background: var(--gradient-1);
	border: none;
	color: white;
	padding: 0.8rem 1.5rem;
	border-radius: 50px;
	cursor: pointer;
	transition: 0.3s;
}

.search-box button:hover {
	transform: scale(1.05);
}

.table-responsive {
	overflow-x: inherit;
}

.tab-pills {
	display: flex;
	gap: 0px;
	justify-content: center;
	flex-wrap: wrap;
	margin: 3px 4px 12px;
	animation: 0.8s ease 0.4s 1 normal both running fadeInUp;
	width: fit-content;
	margin: auto;
}

.tab-pill {
	/* background: none; */
	/* padding: 4px 0px; */
	/* border-radius: 13px; */
	/* cursor: pointer; */
	/* transition: 0.3s; */
	/* font-weight: 600; */
	/* margin: 0px; */
	/* box-shadow: none; */
	/* color: red; */
}

.tab-pill:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-md);
}

.tab-pill.active {
	box-shadow: none;
	border: 0px solid rgb(74, 74, 139);
	color: rgb(221, 213, 213) !important;
}

.category-tabs {
	/* display: flex; */
	/* gap: 0px; */
	/* justify-content: normal; */
	/* flex-wrap: wrap; */
	margin: auto !important;
	text-align: center;
}

.category-tab {
	padding: 3px 50px;
	border-radius: 0px;
	cursor: pointer;
	transition: 0.3s;
	font-weight: 700;
	box-shadow: var(--shadow-sm);
	position: relative;
	overflow: hidden;
	gap: 11px;
	margin: 4px;
}

.category-tab::before {
	/* content: ""; */
	/* position: absolute; */
	/* top: 0px; */
	/* left: -100%; */
	/* width: 100%; */
	/* height: 100%; */
	/* transition: left 0.3s; */
	/* z-index: -1; */
	/* color: rgb(75, 75, 140); */
	/* border-bottom: 2px solid rgb(75, 75, 140); */
}

.category-tab:hover::before,
.category-tab.active::before {
	left: 0px;
}

.category-tab:hover,
.category-tab.active {
	color: rgb(75, 75, 140);
	transform: translateY(-2px);
	box-shadow: var(--shadow-md);
}

button#Button4 {}

.filter-chips {
	display: flex;
	gap: 5px;
	flex-wrap: wrap;
	padding: 3px;
	animation: 0.5s ease 0s 1 normal none running fadeIn;
	margin-bottom: 5px;
}

.filter-chip {
	background: white;
	cursor: pointer;
	text-decoration: none;
	border: 1px solid rgb(229, 231, 235);
	color: rgb(4 5 6);
	border-radius: 10px;
	padding: 2px 7px;
	font-size: 14px;
	font-weight: 700;
	margin-right: 0px;
	transition: 0.2s;
	box-shadow: rgba(60, 64, 67, .3) 0 1px 3px 0, rgba(60, 64, 67, .15) 0 4px 8px 3px;
}

.filter-chip:hover {
	border-color: var(--primary);
	color: var(--primary);
	transform: scale(1.05);
}

.filter-chip.active {
	background: rgb(155, 144, 69);
	color: white;
}

.scheme-card {
	margin: 0px 0px 6px;
	box-shadow: 2px 2px 7px rgb(0 0 0 / .1) inset, 2px 2px 5px rgb(0 0 0 / .1);
	animation: 0.5s ease 0s 1 normal both running fadeInUp;
	background: white;
	border: 1px solid rgb(192 201 210);
	border-radius: 16px;
	padding: 0px 6px;
	transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
}

.scheme-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-xl);
	border-color: var(--primary);
}

.scheme-logo {
	width: 50px;
	height: 50px;
	box-shadow: none;
	object-fit: contain;
	border-radius: 8px;
	padding: 5px;
	margin-right: 8px;
	background: white;
	border: 1px solid rgb(240, 240, 240);
}

.scheme-name {
	text-transform: capitalize;
	text-decoration: none;
	margin: 0px;
	font-size: 0.82rem !important;
	font-weight: 700 !important;
	color: #171746 !important;
	letter-spacing: -0.01em !important;
	line-height: 1.35 !important;
	margin-bottom: 2px !important;
}

.scheme-type {
	display: inline-block;
	margin-top: -1px;
	background: rgb(231, 241, 255);
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: rgb(28 28 37);
	font-weight: 700;
	font-size: 10px;
	padding: 3px 10px;
	border-radius: 6px;
	line-height: 13px;
}

#cart-offcanvas {
	--bc-navy: #0e2249;
	--bc-navy2: #1D3461;
	--bc-gold: #C4961E;
	--bc-green: #1aaa6e;

}


#cart-offcanvas .offcanvas-header {
	background: linear-gradient(90deg, #0a1628 0%, #1D3461 100%) !important;
}

#cart-offcanvas .offcanvas-title {
	color: #e4bb4e !important;
}

#cart-offcanvas .fa-shopping-cart {
	color: #e4bb4e !important;
}

/* Each cart item card */
#cart-offcanvas .cart-item-wrapper {
	background: #ffffff;
	border: 1px solid #e4e8f0;
	border-left: 4px solid var(--bc-navy2) !important;
	border-radius: 14px !important;
	box-shadow: 0 2px 10px rgba(29, 52, 97, 0.06);
	padding: 0px 10px;
	margin-bottom: 5px;
}

#cart-offcanvas .singlescheme {
	align-items: stretch;
	gap: 3px;
}

/* Scheme name / title */
#cart-offcanvas .scheme-name {
	color: #0f1f3d !important;
	font-size: 13px !important;
	font-weight: 700 !important;
	text-transform: none;
}

#cart-offcanvas .scheme-cartname img {
	border-radius: 10px !important;
	border: 1px solid #eee;
}

/* Labels (PRINCIPAL, ACCRUED INTEREST etc) */
#cart-offcanvas .offtext,
#cart-offcanvas .xtra-small {
	letter-spacing: 0.6px;
	text-transform: uppercase;
	/* background: #f1f5f9; */
	color: #475569 !important;
	font-size: 11px;
	padding: 2px 6px;
	border-radius: 11px;
}

/* Values */
#cart-offcanvas .fw-bold.fs-6 {
	color: var(--bc-navy) !important;
	font-size: 15px !important;
	font-weight: 700 !important;
}

/* Type pill (SIP/Lumpsum etc - acting like yield/rating) */
#cart-offcanvas .fw-bold.fs-6[style*="006f56"] {
	color: var(--bc-gold) !important;
	font-size: 15px !important;
	font-weight: 800 !important;
}

#cart-offcanvas .fw-bold.fs-6[style*="0033c9"] {
	color: var(--bc-navy2) !important;
}

/* Amount input field (acts like Quantity box) */
#cart-offcanvas .iteminvamt.canvattextinput {
	background: #eaf3dd !important;
	border: 1.5px solid #a5bd81 !important;
	border-radius: 10px !important;
	color: var(--bc-navy) !important;
	font-weight: 800 !important;
	width: 100px !important;
	text-align: center;
	color: #3b6d11 !important;
	/* font-size: 20px !important; */
}

#cart-offcanvas .iteminvamt.canvattextinput:focus {
	border-color: var(--bc-gold) !important;
	box-shadow: 0 0 0 3px rgba(196, 150, 30, 0.15) !important;
}

/* Remove button */
#cart-offcanvas .delete_cart {
	background: rgba(220, 38, 38, 0.06) !important;
	border: 1px solid rgba(220, 38, 38, 0.18) !important;
	color: #dc2626 !important;
	border-radius: 10px !important;
	font-weight: 700 !important;
	font-size: 0.78rem !important;
}

#cart-offcanvas .delete_cart:hover {
	background: #dc2626 !important;
	color: #fff !important;
}

/* Separator spacing */
#cart-offcanvas .separator {
	min-width: 110px;
	background: #f8fafc;
	padding: 6px 4px !important;
	border-radius: 5px;
}

/* ===== RIGHT SIDE - TOTAL PAYMENT BOX (like image) ===== */

#cart-offcanvas .searchboxmf {
	background: var(--bc-navy) !important;
	border: none !important;
	border-radius: 16px !important;
	box-shadow: 0 8px 24px rgba(14, 34, 73, 0.25) !important;
	padding: 20px 16px !important;
	display: flex;
	flex-direction: column;
}

#cart-offcanvas .searchboxmf .fw-bold.fs-4 {
	color: rgba(255, 255, 255, 0.55) !important;
	font-size: 0.78rem !important;
	font-weight: 700 !important;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	margin-bottom: 8px !important;
}

#cart-offcanvas .cart-total-amt {
	color: var(--bc-gold) !important;
	font-size: 2.1rem !important;
	font-weight: 800 !important;
	letter-spacing: -0.02em !important;
	display: block;
	line-height: 1.2;
	margin-bottom: 4px;
}

#cart-offcanvas .cart-total-amt #cart_subtotal {
	color: var(--bc-gold) !important;
	font-size: 2.1rem !important;
	font-weight: 800 !important;
}

#cart-offcanvas .searchboxmf .mt-2.px-2 {
	margin-top: 14px !important;
	padding: 0 !important;
}

#cart-offcanvas #btn-submit {
	background: var(--bc-gold) !important;
	color: var(--bc-navy) !important;
	font-weight: 800 !important;
	border-radius: 12px !important;
	font-size: 0.95rem !important;
	letter-spacing: 0.03em;
	box-shadow: 0 4px 14px rgba(196, 150, 30, 0.35) !important;
	width: 100% !important;
	padding: 12px 0 !important;
	margin-bottom: 0 !important;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
}

#cart-offcanvas #btn-submit:hover {
	background: #d9ac35 !important;
	transform: translateY(-2px) !important;
	box-shadow: 0 8px 24px rgba(196, 150, 30, 0.45) !important;
}

#cart-offcanvas .searchboxmf .d-grid.gap-2 {
	margin-top: 10px !important;
}

#cart-offcanvas .addmorefund {
	background: rgba(255, 255, 255, 0.06) !important;
	border: none !important;
	color: rgba(255, 255, 255, 0.45) !important;
	border-radius: 12px !important;
	font-weight: 600 !important;
	padding: 12px 0 !important;
	font-size: 0.9rem !important;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
}

#cart-offcanvas .addmorefund:hover {
	background: rgba(255, 255, 255, 0.1) !important;
	color: rgba(255, 255, 255, 0.7) !important;
}

#cart-offcanvas .searchboxmf .fw-bold.fs-4 {
	color: rgba(255, 255, 255, 1) !important;
	font-size: 0.8rem !important;
	font-weight: 700 !important;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	margin-bottom: 6px !important;
}

#cart-offcanvas .cart-total-amt {
	color: var(--bc-gold) !important;
	font-size: 2rem !important;
	font-weight: 800 !important;
	letter-spacing: -0.02em !important;
	display: block;
	line-height: 1.2;
}

#cart-offcanvas .cart-total-amt #cart_subtotal {
	color: #d7a011 !important;
	font-size: 2rem !important;
	font-weight: 800 !important;
}

.separatorgreen {
	background: #EAF3DD !important;
}

#cart-offcanvas .enteramount {
	color: #4f7c28 ! Important;
}

.schemename {
	color: #0f1f3d !important;
	font-size: 13px !important;
	font-weight: 700 !important;
	text-transform: none;
}


@media (min-width: 769px) {
	#cart-offcanvas .offcanvas-body {
		display: flex !important;
		align-items: stretch;
		overflow: hidden !important;
		/* outer no scroll */
	}

	#cart-offcanvas .offcanvas-body .row {
		display: flex;
		width: 100%;
		margin: 0;
	}

	/* LEFT - scrollable */
	#cart-offcanvas .col-md-9 {
		overflow-y: auto;
		max-height: stretch;
		/* adjust as needed */
		padding-right: 12px;
		padding-bottom: 2px;
	}

	/* RIGHT - fixed, vertically centered, never scrolls */
	#cart-offcanvas .col-md-3 {
		display: flex;
		align-items: center;
		justify-content: center;
		max-height: 70vh;
		/* same as left */
	}

	#cart-offcanvas .col-md-3 .searchboxmf {
		position: relative !important;
		top: auto !important;
		transform: none !important;
		margin: 0 !important;
		width: 100%;
	}

	#cart-offcanvas .col-md-9::-webkit-scrollbar {
		width: 4px;
	}

	#cart-offcanvas .col-md-9::-webkit-scrollbar-track {
		background: transparent;
	}

	#cart-offcanvas .col-md-9::-webkit-scrollbar-thumb {
		background: rgba(196, 150, 30, 0.4);
		border-radius: 10px;
	}

	#cart-offcanvas .col-md-9::-webkit-scrollbar-thumb:hover {
		background: rgba(196, 150, 30, 0.6);
	}

	/* Firefox */
	#cart-offcanvas .col-md-9 {
		scrollbar-width: thin;
		scrollbar-color: rgba(196, 150, 30, 0.4) transparent;
	}
}

/* Mobile responsive */
@media (max-width: 768px) {
	#cart-offcanvas .cart-item-wrapper {
		padding: 8px;
	}

	#cart-offcanvas .scheme-cartname {
		width: 100%;
		margin-bottom: 8px;
	}

	#cart-offcanvas .separator {
		min-width: 48%;
		text-align: left !important;
	}
}

@media (max-width: 768px) {
	#cart-offcanvas .offcanvas-body {
		padding-bottom: 90px;
		/* space so list isn't hidden behind fixed bar */
	}

	#cart-offcanvas .row {
		display: flex;
		flex-direction: column;
	}

	/* Fix the total/continue box to bottom of screen on mobile */
	#cart-offcanvas .col-md-3 {
		position: fixed !important;
		bottom: 0;
		left: 0;
		right: 0;
		width: 100% !important;
		max-width: 100%;
		z-index: 10000;
		padding: 0 !important;
	}

	#cart-offcanvas .col-md-3 .searchboxmf {
		border-radius: 16px 16px 0 0 !important;
		position: static !important;
		margin: 0 !important;
		padding: 12px 16px !important;
	}

	/* Layout total + button side by side on mobile */
	#cart-offcanvas .searchboxmf {
		display: flex !important;
		align-items: center;
		justify-content: space-between;
		gap: 12px;
	}

	#cart-offcanvas .searchboxmf>div:first-child {
		text-align: left !important;
		flex: 1;
	}

	#cart-offcanvas .searchboxmf .fw-bold.fs-4 {
		margin-bottom: 2px !important;
	}

	#cart-offcanvas .cart-total-amt {
		font-size: 1.4rem !important;
	}

	/* Continue button beside total instead of stacked */
	#cart-offcanvas .searchboxmf .mt-2.px-2 {
		margin: 0 !important;
		padding: 0 !important;
		flex-shrink: 0;
		width: auto !important;
	}

	#cart-offcanvas #btn-submit {
		width: auto !important;
		padding: 12px 24px !important;
		margin-top: 0 !important;
	}

	/* Hide "Add More Funds" on mobile fixed bar (optional - uncomment to hide) */
	/* #cart-offcanvas .d-grid.gap-2 {
    display: none !important;
  } */
}

.metric-box {
	text-align: center;
	padding: 1px 1px;
}

.metric-label {
	text-transform: capitalize;
	letter-spacing: 0.5px;
	margin-bottom: 3px;
	font-size: 11px;
	color: rgb(40 43 48);
	font-weight: 500;
}

.metric-value {
	font-size: 15px;
	font-weight: 400;
	color: var(--dark);
}

.metric-value.positive {
	font-size: 15px;
	font-weight: 700;
	color: rgb(4 6 9);
}

.star-rating {
	color: rgb(251, 191, 36);
	font-size: 1rem;
}

.risk-badge {
	display: inline-block;
	padding: 0.4rem 1rem;
	border-radius: 20px;
	font-size: 0.8rem;
	font-weight: 600;
}

.risk-low {
	background: rgb(209, 250, 229);
	color: rgb(6, 95, 70);
}

.risk-medium {
	background: rgb(254, 243, 199);
	color: rgb(146, 64, 14);
}

.risk-high {
	background: rgb(254, 226, 226);
	color: rgb(153, 27, 27);
}

.add-to-cart {
	background: linear-gradient(135deg, #2B2B73 0%, #37378D 45%, #5A5AE6 100%);
	color: white;
	border: none;
	padding: 8px 8px;
	border-radius: 10px;
	font-weight: 600;
	cursor: pointer;
	transition: 0.3s;
	text-decoration: none;
	display: block;
	align-items: center;
	font-size: 12px;
	gap: 15px;
	text-align: center;
	opacity: 1;
	max-width: fit-content;
}

.add-to-cart:hover {
	transform: scale(1.05);
	box-shadow: var(--shadow-lg);
}

.calculator-section {
	background: white;
	border-radius: 32px;
	padding: 2.5rem;
	box-shadow: var(--shadow-lg);
	margin: 2rem 0px;
}

.calc-toggle {
	display: flex;
	gap: 0px;
	background: rgb(243, 244, 246);
	padding: 0.5rem;
	border-radius: 50px;
	margin-bottom: 2rem;
}

.calc-toggle-btn {
	flex: 1 1 0%;
	background: transparent;
	border: none;
	padding: 0.8rem;
	border-radius: 50px;
	cursor: pointer;
	font-weight: 600;
	transition: 0.3s;
}

.calc-toggle-btn.active {
	background: white;
	box-shadow: var(--shadow-sm);
}

.range-input {
	width: 100%;
	margin: 1rem 0px;
}

input[type="range"] {
	width: 100%;
	height: 8px;
	border-radius: 5px;
	background: linear-gradient(to right, var(--primary) 0%, var(--primary) 50%, #e5e7eb 50%, #e5e7eb 100%);
	outline: none;
	appearance: none;
}

input[type="range"]::-webkit-slider-thumb {
	appearance: none;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: var(--primary);
	cursor: pointer;
	box-shadow: var(--shadow-md);
	transition: 0.3s;
}

input[type="range"]::-webkit-slider-thumb:hover {
	transform: scale(1.2);
	box-shadow: var(--shadow-lg);
}

.number-input {
	width: 120px;
	padding: 0.8rem;
	border: 2px solid rgb(229, 231, 235);
	border-radius: 12px;
	font-weight: 600;
	font-size: 1.1rem;
	text-align: center;
	background: rgb(249, 250, 251);
}

.chart-container {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 2rem;
	flex-wrap: wrap;
	padding: 2rem;
	background: linear-gradient(135deg, rgba(102, 126, 234, 0.082) 0%, rgba(118, 75, 162, 0.082) 100%);
	border-radius: 24px;
}

.donut-chart {
	width: 200px;
	height: 200px;
}

.legend-item {
	display: flex;
	align-items: center;
	gap: 0.8rem;
	margin: 0.8rem 0px;
}

.legend-color {
	width: 20px;
	height: 20px;
	border-radius: 6px;
}

.info-section {
	padding: 5rem 0px;
	animation: 0.8s ease 0s 1 normal none running fadeInUp;
}

.info-card {
	background: white;
	border-radius: 24px;
	padding: 2rem;
	box-shadow: var(--shadow-md);
	transition: 0.3s;
	height: 100%;
}

.info-card:hover {
	transform: translateY(-10px);
	box-shadow: var(--shadow-xl);
}

.info-icon {
	width: 80px;
	height: 80px;
	background: var(--gradient-3);
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	color: white;
	margin-bottom: 1.5rem;
}

@keyframes fadeIn {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@keyframes fadeInUp {
	0% {
		opacity: 0;
		transform: translateY(30px);
	}

	100% {
		opacity: 1;
		transform: translateY(0px);
	}
}

@media (max-width: 768px) {
	.hero-title {
		font-size: 2rem;
	}

	.scheme-card {
		flex-wrap: wrap;
		justify-content: center;
		padding: 8px 0px !important;
	}

	.metric-box {
		padding: 0.5rem;
	}

	.cart-float {
		bottom: 1rem;
		right: 1rem;
	}
}

.call-section {
	position: relative;
	top: -75px;
	left: 1rem;
	z-index: 999;
	animation: 0.8s ease 0s 1 normal none running fadeInLeft;
	width: fit-content;
}

@keyframes fadeInLeft {
	0% {
		opacity: 0;
		transform: translateX(-30px);
	}

	100% {
		opacity: 1;
		transform: translateX(0px);
	}
}

.call-btn {
	background: white;
	padding: 1rem 1.5rem;
	border-radius: 20px;
	box-shadow: var(--shadow-lg);
	display: flex;
	align-items: center;
	gap: 1rem;
	text-decoration: none;
	transition: 0.3s;
}

.call-btn:hover {
	transform: translateX(5px);
	box-shadow: var(--shadow-xl);
}

.call-icon {
	width: 50px;
	height: 50px;
	background: var(--gradient-2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 1.5rem;
	animation: 2s ease 0s infinite normal none running pulse;
}

@keyframes pulse {

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

	50% {
		transform: scale(1.1);
	}
}

.show-more-btn {
	margin-top: 0px;
	background: linear-gradient(135deg, #9b9045 0%, #58501a 100%);
	color: white;
	border: none;
	padding: 9px 13px;
	font-size: 13px;
	border-radius: 50px;
	font-weight: 600;
	cursor: pointer;
	margin: 5px;
	margin: 0px auto;
	display: block;
	width: fit-content;
	margin-bottom: 19px;
}

.show-more-btn:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow-lg);
}

.hero-section1 {
	background: linear-gradient(135deg, rgb(248, 249, 255) 0%, rgb(255, 255, 255) 100%);
	padding: 10px 0px;
	position: relative;
	overflow: hidden;
}

.lead11 {
	color: rgb(85, 85, 85);
	max-width: 800px;
	margin: 0px auto;
	line-height: 1.8;
}

.icon-box-large {
	width: 160px;
	height: 160px;
	background: rgba(155, 144, 69, 0.1);
	color: rgb(155, 144, 69);
	border-radius: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 88px;
	margin: 0px auto 20px;
	transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.info-section {
	padding: 80px 0px;
	background-color: rgb(255, 255, 255);
}

.section-title.gradient-text {
	color: rgb(75, 75, 140);
	font-weight: 800;
	position: relative;
	display: inline-block;
	margin-bottom: 25px;
}

.section-title.gradient-text::after {
	content: "";
	position: absolute;
	bottom: -10px;
	left: 0px;
	width: 50px;
	height: 4px;
	background: rgb(155, 144, 69);
	border-radius: 2px;
}

.feature-card {
	background: rgb(255, 255, 255);
	padding: 40px 25px;
	border-radius: 20px;
	box-shadow: var(--card-shadow);
	height: 100%;
	transition: 0.3s;
	position: relative;
	top: 0px;
	border: 1px solid rgb(221, 221, 221);
}

.feature-card:hover {
	top: -10px;
	border-color: rgb(155, 144, 69);
	box-shadow: rgba(155, 144, 69, 0.12) 0px 20px 40px;
}

.feature-icon {
	width: 60px;
	height: 60px;
	background: rgb(75, 75, 140);
	color: rgb(255, 255, 255);
	border-radius: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	margin-bottom: 20px;
	transition: transform 0.3s;
}

.feature-card:hover .feature-icon {
	transform: rotateY(180deg);
	background: rgb(155, 144, 69);
}

.nfo-section {
	background: rgb(75, 75, 140);
	border-radius: 30px;
	padding: 60px;
	color: rgb(255, 255, 255);
	position: relative;
	overflow: hidden;
}

.nfo-section::before {
	content: "";
	position: absolute;
	top: -50px;
	right: -50px;
	width: 200px;
	height: 200px;
	background: rgba(155, 144, 69, 0.2);
	border-radius: 50%;
}

.nfo-btn {
	background: rgb(155, 144, 69);
	color: white;
	padding: 14px 35px;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 600;
	display: inline-block;
	transition: 0.3s;
	border: 2px solid transparent;
}

.nfo-btn:hover {
	background: transparent;
	border-color: rgb(255, 255, 255);
	color: rgb(255, 255, 255);
	transform: translateX(10px);
}

.floating-icon {
	animation: 3s ease-in-out 0s infinite normal none running float;
}

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

	50% {
		transform: translateY(-15px);
	}

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

.radio-list input:checked+label {
	background: none;
}

.radio-list {
	/* background: none; */
}

.fa-shopping-cart {
	margin-top: -2px;
	font-size: 24px;
	color: #e8c04a !important;
}

.radio-list label {
	clip-path: unset;
	padding: 4px 24px;
	border-radius: 0;
	font-size: 18px;
	min-width: 120px;
	text-align: center;
	color: #fff;
	cursor: pointer;
	/* font-weight: 700; */
}

.small12 {
	font-size: 11px;
}

.radio-list .tab-pill::before {
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	margin-right: 6px;
}

.radio-list .tab-pill[value="SIP"]::before {
	content: "";
}

.radio-list .tab-pill[value="Lumpsum"]::before {
	content: "";
}

.radio-list .tab-pill[value="Calculators"]::before {
	content: "";
}

.display-4 {
	color: rgb(95, 95, 95);
	font-size: 36px;
	font-family: arial;
}

.lead1 {
	color: rgb(77, 77, 77);
}

.navmenunew a,
.navmenunew a:focus {
	text-decoration: none;
}

.added .btn_addtocart {
	filter: none;
	background: linear-gradient(135deg, #1B6F4D 0%, #218C60 45%, #38B37A 100%);
	align-items: center;
	text-align: -webkit-center;
	padding: 6px 12px;
	font-size: 15px;
}

.added .btn_addtocart:hover {
	color: rgb(255, 255, 255);
}

.offcanvas,
.offcanvas-lg,
.offcanvas-md,
.offcanvas-sm,
.offcanvas-xl,
.offcanvas-xxl {
	--bs-offcanvas-zindex: 1045;
	--bs-offcanvas-width: 400px;
	--bs-offcanvas-height: 30vh;
	--bs-offcanvas-padding-x: 1rem;
	--bs-offcanvas-padding-y: 1rem;
	--bs-offcanvas-color: var(--bs-body-color);
	--bs-offcanvas-bg: var(--bs-body-bg);
	--bs-offcanvas-border-width: var(--bs-border-width);
	--bs-offcanvas-border-color: var(--bs-border-color-translucent);
	--bs-offcanvas-box-shadow: 0 0.125rem 0.25rem rgba(var(--bs-body-color-rgb), 0.075);
	--bs-offcanvas-transition: transform 0.3s ease-in-out;
	--bs-offcanvas-title-line-height: 1.5;
}

@media (max-width: 575.98px) {
	.offcanvas-sm {
		position: fixed;
		bottom: 0px;
		z-index: var(--bs-offcanvas-zindex);
		display: flex;
		flex-direction: column;
		max-width: 100%;
		color: var(--bs-offcanvas-color);
		visibility: hidden;
		background-color: var(--bs-offcanvas-bg);
		background-clip: padding-box;
		outline: 0px;
		transition: var(--bs-offcanvas-transition);
	}
}

.offcanvas-lg .offcanvas-header {
	display: none;
}

.offcanvas-lg .offcanvas-body {
	display: flex;
	flex-grow: 0;
	padding: 0px;
	overflow-y: visible;
	background-color: transparent !important;
}

.offcanvas-xl .offcanvas-header {
	display: none;
}

.offcanvas-xl .offcanvas-body {
	display: flex;
	flex-grow: 0;
	padding: 0px;
	overflow-y: visible;
	background-color: transparent !important;
}

.offcanvas-xxl .offcanvas-header {
	display: none;
}

.offcanvas-xxl .offcanvas-body {
	display: flex;
	flex-grow: 0;
	padding: 0px;
	overflow-y: visible;
	background-color: transparent !important;
}

.offcanvas {
	position: fixed;
	bottom: 0px;
	z-index: var(--bs-offcanvas-zindex);
	display: flex;
	flex-direction: column;
	max-width: 100%;
	color: var(--bs-offcanvas-color);
	visibility: hidden;
	background-color: var(--bs-offcanvas-bg);
	background-clip: padding-box;
	outline: 0px;
	transition: var(--bs-offcanvas-transition);
	border-radius: 18px 18px 0px 0px !important;
}

.offcanvas.offcanvas-start {
	top: 0px;
	left: 0px;
	width: var(--bs-offcanvas-width);
	border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
	transform: translateX(-100%);
}

.offcanvas.offcanvas-end {
	top: 0px;
	right: 0px;
	width: var(--bs-offcanvas-width);
	border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
	transform: translateX(100%);
}

.offcanvas.offcanvas-top {
	top: 0px;
	right: 0px;
	left: 0px;
	height: var(--bs-offcanvas-height);
	max-height: 100%;
	border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
	transform: translateY(-100%);
}

.offcanvas.offcanvas-bottom {
	right: 0px;
	left: 0px;
	height: var(--bs-offcanvas-height);
	max-height: 100%;
	border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
	transform: translateY(100%);
}

.offcanvas.show:not(.hiding),
.offcanvas.showing {
	transform: none;
}

.offcanvas.hiding,
.offcanvas.show,
.offcanvas.showing {
	visibility: visible;
	/* background: rgb(255, 255, 255); */
}

.offcanvas-backdrop {
	position: fixed;
	top: 0px;
	left: 0px;
	z-index: 1040;
	width: 100vw;
	height: 100vh;
	background-color: rgb(0, 0, 0);
}

.offcanvas-backdrop.fade {
	opacity: 0;
}

.offcanvas-backdrop.show {
	opacity: 0.5;
}

.ipomrgnbtm .apply-info {
	background: linear-gradient(135deg, rgba(102, 126, 234, 0.082) 0%, rgba(118, 75, 162, 0.082) 100%);
	border-left: 0px solid rgb(102, 126, 234);
	padding: 1px 7px;
	border-radius: 4px;
	margin-top: 1px;
	margin-bottom: 1px;
	font-size: 14px;
	color: #585858;
}

.offcanvas-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: linear-gradient(90deg, #0a1628 0%, #0f3672 100%);
	padding-top: 10px;
	padding-bottom: 12px !important;
	border-radius: 18px 18px 0px 0px !important;
}

.offcanvas-header .btn-close {
	padding: calc(var(--bs-offcanvas-padding-y) * .5) calc(var(--bs-offcanvas-padding-x) * .5);
	margin-top: calc(-.5 * var(--bs-offcanvas-padding-y));
	margin-right: calc(-.5 * var(--bs-offcanvas-padding-x));
	margin-bottom: calc(-.5 * var(--bs-offcanvas-padding-y));
	color: rgb(225 184 73) !important;
}

.offcanvas-title {
	margin-bottom: 0px;
	line-height: var(--bs-offcanvas-title-line-height);
	color: #e8c04a;
	font-size: 23px;
}

.offcanvas-body {
	flex-grow: 1;
	padding: var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x);
	overflow-y: auto;
	background: #ffffff;
}

.mfloginform {
	background: white;
}

.cart-item-wrapper {
	box-shadow: rgb(235, 221, 221) 2px 2px 15px;
	border-left: 3px solid red;
	border-radius: 13px;
	padding: 0px 5px;
	margin-bottom: 0px;
	margin-top: 7px;
}

.singlescheme {
	box-shadow: none;
	display: flex;
}

.scheme-cartname {
	width: 38%;
	border-right: 1px solid rgba(0, 0, 0, .06);
}

.separator {
	min-width: 95px;
}

.delete_cart {
	font-size: 10px;
}

.offtext {
	color: rgb(50 50 50) !important;
	font-size: 13px;
}

.separator::before {
	width: 0px !important;
}

.canvattextinput {
	border-color: rgb(151, 139, 50);
	width: 90%;
	border-radius: 8px !important;
}

.searchboxmf {
	box-shadow: rgb(233, 233, 233) 2px 2px 12px !important;
	margin-top: 10px;
}

.cart-item-wrapper {
	transition: 0.3s;
}

.cart-item-wrapper:hover {
	transform: translateY(-2px);
}

.btn-quick-amount {
	font-size: 0.7rem;
	padding: 0.15rem 0.5rem;
}

.btn-quick-amount:hover {
	background-color: var(--bs-primary);
	color: white;
}

.form-control:focus {
	box-shadow: 0 0 0 0.25rem rgba(var(--bs-primary-rgb), 0.1);
	border-color: var(--bs-primary);
}

.pre-inr::before {
	content: "₹";
}

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

.shadow-sm {
	box-shadow: rgba(0, 0, 0, 0.075) 0px 0.125rem 0.25rem !important;
}

.modaldiv .demo-btn {
	animation: 2s ease 0s infinite normal none running pulse;
}

@keyframes pulse {

	0%,
	100% {
		transform: scale(1);
		box-shadow: rgba(255, 255, 255, 0.7) 0px 0px 0px 0px;
	}

	50% {
		transform: scale(1.05);
		box-shadow: rgba(255, 255, 255, 0) 0px 0px 0px 15px;
	}
}

.modaldiv .modal-content {
	border: none;
	border-radius: 24px;
	box-shadow: rgba(0, 0, 0, 0.3) 0px 20px 60px;
	overflow: hidden;
	background: rgb(255, 255, 255);
}

.modaldiv .modal-header {
	border: none;
	padding: 11px 15px;
	background: linear-gradient(135deg, rgb(118, 118, 219) 0%, rgb(37, 37, 70) 100%);
	position: relative;
	overflow: hidden;
}

.modaldiv .modal-header::before {
	content: "";
	position: absolute;
	top: -50%;
	right: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
	animation: 20s linear 0s infinite normal none running rotate;
}

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

	100% {
		transform: rotate(360deg);
	}
}

.modaldiv .modal-header .btn-close {
	filter: brightness(0) invert(1);
	opacity: 0.8;
	transition: 0.3s;
	position: relative;
	z-index: 1;
}

.modaldiv .modal-header .btn-close:hover {
	opacity: 1;
	transform: rotate(90deg);
}

.modaldiv .modal-title {
	color: rgb(255, 255, 255);
	font-weight: 600;
	font-size: 19px;
	text-align: center;
	width: 100%;
	text-shadow: rgba(0, 0, 0, 0.1) 0px 2px 10px;
	position: relative;
	z-index: 1;
}

.modaldiv .modal-body {
	padding: 2rem;
}

.modaldiv .subtitle {
	color: rgb(108, 117, 125);
	font-size: 1.05rem;
	margin-bottom: 5px;
	text-align: center;
	font-weight: 400;
}

.modaldiv .investment-badge {
	display: inline-block;
	background: linear-gradient(135deg, rgb(102, 126, 234) 0%, rgb(118, 75, 162) 100%);
	color: white;
	padding: 0.5rem 1.5rem;
	border-radius: 50px;
	font-size: 0.95rem;
	font-weight: 500;
	margin-bottom: 2rem;
}

.modaldiv .form-control {
	border: 1px solid rgb(127 118 51);
	padding: 8px 10px;
	font-size: 1rem;
	transition: 0.3s;
	background: rgb(248, 249, 250);
	border-radius: 4px !important;
}

.modaldiv .form-select {
	border-radius: 5px !important;
	border: 1px solid rgb(127 118 51);
}

.modaldiv .form-control:focus {
	border-color: rgb(102, 126, 234);
	box-shadow: rgba(102, 126, 234, 0.15) 0px 0px 0px 0.2rem;
	background: rgb(255, 255, 255);
	transform: translateY(-2px);
}

.modaldiv .input-wrapper {
	position: relative;
	margin-bottom: 2rem;
}

.modaldiv .input-icon {
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	color: rgb(102, 126, 234);
	font-size: 1.2rem;
	transition: 0.3s;
}

.modaldiv .form-control:focus~.input-icon {
	transform: translateY(-50%) scale(1.2);
}

.modaldiv .btn-invest {
	border: none;
	border-radius: 9px;
	padding: 5px 12px;
	font-size: 1.1rem;
	font-weight: 600;
	color: white;
	transition: 0.3s;
	box-shadow: rgba(102, 126, 234, 0.3) 0px 8px 20px;
	position: relative;
	overflow: hidden;
	width: revert-layer;
	max-width: fit-content;
}

.modaldiv .btn-invest::before {
	content: "";
	position: absolute;
	top: 0px;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
	transition: left 0.5s;
}

.modaldiv .btn-invest:hover {
	transform: translateY(-3px);
	box-shadow: rgba(102, 126, 234, 0.4) 0px 12px 30px;
}

.modaldiv .btn-invest:hover::before {
	left: 100%;
}

.modaldiv .btn-invest:active {
	transform: translateY(-1px);
}

.modaldiv .info-text {
	text-align: center;
	color: rgb(156, 163, 175);
	font-size: 0.875rem;
	margin-top: 1.5rem;
}

.modaldiv .info-text i {
	color: rgb(102, 126, 234);
	margin-right: 5px;
}

.modaldiv .floating {
	animation: 3s ease-in-out 0s infinite normal none running floating;
}

@keyframes floating {

	0%,
	100% {
		transform: translateY(0px);
	}

	50% {
		transform: translateY(-10px);
	}
}

.modaldiv .modal.show .modal-dialog {
	animation: 0.4s ease-out 0s 1 normal none running slideUp;
}

@keyframes slideUp {
	0% {
		opacity: 0;
		transform: translateY(50px) scale(0.95);
	}

	100% {
		opacity: 1;
		transform: translateY(0px) scale(1);
	}
}

@keyframes successPulse {

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

	50% {
		transform: scale(1.05);
	}
}

.modaldiv .success-feedback {
	animation: 0.5s ease 0s 1 normal none running successPulse;
}

.modaldiv .btn-invest.loading {
	pointer-events: none;
}

.modaldiv .btn-invest.loading::after {
	content: "";
	position: absolute;
	width: 20px;
	height: 20px;
	top: 50%;
	left: 50%;
	margin-left: -10px;
	margin-top: -10px;
	border-width: 3px;
	border-style: solid;
	border-color: white rgba(255, 255, 255, 0.3) rgba(255, 255, 255, 0.3);
	border-image: initial;
	border-radius: 50%;
	animation: 0.8s linear 0s infinite normal none running spin;
}

@keyframes spin {
	100% {
		transform: rotate(360deg);
	}
}

.btn-invest {
	background-color: rgb(155, 144, 69);
	color: white;
	border: none;
	flex: 1 1 0%;
	font-size: 14px;
	font-weight: normal;
	padding: 8px 0px;
}

.btn-check:checked+.btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check)+.btn:active {
	background-color: rgb(33, 140, 96) !important;
	border-color: rgb(33, 140, 96) !important;
}

.hover-lift {
	transition: transform 0.2s, box-shadow 0.2s;
}

.hover-lift:hover {
	transform: translateY(-2px);
	box-shadow: rgba(0, 0, 0, 0.1) 0px 5px 15px !important;
}

.input-group:focus-within {
	border-color: rgb(13, 110, 253);
	box-shadow: rgba(13, 110, 253, 0.25) 0px 0px 0px 0.25rem;
}

.btn-outline-primary:hover,
.btn-outline-warning:hover {
	transform: translateY(-1px);
}

.smalltext1 {
	color: white;
	font-size: 12px;
}

.text-mutedsign {
	color: rgb(0, 80, 151) !important;
	font-size: 23px;
}

.h4font {
	font-size: 21px;
	color: rgb(111, 110, 102);
}

.text-muted1 {
	font-size: 14px;
}

.btn-outline-primary1 {
	border-color: rgb(87, 87, 175);
	color: rgb(87, 87, 175);
}

.btn-outline-primary1:hover {
	background: rgb(155, 144, 69) !important;
	color: rgb(255, 255, 255) !important;
	border-color: rgb(155, 144, 69) !important;
}

#calculatortab {
	font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	background-color: rgb(253, 253, 253);
	color: rgb(45, 45, 45);
}

.calc-card-main {
	background: rgb(255, 255, 255);
	transition: transform 0.3s;
	border: none !important;
}

.tab-radio .btn-outline-primary {
	color: rgb(75, 75, 140);
	border-color: rgb(75, 75, 140);
	padding: 8px 25px;
	font-weight: 600;
	transition: 0.3s;
}

.tab-radio .btn-check:checked+.btn-outline-primary {
	background-color: rgb(75, 75, 140);
	border-color: rgb(75, 75, 140);
	box-shadow: rgba(75, 75, 140, 0.3) 0px 4px 12px;
}

input[type="range"] {
    appearance: none;
    width: 100%;
    background: #e0e0e0 !important;
}

input[type="range"]::-webkit-slider-runnable-track {
	width: 100%;
	height: 6px;
	cursor: pointer;
	background: rgb(224, 224, 224);
	border-radius: 3px;
}

input[type="range"]::-webkit-slider-thumb {
	height: 20px;
	width: 20px;
	border-radius: 50%;
	background: rgb(155, 144, 69);
	cursor: pointer;
	appearance: none;
	margin-top: -7px;
	box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 5px;
	transition: scale 0.2s;
}

input[type="range"]:active::-webkit-slider-thumb {
	scale: 1.2;
}

.form-control.bg-success {
	border-radius: 8px;
	text-align: center;
	background-color: rgba(155, 144, 69, 0.1) !important;
	color: rgb(155, 144, 69) !important;
	border: 1px solid rgba(155, 144, 69, 0.2) !important;
}

.result-container {
	animation: 0.8s ease-out 0s 1 normal none running fadeIn;
	background: linear-gradient(145deg, rgb(255, 255, 255), rgb(240, 240, 245)) !important;
	border: 1px solid rgba(75, 75, 140, 0.1) !important;
}

#totalamt {
	font-weight: 800;
	letter-spacing: 0.5px;
	color: rgb(75, 75, 140) !important;
}

.separator1 {
	min-width: 115px !important;
}

.cart::-webkit-scrollbar {
	width: 6px;
}

.cart::-webkit-scrollbar-thumb {
	background: rgb(155, 144, 69);
	border-radius: 10px;
}

.list-group-item.hover-list-item {
	border-left: 3px solid transparent;
	transition: 0.3s;
}

.list-group-item.hover-list-item:hover {
	background-color: rgba(155, 144, 69, 0.05);
	border-left: 3px solid var(--primary-gold);
	padding-left: 25px;
}

.list-group-item i {
	color: rgb(75, 75, 140) !important;
}

.header-style {
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 0.9rem;
	background: rgb(75, 75, 140) !important;
}

#returnsArc,
#investmentArc {
	transition: stroke-dasharray 0.5s ease-in-out;
}

@keyframes fadeIn {
	0% {
		opacity: 0;
		transform: translateY(10px);
	}

	100% {
		opacity: 1;
		transform: translateY(0px);
	}
}

.investment-toggle-container {
	display: inline-flex;
	background: rgb(244, 244, 249);
	padding: 6px;
	border-radius: 50px;
	position: relative;
	border: 1px solid rgba(0, 0, 0, 0.05);
	box-shadow: rgba(0, 0, 0, 0.05) 0px 2px 4px inset;
}

.btn-check {
	display: none;
}

.investment-toggle-container label {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 10px 24px;
	cursor: pointer;
	border-radius: 50px;
	font-weight: 600;
	font-size: 19px;
	color: rgb(102, 102, 102);
	transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	z-index: 2;
	margin-bottom: 0px;
}

.investment-toggle-container label i {
	font-size: 1.1rem;
	transition: transform 0.3s;
}

.btn-check:checked+label i {
	transform: scale(1.1) rotate(-5deg);
	color: rgb(155, 144, 69);
}

.investment-toggle-container label:not(.btn-check:checked + label):hover {
	background: rgba(155, 144, 69, 0.1);
	color: rgb(75, 75, 140);
}

@media (max-width: 576px) {
	.investment-toggle-container {
		width: 100%;
	}

	.investment-toggle-container label {
		flex: 1 1 0%;
	}
}

.accordion-button:not(.collapsed) {
	color: rgb(255, 255, 255);
	background-color: rgb(75, 75, 140);
	box-shadow: rgba(0, 0, 0, 0.125) 0px -1px 0px inset;
}

.text-warning1 {
	color: rgb(155, 144, 69);
}

.legend {
	font-size: 17px;
}

.list-group-item {
	z-index: 5;
}

.pagi-item {
	font-size: 16px;
	color: rgb(255, 255, 255);
	background: var(--color1);
	margin-left: 10px;
	padding: 0.3rem 1.3rem;
	font-weight: 700;
	border-radius: 5rem;
	border: 3px solid rgb(255, 255, 255);
	box-shadow: rgba(0, 0, 0, 0.1) 2px 2px 5px;
}

.rating .star {
	text-wrap: nowrap;
	display: none;
}

.rating0 .star0 {
	display: block;
	color: rgb(133, 0, 0);
}

.rating1 .star1 {
	display: block;
	color: rgb(215, 0, 0);
}

.rating2 .star2 {
	display: block;
	color: rgb(247, 105, 0);
}

.rating3 .star3 {
	display: block;
	color: rgb(233, 185, 0);
}

.rating4 .star4 {
	display: block;
	color: rgb(180, 203, 0);
}

.rating5 .star5 {
	display: block;
	color: rgb(58, 155, 0);
}

.radio-list input:checked+label {
	cursor: pointer;
	color: rgb(232 232 255);
	background: #9b9045 !important;
}

.radio-list input {
	width: 0px;
	height: 0px;
	cursor: pointer;
}

img[loading="lazy"] {
	opacity: 0;
	transition: opacity 0.3s;
}

img[loading="lazy"].loaded {
	opacity: 1;
}

.yt-sidebar img[loading="lazy"] {
	opacity: 1 !important;
}

.yt-card-title {
	color: #ffffff;
}

.btn-outline-secondary {
	background-color: rgb(255, 255, 255);
	box-shadow: rgba(0, 0, 0, 0.08) 0px 2px 6px;
	transition: 0.2s ease-in-out;
	font-size: 12px;
	font-weight: bold;
	padding: 2px 10px;
	border-radius: 10px !important;
}

.btn-outline-secondary a:active {
	color: rgb(255, 255, 255) !important;
}

a#ctl00_A2 {
	display: none !important;
}

#ctl00_A3 {
	display: block !important;
}

.btn-outline-secondary:hover {
	background-color: rgb(245, 245, 245);
	color: rgb(0, 0, 0);
}

.divs {
	border-radius: 20px;
	box-shadow: 0 .5rem 1rem rgba(var(--bs-body-color-rgb), .15) !important;
}

.sucsess1 {
	color: rgb(91, 171, 91);
	font-size: 18px;
	font-weight: normal !important;
}

.shownewcart1 {
	position: relative;
	transform: translateY(-40%);
	top: 23px;
	right: 4px;
	float: right;
}

.addmorefund {
	background: rgb(75, 75, 140);
	padding: 9px 5px;
	color: rgb(255, 255, 255);
}

.addmorefund:hover {
	background: rgb(155, 144, 69);
	color: rgb(255, 255, 255);
}

.return {
	color: rgb(0 118 9) !important;
}

.post-percent::after {
	content: "%";
	margin-left: 0.2rem;
}

.post-percent::before {
	content: "";
	font-family: bootstrap-icons;
	margin-left: 0px;
	position: relative;
	top: 2px;
	padding: 0px;
	height: 10px;
}

.pre-inr::before {
	content: "₹";
	margin-right: 0.2rem;
}

.separator {
	min-width: 95.5px;
	padding: 0px !important;
}

.scheme-name {
	width: 32%;
}

.xx-small1 {
	font-size: 12px;
	color: rgb(24 25 28);
}

.add-to-cart:hover .fa-cart-plus {
	transform: translateX(3px) rotate(-10deg);
}

.ribbon-label {
	position: relative;
	display: inline-block;
	margin: 0px 5px;
}

.ribbon-content {
	background: linear-gradient(135deg, rgb(25 45 135) 0%, rgb(118, 75, 162) 100%);
	color: white;
	padding: 4px 2px 5px 2px;
	border-radius: 4px 0px 0px 4px;
	font-size: 11px;
	font-weight: 500;
}

.ribbon-tail {
	position: absolute;
	right: -10px;
	top: -2px;
	width: 0px;
	height: 0px;
	border-top: 14px solid transparent;
	border-bottom: 14px solid transparent;
	border-left: 10px solid rgb(118, 75, 162);
}

.namew {
	width: 100%;
}

.mrgintop1 {
	margin-top: 20px !important;
}

.btncanvas {
	background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center center / 1.2rem no-repeat rgba(0, 0, 0, 0) !important;
}

.ui-widget {
	background: rgb(255, 255, 255);
	display: block;
}

.ui-widget.ui-widget-content {
	border-radius: 1rem;
	padding: 1rem 0px;
	box-shadow: rgb(204, 204, 204) 4px 4px 15px;
	width: 500px !important;
}

.ui-menu-item {
	font-size: 0.9rem;
	font-weight: 600;
}

.ui-menu-item:not(:last-child) {
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.ui-menu .ui-menu-item-wrapper {
	padding: 8px 1.5em 8px 1em;
	color: rgb(33 31 31);
	font-weight: normal;
}

.ui-menu-item-wrapper::before {
	content: "»";
	font-weight: bold;
	margin-right: 6px;
	color: rgb(165, 142, 67);
}

.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
a.ui-button:active,
.ui-button:active,
.ui-button.ui-state-active:hover {
	background: rgb(204, 204, 204);
	border-color: transparent;
	font-weight: 600;
	cursor: pointer;
}

.dropdown-item.active,
.dropdown-item:active {
	background-color: rgb(155, 144, 69);
	color: white;
}

.dropdown-toggle::after {
	margin-left: auto;
}

.searchrow {
	background: rgb(255, 255, 255);
	width: 97%;
	margin: auto auto 5px;
	padding: 1px 11px;
	border-radius: 8px;
	border-left: 5px solid rgb(75, 75, 140);
	box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 3px;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
}

.searchtext {
	padding: 0px;
	margin-bottom: 1px;
	font-size: 17px;
	font-weight: 400;
	color: rgb(22 21 21);
}

.toptabpills {
	background: linear-gradient(90deg, #002358 0%, #1D3461 100%) !important;
	/* border: 1px solid rgb(204, 204, 204); */
	margin-top: 2px;
	border-radius: 20px;
	/* padding: 0px 0px; */
}

.radio-list li:first-child label {
	border-radius: 50px 0 0 50px;
}

.radio-list li:last-child label {
	border-radius: 0 50px 50px 0;
}

.dropdownwidth {
	width: 100%;
	margin-bottom: 3px;
}

.iconfilter {
	left: 72px;
	top: 185px;
	font-size: 23px;
	color: rgb(75, 75, 140);
}

.btnpadding {
	padding: 9px 16px;
}

.btn-check:checked+.btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check)+.btn:active {
	background: none !important;
	border: none !important;
}

.btn-group-custom {
	justify-content: center;
	margin-bottom: 8px;
}

/* Laptop screens */
@media screen and (max-width: 1366px) {

	.search-wrapper {

		max-width: 521px;
	}

	.category-tab {
		padding: 3px 21px;
	}
}

@media screen and (min-width: 1200px) and (max-width: 1399px) {

	.container-xl,
	.container-lg,
	.container-md,
	.container-sm,
	.container {
		max-width: 1300px;
	}
}

@media (max-width: 1199px) {
	.scheme-card {
		flex-wrap: wrap;
		justify-content: center;
		padding: 8px 0px !important;
	}
}

@media (max-width: 768px) {
	.cart-btn {
		width: 46px;
		height: 49px;
		font-size: 4px !important;
		margin-top: -20px;
	}

	.scheme-name,
	.scheme-cartname {
		width: 100%;
		margin-bottom: 10px;
	}

	.singlescheme {
		flex-wrap: wrap;
	}

	.separator {
		padding: 8px 0px !important;
	}
}

@media (max-width: 576px) {
	.hero-title {
		font-size: 26px;
		padding: 10px;
	}

	.btn-group-custom {
		margin-top: 0px;
		margin-bottom: 12px;
		order: 1;
	}

	.info-section {
		padding: 0px 0px;
	}

	.selection-header {
		text-align: center;
	}

	.cart-count {
		font-size: 11px;
	}

	.ipomrgnbtm .apply-info {
		display: none;
	}

	.shownewcart1 {
		top: 45px;
		position: fixed;
		right: 98px;
		z-index: 99999999999;
	}

	.search-box {
		padding: 5px 2px;
		margin-bottom: 5px;
	}

	.search-box input {
		padding: 9px 5px;
	}

	.containeripo .btn-custom {
		font-size: 12px;
		border-radius: 24px;
		margin-top: 4px;
		padding: 6px 12px !important;
	}

	.sectionmrginpadd {
		padding: 5px 5px !important;
	}

	.radio-list label {
		clip-path: unset;
		padding: 4px 15px;
	}

	.category-tab {
		padding: 9px 3px;
		font-size: 13px;
	}

	.filter-chips {
		gap: 0px;
	}

	.filter-chip {
		background: white;
		border: 2px solid rgb(229, 231, 235);
		padding: 3px 7px;
		border-radius: 5px;
		ht: auto;
		font-size: 13px;
		margin: 1px !important;
	}

	.scheme-card {
		padding: 1px;
		box-shadow: rgb(203, 203, 203) 0px 14px 12px;
		border-radius: 9px;
	}

	.metric-box {
		padding: 1px 0px;
	}

	.added .btn_addtocart {
		margin-bottom: 6px;
		border-radius: 7px;
		display: block;
	}

	.add-to-cart {
		margin-bottom: 6px;
		border-radius: 7px;
		display: block;
	}

	.show-more-btn {
		padding: 9px 7px;
		margin: 11px auto auto;
	}

	.separator {
		padding: 1px 0px !important;
	}

	.scheme-name,
	.scheme-cartname {
		margin-bottom: 3px;
	}

	.scheme-name {
		font-size: 14px;
		font-weight: 400;
	}

	.display-4 {
		font-size: 27px;
		margin-top: 0px;
	}

	.containeripo .ipo-section {
		justify-content: center;
	}

	.feature-card {
		background: rgb(255, 255, 255);
		padding: 10px 18px;
	}

	.sectionmrginpadd {
		padding: 10px !important;
	}

	.singlescheme {
		flex-wrap: wrap;
	}

	.ribbon-content {
		font-size: 10px;
	}

	.container100 {
		width: 100% !important;
	}

	.btnpadding {
		padding: 9px 5px;
		font-size: 13px;
		background: #ffffff;
	}

	.fa-shopping-cart {
		font-size: 14px;
	}

	.searchtext {
		font-size: 12px;
		padding: 4px 0px;
		margin-top: 12px;
		font-weight: 400;
	}

	.iconfilter {
		display: none;
	}

	.searchrow {
		padding: 0px !important;
		background: none;
		border: 0px;
		box-shadow: none;
	}

	.filter-chips {
		justify-content: center;
	}

	.toptabpills {
		margin: 0px;
		order: 2;
		margin-bottom: 7px;
	}

	.tab-pill {
		margin: 0px;
	}
}


/*******************/
/* ===== SEARCH ROW - RESPONSIVE CSS ===== */
.searchrow {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
	padding: 0px 0px;
	/* background: #fff; */
	border-radius: 12px;
	/* box-shadow: 0 2px 12px rgba(75, 75, 140, 0.08); */
}

.iconfilter {
	color: #4b4b8c;
	font-size: 1.1rem;
}

.category-tabs {
	/* width: 100%; */
}

.radio-list {
	/* gap: 0px; */
	/* background: #222; */
	/* border-radius: 50px; */
	list-style: none;
	padding-left: 0px !important;
	display: inline-flex;
	margin-bottom: 3px;
}

.category-tab {
	background: transparent;
	border: 0;
	border-bottom: 3px solid transparent;
	width: 100%;
	outline: 0;
}

.category-tab:hover {
	border-color: #4b4b8c;
	color: #4b4b8c;
	background: #f0f0f9;
}

.category-tab.active {
	color: #353589;
	border-bottom: 3px solid #353589;
}

.category-tab i {
	font-size: 0.7rem;
	display: none;
}

.search-wrapper {
	display: flex;
	flex-direction: column;
	width: 100%;
}

.searchtext {
	font-size: 0.7rem !important;
	color: #999;
	margin-bottom: 2px;
}

.search-box {
	display: flex;
	align-items: center;
	border: 1.5px solid #d0d0e8;
	border-radius: 25px;
	overflow: hidden;
	background: #ffffff;
	transition: border-color 0.2s;
}

.search-box:focus-within {
	border-color: #4b4b8c;
	background: #fff;
	box-shadow: 0 0 0 3px rgba(75, 75, 140, 0.1);
}

.search-box input {
	font-size: 0.785rem !important;
	padding: 8px 7px;
	flex: 1;
	border: none;
	background: transparent;
	outline: none;
}

.search-box input::placeholder {
	color: #bbb;
	font-size: 0.75rem;
}

.search-box a {
	padding: 0 16px;
	color: #4b4b8c;
	text-decoration: none;
}

.cart-float {
	display: flex;
	justify-content: flex-end;
}

.cart-btn {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background: #4b4b8c;
	color: #fff;
	border-radius: 10px;
	padding: 2px 10px;
	cursor: pointer;
	font-size: 0.7rem;
	min-width: 56px;
	transition: background 0.2s, transform 0.15s;
	text-align: center;
	line-height: 0px;
}

.cart-btn:hover {
	background: #3a3a72;
	transform: translateY(-1px);
}

.cart-btn i {
	font-size: 1rem;
	margin-bottom: 2px;
}

.cart-count {
	font-size: 0.65rem;
	font-weight: 600;
}

.searchrow>[class*="col-"] {
	padding-left: 7px;
	pa;
	padding-right: 6px;
}

@media (min-width: 1024px) and (max-width: 1366px) {
	.scheme-name {
		width: 27%;
	}

	#cartdata .scheme-name {
		width: 100%;
	}
}

@media (max-width: 767px) {
	.searchrow {
		flex-direction: column;
		align-items: stretch;
		gap: 10px;
		padding: 12px;
	}

	.searchrow .d-md-block.d-none {
		display: none !important;
	}

	.radio-list {
		flex-wrap: nowrap !important;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
		padding-bottom: 2px;
	}

	.radio-list::-webkit-scrollbar {
		display: none;
	}

	.category-tab {
		flex-shrink: 0;
		padding: 7px 12px;
		font-size: 0.73rem;
	}

	.searchpad {
		width: 100% !important;
		max-width: 100%;
		flex: 1 1 auto;
	}

	.shownewcart1 {
		display: flex;
		justify-content: flex-end;
		align-items: center;
	}

	.cart-btn {
		padding: 7px 10px;
		min-width: 48px;
	}
}

@media (max-width: 400px) {
	.category-tab {
		padding: 6px 9px;
		font-size: 0.98rem;
	}

	.category-tab i {
		display: none;
	}
}

/*****************************/
:root {
	--cs-navy: #1a2340;
	--cs-navy2: #243055;
	--cs-gold: #c9a84c;
	--cs-gold2: #e0bb6c;
	--cs-green: #1aaa6e;
	--cs-red: #e84545;
	--cs-radius: 14px;
	--cs-shadow: 0 8px 32px rgba(26, 35, 64, 0.18);
	--cs-border: rgba(255, 255, 255, 0.08);
}

/* ── PAGE WRAPPER ── */
.page-wrapper {
	background: var(--cs-navy) !important;
	border-radius: 0px !important;
	padding: 2px 40px !important;
	display: flex !important;
	align-items: center !important;
	justify-content: space-between !important;
	gap: 20px !important;
	width: 100% !important;
	max-width: 100% !important;
	margin: auto !important;
	flex-wrap: nowrap !important;
	padding-top: 12px !important;
}

/* ── SEARCH PILL (left) ── */
.cs-wrapper {
	position: relative !important;
	flex: 1 !important;
	max-width: 480px !important;
	font-family: 'Outfit', sans-serif !important;
	z-index: 99 !important;
}

.cs-trigger {
	display: flex;
	align-items: center;
	gap: 10px;
	background: #e4e5e7;
	border-radius: 11px;
	padding: 1px 13px;
	cursor: pointer;
	border: 1.5px solid #ccc;
	transition: background .25s;
	user-select: none;
}

.cs-trigger-icon {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	color: var(--cs-navy);
	font-size: 15px;
}

.cs-trigger-input {
	flex: 1;
	background: transparent;
	border: none;
	outline: none;
	color: #2b2929;
	font-family: 'Outfit', sans-serif;
	font-size: 15px;
	font-weight: 500;
	caret-color: var(--cs-gold);
	min-width: 0;
}

.cs-trigger-input::placeholder {
	color: #454343;
}

.cs-trigger-chevron {
	color: #888;
	transition: transform .3s;
	font-size: 13px;
	flex-shrink: 0;
}

.cs-wrapper.cs-open .cs-trigger-chevron {
	transform: rotate(180deg);
}

/* ── DROPDOWN ── */
.cs-dropdown {
	position: absolute;
	top: calc(100% + 6px);
	left: 0;
	right: 0;
	background: var(--cs-navy);
	border-radius: var(--cs-radius);
	box-shadow: var(--cs-shadow);
	border: 1.5px solid var(--cs-border);
	overflow: hidden;
	display: none;
	flex-direction: column;
	animation: cs-drop-in .22s cubic-bezier(.22, 1, .36, 1);
	max-height: 420px;
}

.cs-wrapper.cs-open .cs-dropdown {
	display: flex;
}

@keyframes cs-drop-in {
	from {
		opacity: 0;
		transform: translateY(-10px) scale(.98)
	}

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

.cs-panel-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 14px;
	background: var(--cs-navy2);
	border-bottom: 1px solid rgba(255, 255, 255, .06);
	flex-shrink: 0;
}

.cs-panel-label {
	display: flex;
	align-items: center;
	gap: 8px;
	color: rgba(255, 255, 255, .55);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 1.4px;
	text-transform: uppercase;
}

.cs-panel-label i {
	color: var(--cs-gold);
	font-size: 14px;
}

.cs-add-btn {
	display: flex;
	align-items: center;
	gap: 7px;
	background: var(--cs-gold);
	color: var(--cs-navy);
	border: none;
	border-radius: 8px;
	padding: 7px 14px;
	font-family: 'Outfit', sans-serif;
	font-size: 12px;
	font-weight: 700;
	cursor: pointer;
	transition: background .2s, transform .15s;
	letter-spacing: .4px;
	text-transform: uppercase;
	white-space: nowrap;
}

.cs-add-btn:hover {
	background: var(--cs-gold2);
	transform: translateY(-1px);
}

.cs-list {
	overflow-y: auto;
	flex: 1;
	scrollbar-width: thin;
	scrollbar-color: var(--cs-gold) rgba(255, 255, 255, .05);
}

.cs-list::-webkit-scrollbar {
	width: 4px;
}

.cs-list::-webkit-scrollbar-thumb {
	background: var(--cs-gold);
	border-radius: 4px;
}

.cs-client-row {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px 14px;
	border-bottom: 1px solid rgba(255, 255, 255, .045);
	cursor: pointer;
	transition: background .15s;
	position: relative;
}

.cs-client-row:last-child {
	border-bottom: none;
}

.cs-client-row:hover {
	background: rgba(255, 255, 255, .05);
}

.cs-client-row.cs-selected {
	background: rgba(201, 168, 76, .12);
}

.cs-avatar {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 14px;
	flex-shrink: 0;
	letter-spacing: .5px;
}

.cs-av-blue {
	background: #2563eb22;
	color: #60a5fa;
}

.cs-av-green {
	background: #05966922;
	color: #34d399;
}

.cs-av-purple {
	background: #7c3aed22;
	color: #a78bfa;
}

.cs-av-orange {
	background: #ea580c22;
	color: #fb923c;
}

.cs-av-teal {
	background: #0d948522;
	color: #2dd4bf;
}

.cs-client-info {
	flex: 1;
	min-width: 0;
}

.cs-client-name {
	color: #fff;
	font-weight: 600;
	font-size: 14px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.cs-client-id {
	color: rgba(255, 255, 255, .38);
	font-size: 11px;
	margin-top: 1px;
}

.cs-badge {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: 4px 10px;
	border-radius: 20px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .3px;
	text-transform: uppercase;
	cursor: pointer;
	transition: transform .15s, box-shadow .15s;
}

.cs-badge:hover {
	transform: scale(1.06);
	box-shadow: 0 2px 8px rgba(0, 0, 0, .2);
}

.cs-badge-eligible {
	background: rgba(26, 170, 110, .15);
	color: var(--cs-green);
	border: 1px solid rgba(26, 170, 110, .3);
}

.cs-badge-not {
	background: rgba(232, 69, 69, .12);
	color: var(--cs-red);
	border: 1px solid rgba(232, 69, 69, .25);
}

.cs-badge i {
	font-size: 9px;
}

.cs-ucc-btn {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	gap: 5px;
	background: var(--cs-navy2);
	color: rgba(255, 255, 255, .75);
	border: 1px solid rgba(255, 255, 255, .12);
	border-radius: 8px;
	padding: 5px 11px;
	font-family: 'Outfit', sans-serif;
	font-size: 11px;
	font-weight: 600;
	cursor: pointer;
	transition: all .2s;
	white-space: nowrap;
}

.cs-ucc-btn:hover {
	background: var(--cs-gold);
	color: var(--cs-navy);
	border-color: var(--cs-gold);
}

.cs-empty {
	padding: 28px 14px;
	text-align: center;
	color: rgba(255, 255, 255, .3);
	font-size: 14px;
}

.cs-empty i {
	font-size: 28px;
	margin-bottom: 8px;
	display: block;
	opacity: .3;
}

.cs-highlight {
	color: var(--cs-gold);
	font-weight: 700;
}

/* ── BROKER/CLIENT INFO (right) ── */
cs-info-right {
	display: flex !important;
	flex-direction: column !important;
	align-items: flex-end !important;
	gap: 4px !important;
	flex-shrink: 0 !important;
}

.cs-info-broker,
.cs-info-client {
	display: flex !important;
	align-items: center !important;
	gap: 6px !important;
}

.cs-info-broker .lbl,
.cs-info-client .lbl {
	font-size: 10px !important;
	font-weight: 500 !important;
	color: rgba(255, 255, 255, .4) !important;
	letter-spacing: .6px !important;
	text-transform: uppercase !important;
}

.cs-info-broker .val {
	font-size: 15px !important;
	font-weight: 700 !important;
	color: #fff !important;
	letter-spacing: .2px !important;
}

.cs-info-divider {
	width: 1px;
	height: 32px;
	background: rgba(255, 255, 255, .15);
	margin: 0 6px;
	align-self: center;
}


.cs-info-client .val {
	font-size: 14px !important;
	font-weight: 600 !important;
	color: rgba(255, 255, 255, .85) !important;
}

/* ── TOAST ── */
.cs-toast {
	position: fixed;
	bottom: 28px;
	left: 50%;
	transform: translateX(-50%) translateY(20px);
	min-width: 280px;
	max-width: 380px;
	padding: 14px 20px;
	border-radius: 14px;
	display: flex;
	align-items: flex-start;
	gap: 14px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, .28);
	opacity: 0;
	transition: opacity .3s, transform .3s;
	pointer-events: none;
	z-index: 99999;
	font-family: 'Outfit', sans-serif;
}

.cs-toast.cs-toast-show {
	opacity: 1;
	transform: translateX(-50%) translateY(0);
}

.cs-toast-icon {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 17px;
	flex-shrink: 0;
}

.cs-toast-title {
	font-size: 14px;
	font-weight: 700;
	margin-bottom: 3px;
}

.cs-toast-msg {
	font-size: 12.5px;
	line-height: 1.5;
	opacity: .88;
}

.cs-toast-green {
	background: #0f2e22;
	border: 1.5px solid rgba(26, 170, 110, .4);
}

.cs-toast-green .cs-toast-icon {
	background: rgba(26, 170, 110, .2);
	color: #1aaa6e;
}

.cs-toast-green .cs-toast-title {
	color: #2ecc8e;
}

.cs-toast-green .cs-toast-msg {
	color: #a0d9bf;
}

.cs-toast-red {
	background: #2a0e0e;
	border: 1.5px solid rgba(232, 69, 69, .35);
}

.cs-toast-red .cs-toast-icon {
	background: rgba(232, 69, 69, .18);
	color: #e84545;
}

.cs-toast-red .cs-toast-title {
	color: #f07070;
}

.cs-toast-red .cs-toast-msg {
	color: #d4a0a0;
}

.cs-toast-bar {
	position: absolute;
	bottom: 0;
	left: 0;
	height: 3px;
	border-radius: 0 0 14px 14px;
	width: 100%;
}

.cs-toast-green .cs-toast-bar {
	background: linear-gradient(90deg, #1aaa6e, #0d7a4e);
}

.cs-toast-red .cs-toast-bar {
	background: linear-gradient(90deg, #e84545, #a32020);
}

@keyframes cs-bar-shrink {
	from {
		width: 100%
	}

	to {
		width: 0%
	}
}

.filter-chip .fas {
	display: none;
}

@media (max-width: 767px) {

	.page-wrapper {
		flex-direction: column !important;
		align-items: stretch !important;
		padding: 14px 16px !important;
		gap: 12px !important;
	}

	/* Broker/Client block — TOP on mobile */
	.cs-info-right {
		order: 1 !important;
		align-items: flex-start !important;
		/* left-align on mobile */
		flex-direction: column !important;
		gap: 3px !important;
		padding: 10px 14px !important;
		background: rgba(255, 255, 255, .04) !important;
		border-radius: 12px !important;
		border: 1px solid rgba(255, 255, 255, .07) !important;
		width: 100% !important;
	}

	.cs-info-broker .lbl,
	.cs-info-client .lbl {
		font-size: 9px !important;
		min-width: 42px !important;
	}

	.cs-info-broker .val {
		font-size: 14px !important;
	}

	.cs-info-client .val {
		font-size: 13px !important;
	}

	/* divider line between broker & client on mobile */
	.cs-info-right>div[style*="width:60px"] {
		width: 100% !important;
		height: 1px !important;
		background: rgba(255, 255, 255, .08) !important;
		margin: 2px 0 !important;
	}

	/* Search pill — BOTTOM on mobile */
	.cs-wrapper {
		order: 2 !important;
		max-width: 100% !important;
		width: 100% !important;
	}

	/* Make trigger full width */
	.cs-trigger {
		width: 100% !important;
		border-radius: 14px !important;
		padding: 8px 14px !important;
	}

	/* Dropdown full width on mobile */
	.cs-dropdown {
		left: 0 !important;
		right: 0 !important;
		max-height: 320px !important;
	}
}

/* ══════════════════════════════════════════
   SMALL PHONES (< 400px)
   ══════════════════════════════════════════ */

@media (max-width: 400px) {
	.page-wrapper {
		padding: 12px 10px !important;
	}

	.cs-info-broker .val {
		font-size: 13px !important;
	}

	.cs-info-client .val {
		font-size: 12px !important;
	}
}



/*
    .cartspan
    {
    background: white;
    color: #37378d;
    border-radius: 50%;
    padding: 3px;
    font-size: 11px;
    margin-right: 8px;
    }
*/

.cartspan {
	display: inline-flex;
	align-items: center;
	justify-content: center;

}

.cart-check {
	width: 14px;
	height: 14px;
	margin-right: 0;
	/* cartspan already has its own margin from .add-to-cart */
}

.callback-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	width: 100%;
	margin-top: 10px;
	padding: 8px 12px;
	background: #fff;
	color: #E83B2A;
	border: 1.5px solid #E83B2A;
	border-radius: 8px;
	font-family: 'DM Sans', sans-serif;
	font-size: 12px;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease;
}

.callback-btn:hover {
	background: #E83B2A;
	color: #ffffff;
}


/* ===== OUTER WRAPPER ==================================================================
=============================================================================================
==================================================================================================== */
.mf-wrapper {
	background: #FDF7F0;
	/* border: 1px solid #E4D5C4; */
	border-radius: 22px;
	padding: 18px 26px 0px;
	width: 93%;
	/* max-width: 980px; */
	position: relative;
	/* box-shadow: 0 4px 20px rgba(26, 10, 0, 0.08); */
	overflow: hidden;
	margin: auto;
}

/* top accent line */
.mf-wrapper::before {
	/* content: ''; */
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, transparent 0%, #E83B2A 35%, #E83B2A 65%, transparent 100%);
}

/* ===== 3-COLUMN GRID ===== */
.mf-grid {
	display: grid;
	grid-template-columns: 190px 1fr 185px;
	gap: 22px;
	align-items: start;
}

/* =============================================
       LEFT — HELP & SUPPORT CARD
    ============================================= */
.help-card {
	background: #FFFFFF;
	border: 1px solid #E4D5C4;
	border-radius: 16px;
	padding: 6px 14px;
	cursor: pointer;
	transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
	animation: slideInLeft 0.55s cubic-bezier(0.22, 0.68, 0, 1.2) both;
}

.help-card:hover {
	border-color: #E83B2A;
	box-shadow: 0 6px 22px rgba(232, 59, 42, 0.12);
	transform: translateY(-3px);
}

.help-icon-circle {
	width: 32px;
	height: 32px;
	background: #E83B2A;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 10px;
	position: relative;
}

.help-icon-circle::after {
	content: '';
	position: absolute;
	inset: -4px;
	border-radius: 50%;
	border: 2px solid #E83B2A;
	opacity: 0;
	animation: ripplePulse 2s ease-out infinite;
}

.help-tag-text {
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 1.6px;
	text-transform: uppercase;
	color: #E83B2A;
	margin-bottom: 0px;
	display: block;
}

.help-phone-number {
	font-size: 16px;
	font-weight: 700;
	color: #1A0A00;
	letter-spacing: -0.2px;
	margin-bottom: 2px;
	display: block;
}

.help-timing-text {
	font-size: 11px;
	color: #9A7B6A;
	font-weight: 400;
	display: block;
}

/* =============================================
       CENTER — TITLE + SEARCH + TABS
    ============================================= */
.center-col {
	display: flex;
	flex-direction: column;
	align-items: center;
}

/* Heading */
.main-heading {
	font-family: 'Libre Baskerville', serif;
	font-size: 28px;
	font-weight: 700;
	color: #1A0A00;
	text-align: center;
	margin-bottom: 18px;
	letter-spacing: -0.3px;
	line-height: 1.25;
	animation: fadeDown 0.45s ease 0.05s both;
}

.main-heading .red-word {
	color: #E83B2A;
}

/* Search bar */
.search-outer {
	display: flex;
	align-items: center;
	background: #FFFFFF;
	border: 1.5px solid #E4D5C4;
	border-radius: 40px;
	padding: 0 6px 0 18px;
	width: 100%;
	max-width: 440px;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
	margin-bottom: 18px;
	animation: fadeDown 0.45s ease 0.12s both;
}

.search-outer:focus-within {
	border-color: #E83B2A;
	box-shadow: 0 0 0 4px rgba(232, 59, 42, 0.09);
}

.search-outer input {
	flex: 1;
	border: none;
	outline: none;
	background: transparent;
	font-family: 'DM Sans', sans-serif;
	font-size: 13.5px;
	color: #1A0A00;
	padding: 12px 0;
}

.search-outer input::placeholder {
	color: #BBA898;
}

.search-icon-btn {
	width: 38px;
	height: 38px;
	background: #FFFFFF;
	border: none;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #9A7B6A;
	font-size: 17px;
	transition: color 0.2s, background 0.2s;
	flex-shrink: 0;
}

.search-icon-btn:hover {
	color: #E83B2A;
	background: #FDE8E7;
}

/* ---- Mode Tabs (SIP / Lumpsum / Calculators) ---- */
.mode-pill-wrap {
	display: flex;
	background: #1A1A1A;
	border-radius: 40px;
	padding: 4px;
	gap: 2px;
	margin-bottom: 20px;
	width: 100%;
	max-width: 340px;
	animation: fadeDown 0.45s ease 0.2s both;
}

.mode-pill-btn {
	flex: 1;
	padding: 9px 16px;
	border-radius: 32px;
	font-size: 13px;
	font-weight: 500;
	cursor: pointer;
	text-align: center;
	transition: background 0.22s ease, color 0.22s ease, transform 0.15s ease;
	color: #888888;
	border: none;
	background: transparent;
	font-family: 'DM Sans', sans-serif;
	white-space: nowrap;
	position: relative;
	overflow: hidden;
}

.mode-pill-btn::before {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(255, 255, 255, 0.07);
	opacity: 0;
	border-radius: inherit;
	transition: opacity 0.2s;
}

.mode-pill-btn:hover::before {
	opacity: 1;
}

.mode-pill-btn:hover:not(.active-mode) {
	color: #dddddd;
}

.mode-pill-btn.active-mode {
	background: #E83B2A;
	color: #FFFFFF;
	font-weight: 600;
	transform: scale(1.03);
}

/* ---- Fund Sub-Tabs (Equity / Balanced / Debt) ---- */
.fund-tab-row {
	display: flex;
	gap: 0;
	border-bottom: 1.5px solid #E4D5C4;
	width: 100%;
	max-width: 440px;
	animation: fadeDown 0.45s ease 0.28s both;
}

.fund-tab-btn {
	padding: 11px 22px;
	font-size: 13.5px;
	font-weight: 500;
	color: #9A7B6A;
	cursor: pointer;
	border: none;
	background: transparent;
	font-family: 'DM Sans', sans-serif;
	position: relative;
	transition: color 0.2s ease;
	white-space: nowrap;
}

.fund-tab-btn::after {
	content: '';
	position: absolute;
	bottom: -1.5px;
	left: 0;
	right: 0;
	height: 2.5px;
	background: #E83B2A;
	border-radius: 2px 2px 0 0;
	transform: scaleX(0);
	transition: transform 0.25s cubic-bezier(0.22, 0.68, 0, 1.2);
}

.fund-tab-btn.active-fund {
	color: #E83B2A;
}

.fund-tab-btn.active-fund::after {
	transform: scaleX(1);
}

.fund-tab-btn:hover:not(.active-fund) {
	color: #1A0A00;
}

/* =============================================
       RIGHT — CART + YOUTUBE
    ============================================= */
.right-col {
	display: flex;
	flex-direction: column;
	gap: 12px;
	/*  animation: slideInRight 0.55s cubic-bezier(0.22, 0.68, 0, 1.2) both;*/
}

/* Cart card */
.cart-card-link {
	background: #E83B2A;
	border-radius: 14px;
	padding: 14px 16px;
	display: flex;
	align-items: center;
	gap: 10px;
	cursor: pointer;
	transition: background 0.22s ease, box-shadow 0.22s ease, transform 0.2s ease;
	text-decoration: none;
	position: relative;
	overflow: hidden;
}

.cart-card-link::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
	opacity: 0;
	transition: opacity 0.3s;
	pointer-events: none;
}

.cart-card-link:hover {
	background: #C42F1F;
	box-shadow: 0 8px 24px rgba(232, 59, 42, 0.28);
	transform: translateY(-3px);
}

.cart-card-link:hover::before {
	opacity: 1;
}

.cart-icon-pos {
	position: relative;
	flex-shrink: 0;
}

.cart-icon-pos i {
	font-size: 22px;
	color: #FFFFFF;
}

.cart-count-badge {
	position: absolute;
	top: -8px;
	right: -8px;
	background: #FFFFFF;
	color: #E83B2A;
	font-size: 12px;
	font-weight: 800;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1.5px solid #E83B2A;
}

.cart-text-block {
	flex: 1;
}

.cart-label-main {
	font-size: 13px;
	font-weight: 700;
	color: #FFFFFF;
	display: block;
	line-height: 1.2;
}

.cart-label-sub {
	font-size: 10.5px;
	color: rgba(255, 255, 255, 0.72);
	display: block;
	margin-top: 1px;
}

.cart-chevron {
	color: rgba(255, 255, 255, 0.6);
	font-size: 15px;
	flex-shrink: 0;
}


/* YouTube card */
.yt-card-link {
	background: #FFFFFF;
	border: 1px solid #E4D5C4;
	border-radius: 14px;
	padding: 12px 14px;
	display: flex;
	align-items: center;
	gap: 10px;
	cursor: pointer;
	transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.2s ease;
	text-decoration: none;
}

.yt-card-link:hover {
	border-color: #FF0000;
	box-shadow: 0 4px 16px rgba(255, 0, 0, 0.1);
	transform: translateY(-3px);
}

.yt-icon-box {
	width: 30px;
	height: 30px;
	background: #ff5656;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: transform 0.2s ease;
}

.yt-card-link:hover .yt-icon-box {
	transform: scale(1.1);
}

.yt-text-block {
	flex: 1;
}

.yt-small-label {
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 1.4px;
	text-transform: uppercase;
	color: #FF0000;
	display: block;
}

.yt-main-desc {
	font-size: 12px;
	font-weight: 600;
	color: #1A0A00;
	display: block;
	margin-top: 1px;
}

.yt-ext-icon {
	color: #9A7B6A;
	font-size: 13px;
	flex-shrink: 0;
}

/* =============================================
       KEYFRAME ANIMATIONS
    ============================================= */
@keyframes fadeDown {
	from {
		opacity: 0;
		transform: translateY(-18px);
	}

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

@keyframes slideInLeft {
	from {
		opacity: 0;
		transform: translateX(-30px);
	}

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

@keyframes slideInRight {
	from {
		opacity: 0;
		transform: translateX(30px);
	}

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

@keyframes ripplePulse {
	0% {
		opacity: 0.6;
		inset: 0px;
	}

	100% {
		opacity: 0;
		inset: -10px;
	}
}

/* =============================================
       RESPONSIVE
    ============================================= */
@media (max-width: 700px) {
	.mf-grid {
		grid-template-columns: 1fr;
	}

	.center-col {
		order: -1;
	}
}

/*****************/
/* ============================================
   YOUTUBE CINEMA MODAL — unique CSS, no :root
============================================ */

.modal-xl1 {
	max-width: 800px;
}

.rating .fa-star {
	font-size: 12px;
}

/********************************************
********************************************
*********************************************************/

@media (max-width: 768px) {
	#shownewcart {
		position: fixed;
		bottom: 24px;
		left: 16px;
		z-index: 9;
		text-decoration: none;
	}

	.mf-grid {
		/* grid-template-columns: 1fr 1fr; */
		grid-template-rows: auto auto;
	}


	.mf-grid>div:first-child {
		grid-column: 1;
		grid-row: 1;
		order: 1;
	}


	.right-col {
		grid-column: 2;
		grid-row: 1;
		order: 2;
		flex-direction: column;
		gap: 8px;
	}


	.cart-card-link {
		order: 2;
	}


	.yt-card-link {
		order: 3;
	}

	.center-col {
		grid-column: 1 / -1;
		grid-row: 2;
		order: 3;
	}

	.cart-card-link {
		padding: 10px 10px;
	}

	.cart-label-main {
		font-size: 11px;
	}

	.cart-label-sub {
		font-size: 9px;
	}

	.yt-card-link {
		padding: 9px 10px;
	}

	.yt-main-desc {
		font-size: 11px;
	}


	.help-card {
		padding: 8px 10px;
	}

	.help-phone-number {
		font-size: 13px;
	}

	.mf-wrapper {
		width: 100%;
		border-radius: 0;
		padding: 12px 10px 0px;
	}

	.mobile-d-none {
		display: none;
	}

	.help-card {
		padding: 7px 16px;
		display: none;
	}

	.callback-btn {
		margin-top: 0px;
	}
}


/*************/

/*****************************top u tube section start****************************************************************************/
@keyframes fadeUp {
	from {
		opacity: 0;
		transform: translateY(12px)
	}

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

@keyframes slideIn {
	from {
		opacity: 0;
		transform: translateX(-10px)
	}

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

@keyframes ripple {
	0% {
		transform: scale(1);
		opacity: 0.6
	}

	100% {
		transform: scale(2.2);
		opacity: 0
	}
}

@keyframes shimmer {
	0% {
		background-position: -200% center
	}

	100% {
		background-position: 200% center
	}
}

.w {
	/*width: 299px; font-family:var(--font-sans); */
	/* animation:fadeUp 0.45s ease both; */
	
}

.w-head {
	font-size: 14px;
	font-weight: 500;
	color: var(--color-text-primary);
	margin-bottom: 11px;
	position: relative;
	padding-bottom: 5px;
	display: inline-block
}

.w-head::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 1.5px;
	border-radius: 2px;
	background: linear-gradient(90deg, #e8380d 0%, #ffb347 50%, #e8380d 100%);
	background-size: 200% auto;
	animation: shimmer 2.2s linear infinite
}

.w-yt {
	display: flex;
	align-items: center;
	gap: 9px;
	background: #1D3461;
	border: 1px solid rgba(232, 56, 13, 0.18);
	border-radius: 4px;
	padding: 4px 9px;
	margin: 0px 0 4px;
	text-decoration: none;
	position: relative;
	overflow: hidden;
	transition: transform 0.2s, box-shadow 0.2s;
	animation: fadeUp 0.45s 0.08s ease both;
	opacity: 0;
	animation-fill-mode: forwards
}

.w-yt:hover {
	transform: translateY(-2px);
	box-shadow: 0 5px 18px rgba(232, 56, 13, 0.15)
}

.w-yt:active {
	transform: scale(0.97)
}

.w-yt-ico {
	width: 22px;
	height: 22px;
	background: #e8380d;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	position: relative
}

.w-yt-ico svg {
	width: 16px;
	height: 16px;
	fill: #fff;
	position: relative;
	z-index: 1
}

.w-yt-ico::after {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: 8px;
	background: #e8380d;
	animation: ripple 2s ease infinite
}

.w-yt-info {
	flex: 1;
	min-width: 0
}

.w-yt-tag {
	font-size: 9px;
	font-weight: 500;
	letter-spacing: 0.08em;
	color: #c9502a;
	text-transform: uppercase;
	margin-bottom: 1px
}

.w-yt-name {
	font-size: 14px;
	font-weight: 500;
	color: #ffffff;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis
}

.w-yt-arr {
	width: 22px;
	height: 22px;
	border-radius: 6px;
	background: rgba(232, 56, 13, 0.08);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: background 0.18s, transform 0.18s
}

.w-yt-arr svg {
	width: 11px;
	height: 11px;
	stroke: #ffffff;
	fill: none;
	stroke-width: 2.2;
	stroke-linecap: round;
	stroke-linejoin: round;
	transition: transform 0.18s
}

.w-yt:hover .w-yt-arr {
	background: rgba(232, 56, 13, 0.16)
}

.w-yt:hover .w-yt-arr svg {
	transform: translate(2px, -2px)
}

.w-div {
	display: flex;
	align-items: center;
	gap: 6px;
	margin-bottom: 9px
}

.w-div-line {
	flex: 1;
	height: 0.5px;
	background: var(--color-border-tertiary)
}

.w-div-pill {
	font-size: 9px;
	font-weight: 500;
	letter-spacing: 0.06em;
	color: var(--color-text-tertiary);
	padding: 1px 7px;
	border-radius: 10px;
	border: 0.5px solid var(--color-border-tertiary);
	white-space: nowrap
}

.w-list {
	list-style: none;
	padding: 0;
	margin: 0 0 3px;
	display: flex;
	flex-direction: column;
	gap: 2px
}

.w-item {
	opacity: 0;
	animation: slideIn 0.35s ease forwards
}

.w-item:nth-child(1) {
	animation-delay: 0.12s
}

.w-item:nth-child(2) {
	animation-delay: 0.18s
}

.w-item:nth-child(3) {
	animation-delay: 0.24s
}

.w-item:nth-child(4) {
	animation-delay: 0.30s
}

.w-link {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 1px 7px;
	border-radius: 8px;
	border: 0.5px solid transparent;
	text-decoration: none;
	transition: background 0.16s, border-color 0.16s, transform 0.16s
}

.w-link:hover {
	background: #fff6f4;
	border-color: rgba(232, 56, 13, 0.15);
	transform: translateX(1px)
}

.w-link:active {
	transform: translateX(1px) scale(0.97)
}

.w-dot {
	width: 15px;
	height: 15px;
	border-radius: 5px;
	/* background:#fff0ed; */
	/* border:0.5px solid rgba(232,56,13,0.2); */
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: background 0.16s, border-color 0.16s
}

.w-dot svg {
	width: 10px;
	height: 10px;
	fill: #e8380d;
	transition: fill 0.16s, transform 0.2s
}

.w-link:hover .w-dot {
	background: #e8380d;
	border-color: #e8380d
}

.w-link:hover .w-dot svg {
	fill: #fff;
	/*transform: scale(1)*/
	line-height:15px;
	padding-bottom:0.5px
}

.w-text {
	font-size: 12px;
	color: #0e2249 !important;
	line-height: 1.3;
	transition: color 0.16s;
	/* font-family: arial; */
	/* text-transform: uppercase; */
}

.w-link:hover .w-text {
	color: var(--color-text-primary)
}

.w-foot {
	text-align: center;
	animation: fadeUp 0.35s 0.38s ease both;
	opacity: 0;
	animation-fill-mode: forwards
}

.w-btn {
	font-size: 11.5px;
	font-weight: 700;
	color: #0e1727;
	text-decoration: none;
	padding: 4px 8px;
	border-radius: 12px;
	border: 1px solid #182c52;
	transition: box-shadow 0.2s, transform 0.2s;
	text-align: center;
}

.w-btn:hover {
	box-shadow: 0 3px 12px rgba(232, 56, 13, 0.2);
	transform: translateY(-1px);
	color:#1d3461;
	border:1px solid #2d2d78;
}

.w-btn:active {
	transform: scale(0.96)
}

.w-btn svg {
	width: 11px;
	height: 11px;
	stroke: #fffefd;
	fill: none;
	stroke-width: 2.2;
	stroke-linecap: round;
	stroke-linejoin: round;
	transition: transform 0.18s
}

.w-btn:hover svg {
	transform: translateX(3px)
}

/*******end************/

/* ── PREMIUM: Royal Navy + Champagne Gold ─────────────
   Apni existing CSS mein yeh add karo (sabse neeche)
   Yeh #E83B2A (red) ko override karega
──────────────────────────────────────────────────────── */

/* 1. Top accent strip */
.mf-wrapper::before {
	background: linear-gradient(90deg,
			transparent 0%, #C4961E 30%,
			#1D3461 70%, transparent 100%);
}

/* 2. Help card */
.help-card:hover {
	border-color: #C4961E;
	box-shadow: 0 6px 22px rgba(196, 150, 30, 0.12);
}

.help-icon-circle {
	background: #C4961E;
}

.help-icon-circle::after {
	border-color: #C4961E;
}

.help-tag-text {
	color: #C4961E;
}

/* 3. Call back button */
.callback-btn {
	color: #1D3461;
	border-color: #1D3461;
	background: #fff;
}

.callback-btn:hover {
	background: #1D3461;
	color: #ffffff;
}

/* 4. Search focus ring */
.search-outer:focus-within {
	border-color: #C4961E;
	box-shadow: 0 0 0 4px rgba(196, 150, 30, 0.09);
}

/* 5. Mode pills (SIP / Lumpsum / Calculators) */
.mode-pill-btn.active-mode {
	background: #1D3461;
}

/* 6. Fund sub-tabs (Equity / Balanced / Debt) */
.fund-tab-btn.active-fund {
	color: #1D3461 !important;
	font-weight: 600;
}

.fund-tab-btn::after {
	background: #C4961E !important;
}

/* 7. Cart card */
.cart-card-link {
	background: linear-gradient(90deg, #0a1628 0%, #1D3461 100%) !important;
}

.cart-card-link:hover {
	background: #162750;
	box-shadow: 0 8px 24px rgba(29, 52, 97, 0.28);
}

.cart-count-badge {
	background: #ff2828;
	color: #fff;
	border-color: #1D3461;
	text-align: center;
}


#items-count {
	display: none;
}

/**************************************************/

/* OVERLAY — covers entire viewport */

/*****************add to cart css here new style with right sign ***************************/

/* ============================================
   ADD TO CART — Premium Success Animation
============================================ */
.btn_addtocart {
	position: relative;
	overflow: hidden;
}

.btn_addtocart.cart-pop {
	animation: cartPop 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes cartPop {
	0% {
		transform: scale(1);
	}

	35% {
		transform: scale(0.92);
	}

	65% {
		transform: scale(1.06);
	}

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

.cart-check {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	margin-right: 9px;
	flex-shrink: 0;
	background: #ffffff;
	/* padding: 0px; */
}

@keyframes checkPop {
	0% {
		transform: scale(0) rotate(-45deg);
		opacity: 0;
	}

	60% {
		transform: scale(1.2) rotate(5deg);
		opacity: 1;
	}

	100% {
		transform: scale(1) rotate(0deg);
		opacity: 1;
	}
}

.cart-check svg {
	width: 24px;
	height: 13px;
}

.cart-check path {
	stroke: #1f8259;
	stroke-width: 3.5;
	stroke-linecap: round;
	stroke-linejoin: round;
	fill: none;
	stroke-dasharray: 28;
	stroke-dashoffset: 20;
}

/* ADD these instead - separate trigger class */
.cart-check.cart-check-animate {
	animation: checkPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.05s forwards;
}

.cart-check.cart-check-animate path {
	animation: checkDraw 0.35s ease-out 0.25s forwards;
}

/* Static state for already-added items (no animation) */
.cart-check {
	transform: scale(1);
	opacity: 1;
}

.cart-check path {
	stroke-dashoffset: 0;
}

@keyframes checkDraw {
	to {
		stroke-dashoffset: 0;
	}
}


.added .btn_addtocart {
	position: relative;
}

.added .btn_addtocart::after {
	content: '';
	position: absolute;
	inset: -3px;
	border-radius: 32px;
	background: linear-gradient(135deg, rgba(56, 179, 122, 0.5) 0%, rgba(27, 111, 77, 0.5) 100%);
	opacity: 0;
	z-index: -1;
	animation: glowPulse 0.6s ease-out 0.1s;
}

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

	100% {
		opacity: 0;
		transform: scale(1.12);
	}
}

.cart-icon-pos.bump i,
.cart-btn.bump i {
	animation: cartBump 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes cartBump {
	0% {
		transform: scale(1) rotate(0deg);
	}

	30% {
		transform: scale(1.3) rotate(-12deg);
	}

	55% {
		transform: scale(0.9) rotate(8deg);
	}

	100% {
		transform: scale(1) rotate(0deg);
	}
}

.cart-count-badge.bump,
#items-count.bump {
	animation: badgeBump 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes badgeBump {
	0% {
		transform: scale(1);
	}

	40% {
		transform: scale(1.5);
	}

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


/****************************************************************************************************/


/* ===== Cart Quantity +/- Control ===== */
.qty-wrap {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2px;
}

.qty-control {
	display: flex;
	align-items: center;
	gap: 5px;
	justify-content: center;
}

.qty-btn {
	width: 26px;
	height: 26px;
	border-radius: 50%;
	border: none;
	font-size: 17px;
	font-weight: 900;
	line-height: 1;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: all 0.2s ease;
	padding: 0;
}

.qty-btn.minus-btn {
	background: rgba(75, 75, 140, 0.12);
	color: #4b4b8c;
	margin-left:7px;
}

.qty-btn.plus-btn {
	background: #4b4b8c;
	color: #fff;
	margin-right:7px;
}

.qty-btn:hover {
	background: #9b9045 !important;
	color: #fff !important;
	transform: scale(1.12);
	box-shadow: 0 2px 8px rgba(155, 144, 69, 0.4);
}

.canvattextinput {
	width: 72px !important;
	border-radius: 7px !important;
	border: 1.5px solid #e0e0f0 !important;
}

.canvattextinput.qty-invalid {
	border-color: #dc3545 !important;
	background: #fff5f5 !important;
	animation: shake 0.3s ease;
}

.qty-err-msg {
	font-size: 9px;
	color: #dc3545;
	display: none;
	margin-top: 2px;
	text-align: center;
	white-space: nowrap;
}

@keyframes shake {

	0%,
	100% {
		transform: translateX(0);
	}

	25% {
		transform: translateX(-4px);
	}

	75% {
		transform: translateX(4px);
	}
}

#cart_subtotal {
	display: inline-block;
	font-weight: 700;
	transition: transform .3s ease;
}

#cart_subtotal.bump {
	transform: scale(1.1);
}




/************************/



    /* ----- main widget box (same structure, unique styling) ----- */
    .lrr-box {
      width: 300px !important;
      border-radius: 14px;
      overflow: hidden;
      /* font-family: 'Manrope', sans-serif; */
      /* box-shadow: 0 6px 0px rgba(10, 20, 60, 0.18); */
      background: #ffffff;
      transition: box-shadow 0.25s ease;
      border: 1px solid #efe6aa;
      margin: auto !important;
    }
    .lrr-box:hover {
      box-shadow: 0 12px 36px rgba(10, 20, 60, 0.25);
    }

    /* ----- header (deep navy + gold accent) ----- */
    .lrr-head {
      background: #0f1f3d;          /* deep navy, same as original but richer */
      /* padding: 7px 18px 8px; */
      position: relative;
      overflow: hidden;
    }
    /* subtle decorative glow */
    .lrr-head::after {
      content: '';
      position: absolute;
      top: -30px;
      right: -30px;
      width: 80px;
      height: 80px;
      border-radius: 50%;
      background: rgba(184, 148, 60, 0.10);
      pointer-events: none;
    }
    .lrr-head-title {
      font-size: 13px;
      font-weight: 800;
      color: #f5f0e0;
      margin: 0;
      line-height: 1.3;
      letter-spacing: -0.2px;
      position: relative;
      z-index: 1;
      padding: 7px 18px 6px;
    }
    /* tiny "play" icon as badge (like original) */
    .lrr-head-title::before {
      content: "\f04b";  /* fa-play */
      font-family: "Font Awesome 6 Free";
      font-weight: 900;
      font-size: 12px;
      background: #b8943c;
      color: #fff;
      display: inline-block;
      width: 24px;
      height: 24px;
      line-height: 24px;
      text-align: center;
      border-radius: 50%;
      margin-right: 8px;
      vertical-align: middle;
      box-shadow: 0 2px 8px rgba(184, 148, 60, 0.3);
    }

    /* ----- list / rows (unique hover effects) ----- */
    .lrr-list {
      background: #ffffff;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .lrr-row {
      transition: background 0.2s ease, padding-left 0.2s ease, transform 0.15s;
      position: relative;
      display: flex;
      align-items: center;
      gap: 6px;
      padding: 2px 7px;
      border-radius: 8px;
      border: 0.5px solid transparent;
      text-decoration: none;
    }
    .lrr-row:last-child {
      border-bottom: none;
    }

    /* left accent bar (unique) */
    .lrr-row::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      width: 4px;
      height: 100%;
      background: #b8943c;
      opacity: 0;
      transition: opacity 0.2s ease;
      border-radius: 0 4px 4px 0;
    }

    /* hover effects : same as "uper effect" (slide + gold accent) */
    .lrr-row:hover {
      background: #faf6ed;           /* warm cream */
      padding-left: 22px;            /* slide right */
    }
    .lrr-row:hover::before {
      opacity: 1;
    }
    .lrr-row:hover .lrr-ico {
      background: #0f1f3d;
      color: #c8a84b;
      transform: scale(1.02);
    }
    .lrr-row:hover .lrr-chevron {
      color: #b8943c;
      transform: translateX(5px);
    }
    .lrr-row:hover .lrr-name {
      color: #0f1f3d;
    }

    /* icon box */
    .lrr-ico {
      width: 20px;
      height: 20px;
      border-radius: 7px;
      background: #eef0f8;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
    }
    .lrr-ico i {
      font-size: 11px;
      color: #1a2b5e;
      transition: color 0.2s;
    }
    .lrr-row:hover .lrr-ico i {
      color: #c8a84b;
    }

    /* text */
    .lrr-txt {
      flex: 1;
      min-width: 0;
    }
    .lrr-name {
      font-size: 12px;
      color: #0e2249 !important;
      line-height: 1.3;
      transition: color 0.16s;
      /* letter-spacing: 0px; */
    }
    .lrr-sub {
      font-size: 11px;
      font-weight: 500;
      color: #9aa3b8;
      margin: 0;
      transition: color 0.2s;
      display: none;
    }
    .lrr-row:hover .lrr-sub {
      color: #6b7a93;
    }

    /* chevron (arrow) */
    .lrr-chevron {
      font-size: 12px;
      color: #c8ccdb;
      flex-shrink: 0;
      transition: color 0.2s ease, transform 0.2s ease;
    }

    /* small extra: pulse on icon (subtle) */
    @keyframes softPulse {
      0% { transform: scale(1); }
      50% { transform: scale(1.03); }
      100% { transform: scale(1); }
    }
    .lrr-row:hover .lrr-ico {
      animation: softPulse 0.4s ease 1;
    }
    .product_icon_mobile{display:none;}
    
    
    /************/
    
    /* Default state mein calculatortab hidden */
#calculatortab {
    display: none;
}
#calculatortab.show.active {
    display: block;
}

/**********************/

@media (max-width: 768px) {
    #cart-offcanvas .searchboxmf {
      
        gap: 1px;
    }
}
/*********/
/* ── MOBILE: bottom sticky bar ── */
@media (max-width: 768px) {
     .offcanvas-title{ font-size:18px;}
    /* sticky footer bar on mobile */
    #cart-offcanvas .col-md-3 {
        position: fixed !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        flex: none !important;
        border-left: none !important;
        border-top: 0.5px solid #e2e4e8 !important;
        padding: 10px 14px !important;
        background: #fff !important;
        z-index: 100 !important;
    }
 
    /* mobile: horizontal layout inside payment bar */
    #cart-offcanvas .searchboxmf {
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
        border-radius: 0 !important;
        padding: 10px 14px !important;
        gap: 12px !important;
    }
 
    #cart-offcanvas .cart-total-amt {
        font-size: 18px !important;
    }
 
    #cart-offcanvas .cart-total-amt #cart_subtotal {
        font-size: 18px !important;
    }
 
    #cart-offcanvas #btn-submit {
        width: auto !important;
        padding: 10px 20px !important;
        margin-top: 0 !important;
        white-space: nowrap !important;
    }
 
    /* hide "add more" on mobile bar */
    #cart-offcanvas .d-grid.gap-2 { display: none !important; }
 
    #cart-offcanvas .searchboxmf>div:first-child { flex: 1; }
    #cart-offcanvas .mt-2.px-2 { flex-shrink: 0; }
 
    /* cards on mobile */
    #cart-offcanvas .cart-item-wrapper {padding: 7px 0px !important;}
 
    #cart-offcanvas .singlescheme {gap: 4px !important;}
 
    #cart-offcanvas .scheme-cartname {
        /* flex: 1 1 140px !important; */
        margin-bottom: 0 !important;
    }
 
    #cart-offcanvas .scheme-name {font-size: 13px !important;}
 
    #cart-offcanvas .separator { padding: 0 4px !important; }
 
    #cart-offcanvas .iteminvamt.canvattextinput {width: 73px !important;font-size: 12px !important;}
 
    #cart-offcanvas .qty-btn {width: 25px !important;height: 25px !important;font-size: 13px !important;}
    .separatorgreen{ background:none !important;}
    .qty-btn.minus-btn{ margin-left:0px;}
    #cart-offcanvas .offtext, #cart-offcanvas .xtra-small {
     padding: 2px 0px;
    }
    .qty-control {
    display: flex;
    align-items: flex-start;
    gap: 4px;
    justify-content: left;
}
}
 
/* ── SMALL PHONES ── */
@media (max-width: 420px) {
    
    #cart-offcanvas .cart-total-amt,
    #cart-offcanvas .cart-total-amt #cart_subtotal { font-size: 16px !important; }
    #cart-offcanvas #btn-submit { font-size: 10px !important; padding: 9px 14px !important; }
}


/*******yout tube link section css start here ************/
.page-wrapper {
	display: none !important;
}
