* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body { 
	scroll-behavior: smooth;  
}

/* ===== HERO SECTION ===== */
.hero {
	position: relative;
	overflow: hidden;
	border-radius: 20px;
	background: linear-gradient(135deg, var(--green-color) 0%, #1a403d 100%);
	color: #fff;
	padding: 80px 50px;
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
	margin: 0 15px 30px;
}

.hero-content {
	max-width: 100%;
}

.hero h1 {
	font-weight: 800;
	font-size: 3rem;
	line-height: 1.2;
	animation: fadeDown 1s ease;
	text-align: left;
	color: #fff;
	margin-bottom: 20px;
}

.hero p {
	color: #f8f9fa;
	margin-top: 15px;
	font-size: 1.1rem;
	animation: fadeDown 1.3s ease;
	text-align: left;
	line-height: 1.6;
	margin-bottom: 30px;
}

@keyframes fadeDown {
	from {
		opacity: 0;
		transform: translateY(-20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.hero-btns {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	justify-content: flex-start;
	align-items: center;
}

.hero-btns .btn {
	border-radius: 50px;
	padding: 14px 32px;
	font-weight: 600;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
	transition: all 0.3s ease;
	font-size: 0.95rem;
	white-space: nowrap;
	border: none;

}

.btn-primary-custom {
	background: linear-gradient(135deg, #ba7f32, #9d6828);
	color: #fff;

}

.btn-primary-custom:hover {
	background: linear-gradient(135deg, #9d6828, #7d5420);
	transform: translateY(-3px);
	box-shadow: 0 12px 28px rgba(186, 127, 50, 0.4);
}

.btn-secondary-custom {
	background: rgb(80, 79, 79);
	color: #fff;
}

.btn-secondary-custom:hover {
	background: #0a2545;
	transform: translateY(-3px);
	box-shadow: 0 12px 28px rgba(15, 52, 96, 0.4);
}

.btn-outline-custom {
	border: 2px solid #fff;
	color: #fff;
	background: transparent;
}

.btn-outline-custom:hover {
	background-color: #fff;
	color: #ba7f32;
	transform: translateY(-3px);
}

/* ===== APPROVAL STATUS SECTION ===== */
.approval-status-section {
	padding: 60px 15px;
	background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
	border-radius: 20px;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
	margin: 30px 15px;
}

.status-form-container {
	max-width: 900px;
	margin: 0 auto;
}

.status-form {
	background: #fff;
	padding: 30px;
	border-radius: 15px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.form-group-inline {
	display: flex;
	gap: 15px;
	align-items: stretch;
}

.status-input {
	flex: 1;
	border-radius: 12px;
	border: 2px solid #e8e8e8;
	padding: 14px 20px;
	font-size: 0.95rem;
	transition: all 0.3s ease;
}

.status-input:focus {
	border-color: #ba7f32;
	box-shadow: 0 0 0 0.2rem rgba(186, 127, 50, 0.15);
	outline: none;
}

.status-check-btn {
	background: linear-gradient(135deg, #ba7f32, #9d6828);
	color: #fff;
	border: none;
	border-radius: 12px;
	padding: 14px 30px;
	font-weight: 600;
	white-space: nowrap;
	transition: all 0.3s ease;
}

.status-check-btn:hover {
	background: linear-gradient(135deg, #9d6828, #7d5420);
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(186, 127, 50, 0.3);
}

.status-card {
	background: #fff;
	border-radius: 20px;
	padding: 40px;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
	animation: slideUp 0.5s ease;
}

@keyframes slideUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.status-header {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-bottom: 40px;
	padding-bottom: 25px;
	border-bottom: 2px solid #f0f0f0;
}

.status-icon-wrapper {
	width: 70px;
	height: 70px;
	background: linear-gradient(135deg, #ba7f32, #9d6828);
	border-radius: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.status-main-icon {
	font-size: 32px;
	color: #fff;
}

.status-info h5 {
	color: #0f3460;
	font-weight: 700;
	margin-bottom: 5px;
	font-size: 1.3rem;
}

.status-ref-number span {
	color: #ba7f32;
}

.status-applicant-name {
	color: #666;
	margin: 0;
	font-size: 0.95rem;
}

.status-applicant-name span {
	color: #0f3460;
	font-weight: 600;
}

/* Timeline Styles */
.status-timeline {
	position: relative;
	padding-left: 50px;
}

.status-timeline::before {
	content: '';
	position: absolute;
	left: 20px;
	top: 0;
	bottom: 0;
	width: 3px;
	background: linear-gradient(180deg, #ba7f32 0%, #e8e8e8 100%);
}

.timeline-step {
	position: relative;
	padding-bottom: 40px;
	opacity: 0.5;
	transition: all 0.3s ease;
}

.timeline-step.completed {
	opacity: 1;
}

.timeline-step.active {
	opacity: 1;
}

.timeline-step.completed .timeline-marker {
	background: linear-gradient(135deg, #28a745, #20c997);
	border-color: #28a745;
}

.timeline-step.active .timeline-marker {
	background: linear-gradient(135deg, #ba7f32, #9d6828);
	border-color: #ba7f32;
	animation: pulse 2s infinite;
}

@keyframes pulse {

	0%,
	100% {
		box-shadow: 0 0 0 0 rgba(186, 127, 50, 0.4);
	}

	50% {
		box-shadow: 0 0 0 15px rgba(186, 127, 50, 0);
	}
}

.timeline-marker {
	position: absolute;
	left: -30px;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: #f0f0f0;
	border: 3px solid #e8e8e8;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	z-index: 2;
}

.timeline-marker i {
	font-size: 18px;
	color: #fff;
}

.timeline-content h6 {
	color: #0f3460;
	font-weight: 700;
	margin-bottom: 8px;
	font-size: 1.1rem;
}

.timeline-date {
	color: #ba7f32;
	font-size: 0.85rem;
	font-weight: 600;
	margin-bottom: 5px;
}

.timeline-desc {
	color: #666;
	font-size: 0.9rem;
	line-height: 1.6;
	margin: 0;
}

.status-footer {
	margin-top: 40px;
	padding-top: 30px;
	border-top: 2px solid #f0f0f0;
}

.status-details-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 20px;
	margin-bottom: 30px;
}

.detail-item {
	display: flex;
	align-items: center;
	gap: 15px;
	padding: 18px;
	background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
	border-radius: 12px;
	border: 1px solid #e8e8e8;
	transition: all 0.3s ease;
}

.detail-item:hover {
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.detail-item i {
	font-size: 24px;
	color: #ba7f32;
}

.detail-item div {
	flex: 1;
}

.detail-item small {
	display: block;
	color: #666;
	font-size: 0.8rem;
	margin-bottom: 3px;
}

.detail-item strong {
	display: block;
	color: #0f3460;
	font-size: 1rem;
}

.status-message {
	padding: 20px;
	border-radius: 12px;
	margin-bottom: 20px;
	font-size: 0.95rem;
	line-height: 1.6;
}

.status-message.success {
	background: #d4edda;
	border: 1px solid #c3e6cb;
	color: #155724;
}

.status-message.warning {
	background: #fff3cd;
	border: 1px solid #ffeaa7;
	color: #856404;
}

.status-message.info {
	background: #d1ecf1;
	border: 1px solid #bee5eb;
	color: #0c5460;
}

.action-buttons {
	display: flex;
	gap: 15px;
	flex-wrap: wrap;
}

.action-buttons .btn {
	border-radius: 10px;
	padding: 10px 20px;
	font-weight: 600;
	transition: all 0.3s ease;
}

.demo-info {
	text-align: center;
}

.demo-refs {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	margin-top: 10px;
}

.demo-ref-tag {
	display: inline-block;
	padding: 8px 18px;
	background: linear-gradient(135deg, #f8f9fa, #e8e8e8);
	border: 1px solid #ddd;
	border-radius: 20px;
	font-size: 0.85rem;
	font-weight: 600;
	color: #0f3460;
	cursor: pointer;
	transition: all 0.3s ease;
}

.demo-ref-tag:hover {
	background: linear-gradient(135deg, #ba7f32, #9d6828);
	color: #fff;
	border-color: #ba7f32;
	transform: translateY(-2px);
}


/* ===== TOP PARTNER BANKS SECTION ===== */
.bank-section {
	padding: 13px 15px;
	background: #fff;
	border-radius: 20px;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
	margin: 30px auto; 
}

.section-title {
	font-weight: 700;
	font-size: 2.2rem; 
	margin-bottom: 10px;
}

.section-subtitle {
	color: #666;
	font-size: 1rem;
	margin-bottom: 40px;
}

.bank-scroll-container {
	position: relative;
	overflow: hidden;
}

.bank-scroll-wrapper {
	display: flex;
	gap: 25px;
	overflow-x: auto;
	scroll-behavior: smooth;
	padding: 10px 20px 30px;
}

.bank-scroll-wrapper::-webkit-scrollbar {
	display: none;
}

.bank-card {
	flex: 0 0 180px;
	/* reduced from 280px */
	background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
	border-radius: 15px;
	/* slightly smaller */
	border: 2px solid #e8e8e8;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
	/* lighter shadow */
	padding: 15px 12px;
	/* reduced padding */
	text-align: center;
	transition: all 0.3s ease;
	position: relative;
}

.bank-card:hover {
	transform: translateY(-8px);
	border-color: #ba7f32;
	box-shadow: 0 10px 25px rgba(186, 127, 50, 0.2);
}

.bank-card img {
	height: 35px;
	/* smaller logo */
	object-fit: contain;
	margin-bottom: 12px;
	/* reduced spacing */
	transition: transform 0.3s ease;
}

.bank-card:hover img {
	transform: scale(1.05);
}

.bank-card h6 {
	font-weight: 600;
	font-size: 0.95rem;
	/* smaller font */
	color: #0f3460;
	margin-bottom: 6px;
}

.bank-card p {
	font-size: 0.8rem;
	/* smaller text */
	color: #555;
	margin-bottom: 4px;
}

.bank-card strong {
	color: #ba7f32;
}


/* Scroll Buttons */
.scroll-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: linear-gradient(135deg, #ba7f32, #9d6828);
	border: none;
	border-radius: 50%;
	width: 45px;
	height: 45px;
	color: #fff;
	font-size: 1.2rem;
	cursor: pointer;
	z-index: 10;
	box-shadow: 0 4px 15px rgba(186, 127, 50, 0.3);
	transition: all 0.3s ease;
}

.scroll-btn:hover {
	transform: translateY(-50%) scale(1.15);
	background: linear-gradient(135deg, #9d6828, #7d5420);
}

.left-btn {
	left: -2px;
}

.right-btn {
	right: -2px;
}


/* ===== BENEFITS SECTION ===== */
.benefits {
	background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
	border-radius: 20px;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
	padding: 50px 40px;
	margin: 30px 15px;
}

.benefit-item {
	display: flex;
	align-items: flex-start;
	margin-bottom: 30px;
	padding: 20px;
	background: #fff;
	border-radius: 15px;
	transition: all 0.3s ease;
}

.benefit-item:hover {
	transform: translateX(10px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.benefit-item i {
	font-size: 2.5rem;
	background: linear-gradient(135deg, #ba7f32, #9d6828);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-right: 20px;
	flex-shrink: 0;
}

.benefit-item h6 {
	font-weight: 700;
	margin-bottom: 8px; 
	font-size: 1.1rem;
}

.benefit-item p {
	margin: 0;
	font-size: 0.95rem;
	color: #666;
	line-height: 1.6;
}

/* ===== DETAILS SECTION ===== */
.details-section {
	background: #fff;
	border-radius: 20px;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
	padding: 50px 40px;
	margin: 30px 15px;
}

.details-section h3 {
	margin-bottom: 40px; 
}

.details-section h4 { 
	font-weight: 700;
	margin-bottom: 20px;
	font-size: 1.2rem;
}

.details-section ul {
	padding-left: 0;
	list-style: none;
}

.details-section ul li {
	margin-bottom: 12px;
	color: #555;
	font-size: 0.95rem;
	padding-left: 25px;
	position: relative;
}

.details-section ul li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: #ba7f32;
	font-weight: bold;
	font-size: 1.1rem;
}

/* ===== PROCESS STEPS ===== */
.process-section {
	padding: 50px 30px;
	background: #f7f9f9;
	border-radius: 20px; 
	margin: 30px 15px;
}
 
 

.step-card { 
	border-radius: 20px; 
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	padding: 35px 25px;
	height: 100%;
	text-align: center;
	position: relative;
	    border: 1px solid #cad3d3;
	overflow: hidden; 
}
 

.step-icon {
	background: #2d6260;
	color: #fff;
	border-radius: 50%;
	width: 70px;
	height: 70px;
	line-height: 70px;
	font-weight: 800;
	font-size: 28px;
	margin: 0 auto 20px;
	box-shadow: 0 8px 20px rgb(155 169 168);
	transition: all 0.4s ease;
} 

.step-card h6 {
	font-weight: 700;
	margin-bottom: 12px;
	font-size: 1.1rem;
	color: #0f3460;
	transition: color 0.3s ease;
}

.step-card:hover h6 {
	color:#2d6260;
}

.step-card p {
	font-size: 0.95rem; 
	margin: 0;
	line-height: 1.6;
}

/* ===== MODAL ===== */
.modal-content {
	border-radius: 20px;
	border: none;
	background: #fff;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

/* Increase modal sizes */
.modal-lg {
	max-width: 700px;
}

.modal-xl {
	max-width: 1200px;
}

.result-icon {
	font-size: 4rem;
	margin-bottom: 1rem;
}

.btn-modern {
	border-radius: 25px;
	padding: 10px 25px;
	font-weight: 500;
	transition: all 0.3s ease;
}

.btn-modern:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.eligibility-card {
	border: none;
	border-radius: 10px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	margin-top: 1.5rem;
}

.eligibility-card .card-header {
	background-color: #f8f9fa;
	border-bottom: 2px solid #dee2e6;
	font-weight: 600;
	padding: 1rem;
}

.eligibility-card .card-body {
	padding: 1.5rem;
}

.eligibility-card .card-body p {
	margin-bottom: 0.75rem;
	font-size: 0.95rem;
}


@media (min-width: 1400px) {
	.modal-xl {
		max-width: 1300px;
	}
}

.modal-header {
	border: none;
	padding: 35px 35px 25px;
	background: linear-gradient(135deg, #ba7f32, #9d6828);
	border-radius: 20px 20px 0 0;
}

.modal-title {
	color: #fff !important;
	font-size: 1.4rem;
}

.modal-header .btn-close {
	filter: brightness(0) invert(1);
}

.modal-body {
	padding: 35px;
}

.modal-body input,
.modal-body select {
	border-radius: 12px;
	border: 2px solid #e8e8e8;
	padding: 6px 6px;
	font-size: 1rem;
	transition: all 0.3s ease;
}

.modal-body input:focus,
.modal-body select:focus {
	border-color: #ba7f32;
	box-shadow: 0 0 0 0.2rem rgba(186, 127, 50, 0.15);
	outline: none;
}

.submit-btn {
	background: linear-gradient(135deg, #ba7f32, #9d6828);
	color: white;
	padding: 16px 32px;
	border-radius: 50px;
	border: none;
	font-weight: 600;
	transition: all 0.3s ease;
	width: 100%;
	font-size: 1.05rem;
}

.submit-btn:hover {
	background: linear-gradient(135deg, #9d6828, #7d5420);
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(186, 127, 50, 0.4);
}

.form-label {
	font-weight: 600;
	margin-bottom: 12px;
	font-size: 1rem;
	color: #0f3460;
}

.form-control,
.form-select {
	min-height: 42px;
}

/* ===== NEW ELIGIBILITY FLOW STYLES ===== */
.initial-eligibility-modal .modal-dialog {
	max-width: 80%;
}

.initial-eligibility-modal .modal-content {
	border-radius: 20px;
	overflow: hidden;
}

.initial-eligibility-modal .modal-header {
	background: linear-gradient(135deg, #ba7f32, #9d6828);
	padding: 30px 30px;
}

.initial-eligibility-modal .modal-title {
	font-size: 1.5rem;
	font-weight: 700;
}

.initial-eligibility-modal .form-control,
.initial-eligibility-modal .form-select {
	border-radius: 12px;
	border: 2px solid #e8e8e8;
	padding: 16px 20px;
	font-size: 1rem;
}

.initial-eligibility-modal .form-control:focus,
.initial-eligibility-modal .form-select:focus {
	border-color: #ba7f32;
	box-shadow: 0 0 0 0.2rem rgba(186, 127, 50, 0.15);
}

/* Progress Dots - Universal for all modals */
.progress-line {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	height: 3px;
	background: #e0e0e0;
	z-index: 0;
}

.step-dot {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: #fff;
	border: 2px solid #e0e0e0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.9rem;
	color: #999;
	position: relative;
	z-index: 1;
	transition: all 0.3s;
}

.step-dot.active {
	background: #ba7f32;
	color: white;
	border-color: #ba7f32;
	transform: scale(1.15);
}

.radio-group {
	display: flex;
	gap: 20px;
	margin-top: 12px;
}

.radio-option {
	flex: 1;
}

.radio-option input[type="radio"] {
	display: none;
}

.radio-option label {
	display: block;
	padding: 16px 24px;
	border: 2px solid #e8e8e8;
	border-radius: 12px;
	text-align: center;
	cursor: pointer;
	transition: all 0.3s ease;
	font-weight: 600;
	color: #666;
	font-size: 1rem;
}

.radio-option input[type="radio"]:checked+label {
	border-color: #ba7f32;
	background: linear-gradient(135deg, #ba7f32, #9d6828);
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(186, 127, 50, 0.3);
}

.terms-text {
	font-size: 0.9rem;
	color: #666;
	text-align: center;
	margin-top: 18px;
}

.terms-text a {
	color: #ba7f32;
	text-decoration: none;
	font-weight: 600;
}

/* OTP Modal Styles */
.otp-modal .modal-dialog {
	max-width: 700px;
}

.otp-input-group {
	display: flex;
	justify-content: center;
	gap: 15px;
	margin: 30px 0;
}

.otp-input,
.apply-otp-input,
.expert-otp-input {
	width: 70px;
	height: 70px;
	text-align: center;
	font-size: 2rem;
	font-weight: bold;
	border: 2px solid #e0e0e0;
	border-radius: 15px;
	transition: all 0.3s;
	background: #fff;
}

.otp-input:focus,
.apply-otp-input:focus,
.expert-otp-input:focus {
	outline: none;
	border-color: #ba7f32;
	box-shadow: 0 0 0 4px rgba(186, 127, 50, 0.15);
	transform: scale(1.05);
}

.otp-input.filled,
.apply-otp-input.filled,
.expert-otp-input.filled {
	border-color: #28a745;
	background: #f0fff4;
	color: #28a745;
}

.otp-input.error,
.apply-otp-input.error,
.expert-otp-input.error {
	border-color: #dc3545;
	background: #fff5f5;
	animation: shake 0.4s;
}

@keyframes shake {

	0%,
	100% {
		transform: translateX(0);
	}

	10%,
	30%,
	50%,
	70%,
	90% {
		transform: translateX(-8px);
	}

	20%,
	40%,
	60%,
	80% {
		transform: translateX(8px);
	}
}

.otp-icon {
	text-align: center;
	margin-bottom: 25px;
}

.otp-icon i {
	font-size: 4.5rem;
	color: #ba7f32;
	animation: pulse-icon 2s infinite;
}

@keyframes pulse-icon {

	0%,
	100% {
		transform: scale(1);
		opacity: 1;
	}

	50% {
		transform: scale(1.1);
		opacity: 0.8;
	}
}

/* Form Step Animation */
.form-step {
	animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateX(15px);
	}

	to {
		opacity: 1;
		transform: translateX(0);
	}
}

/* Success Animation */
.success-animation i {
	animation: scaleIn 0.5s ease-out;
}

.error-animation i {
	animation: shakeX 0.6s ease-out;
}

@keyframes scaleIn {
	0% {
		transform: scale(0);
		opacity: 0;
	}

	50% {
		transform: scale(1.2);
	}

	100% {
		transform: scale(1);
		opacity: 1;
	}
}

@keyframes shakeX {

	0%,
	100% {
		transform: translateX(0);
	}

	10%,
	30%,
	50%,
	70%,
	90% {
		transform: translateX(-10px);
	}

	20%,
	40%,
	60%,
	80% {
		transform: translateX(10px);
	}
}

.detail-box {
	transition: transform 0.3s, box-shadow 0.3s;
}

.detail-box:hover {
	transform: translateY(-3px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Eligibility Result Styles */
.result-card {
	background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
	border-radius: 15px;
	padding: 25px;
	margin-bottom: 20px;
	border: 2px solid #e8e8e8;
	transition: all 0.3s ease;
}

.result-card:hover {
	border-color: #ba7f32;
	box-shadow: 0 8px 20px rgba(186, 127, 50, 0.15);
}

.result-highlight {
	background: linear-gradient(135deg, #ba7f32, #9d6828);
	color: #fff;
	padding: 20px;
	border-radius: 12px;
	text-align: center;
	margin-bottom: 20px;
}

.result-highlight h3 {
	margin: 0;
	font-size: 2rem;
	font-weight: 800;
}

.result-highlight p {
	margin: 5px 0 0 0;
	font-size: 0.9rem;
	opacity: 0.9;
}

.breakdown-bar {
	height: 40px;
	background: #f0f0f0;
	border-radius: 10px;
	overflow: hidden;
	display: flex;
	margin: 15px 0;
}

.principal-bar {
	background: linear-gradient(135deg, #ba7f32, #9d6828);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-weight: 600;
	font-size: 0.85rem;
	transition: width 0.8s ease;
}

.interest-bar {
	background: linear-gradient(135deg, #0f3460, #16477a);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-weight: 600;
	font-size: 0.85rem;
	transition: width 0.8s ease;
}

.info-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 15px;
	margin-top: 20px;
}

.info-box {
	background: #fff;
	padding: 18px;
	border-radius: 10px;
	border: 1px solid #e8e8e8;
	text-align: center;
	transition: all 0.3s ease;
}

.info-box:hover {
	border-color: #ba7f32;
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.info-box i {
	font-size: 24px;
	color: #ba7f32;
	margin-bottom: 10px;
}

.info-box .label {
	font-size: 0.8rem;
	color: #666;
	margin-bottom: 5px;
}

.info-box .value {
	font-size: 1.2rem;
	font-weight: 700;
	color: #0f3460;
}

.rejection-reasons {
	background: #fff3cd;
	border: 1px solid #ffeaa7;
	border-radius: 10px;
	padding: 20px;
	margin: 20px 0;
}

.rejection-reasons h6 {
	color: #856404;
	margin-bottom: 15px;
	font-weight: 700;
}

.rejection-reasons ul {
	margin: 0;
	padding-left: 20px;
}

.rejection-reasons li {
	color: #856404;
	margin-bottom: 10px;
	font-size: 0.9rem;
}

.suggestion-box {
	background: #d1ecf1;
	border: 1px solid #bee5eb;
	border-radius: 10px;
	padding: 20px;
	margin: 20px 0;
}

.suggestion-box h6 {
	color: #0c5460;
	margin-bottom: 15px;
	font-weight: 700;
}
.bank-offers-section {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            padding: 40px 0;
        }

        .bank-cards-container {
            display: flex;
            gap: 20px;
            overflow-x: auto;
            overflow-y: hidden;
            padding: 10px 0;
            scroll-behavior: smooth;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }
        
        .bank-cards-container::-webkit-scrollbar {
            display: none;
        }

        .bank-offer-card {
            background: white;
            border-radius: 16px;
            padding: 24px;
            min-width: 320px;
            max-width: 320px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            transition: transform 0.2s, box-shadow 0.2s;
            flex-shrink: 0;
        }
        
        @media (max-width: 768px) {
            .bank-offer-card {
                min-width: 85vw;
                max-width: 85vw;
            }
        }

        .bank-offer-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
        }

        .bank-card-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 20px;
        }

        .bank-card-logo {
            width: 48px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 8px;
            font-weight: bold;
            color: white;
            font-size: 14px;
        } 

        .bank-logo-bom {
            background: #0891b2;
        }

        .bank-logo-bob {
            background: #ea580c;
        }

        .bank-logo-hdfc {
            background: #dc2626;
        }

        .bank-card-info h3 {
            font-size: 16px;
            font-weight: 600;
            color: #1f2937;
            margin-bottom: 4px;
        }

        .bank-recommended-badge {
            background: #fef3c7;
            color: #92400e;
            font-size: 11px;
            padding: 2px 8px;
            border-radius: 4px;
            font-weight: 600;
        }

        .bank-loan-details {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
            margin-bottom: 20px;
        }

        .bank-detail-item {
            text-align: center;
        }

        .bank-detail-value {
            font-size: 14px;
            font-weight: 700;
            color: #1f2937;
            margin-bottom: 4px;
        }

        .bank-interest-rate {
            color: #059669;
        }

        .bank-detail-label {
            font-size: 11px;
            color: #6b7280;
            font-weight: 500;
        }

        .bank-disbursement-info {
            font-size: 13px;
            color: #4b5563;
            margin-bottom: 16px;
        }

        .bank-disbursement-info span {
            font-weight: 600;
            color: #1f2937;
        }

        .bank-reward-section {
            display: flex;
            align-items: center;
            justify-content: space-between;  
        }
 

        .bank-reward-icon {
            width: 20px;
            height: 20px;
            background: #fbbf24;
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 12px;
        }

        .bank-claim-btn {
            background: #285856;
            color: white;
            border: none;
            padding: 8px 20px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 13px;
            cursor: pointer;
            transition: background 0.2s;
        }

        .bank-claim-btn:hover {
            background: var(--main-color);
            color: white;
        }

        .bank-nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: white;
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
            cursor: pointer;
            display: none;
            align-items: center;
            justify-content: center;
            transition: all 0.2s;
            z-index: 10;
            font-size: 20px;
            color: #333;
        }

        .bank-nav-btn:hover {
            background: #f9fafb;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        }

        .bank-nav-btn.bank-nav-next {
            right: -20px;
        }

        .bank-nav-btn.bank-nav-prev {
            left: -20px;
        }

        .bank-nav-btn.show {
            display: flex;
        }

        @media (max-width: 768px) {
            .bank-nav-btn {
                display: none !important;
            }
            
            .bank-offers-section {
                padding: 20px 0;
            }
        }
/* ===== MOBILE RESPONSIVENESS ===== */
@media(max-width: 992px) {
	.hero {
		padding: 60px 35px;
		margin: 0 10px 25px;
	}

	.hero h1 {
		font-size: 2.2rem;
	}

	.hero p {
		font-size: 1rem;
	}

	.bank-scroll-container {
		padding: 0 45px;
	}

	.scroll-btn {
		width: 45px;
		height: 45px;
	}

	.section-title {
		font-size: 1.8rem;
	}

	.form-group-inline {
		flex-direction: column;
	}

	.status-check-btn {
		width: 100%;
	}

	.status-card {
		padding: 30px 20px;
	}

	.status-details-grid {
		grid-template-columns: 1fr;
	}
}

@media(max-width: 768px) {
	.hero {
		padding: 50px 25px;
		border-radius: 15px;
		margin: 0 10px 20px;
	}

	.hero h1 {
		font-size: 1.8rem;
		text-align: center;
	}

	.hero p {
		font-size: 0.95rem;
		text-align: center;
	}

	.hero-btns {
		justify-content: center;
	}

	.hero-btns .btn {
		padding: 12px 24px;
		font-size: 0.9rem;
	}

	.bank-section {
		padding: 40px 15px;
	}

	.section-title {
		font-size: 1.6rem;
	}

	.bank-scroll-container {
		padding: 0 40px;
	}

	.bank-card {
		min-width: 250px;
		padding: 25px 20px;
	}

	.scroll-btn {
		width: 40px;
		height: 40px;
		font-size: 0.9rem;
	}

	.benefits,
	.details-section,
	.approval-status-section {
		padding: 35px 25px;
		margin: 20px 10px;
	}

	.process-section {
		padding: 40px 20px;
		margin: 20px 10px;
	}

	.benefit-item {
		margin-bottom: 20px;
		padding: 18px;
	}

	.benefit-item i {
		font-size: 2rem;
		margin-right: 15px;
	}

	.step-card {
		padding: 30px 20px;
		margin-bottom: 15px;
	}

	.step-icon {
		width: 60px;
		height: 60px;
		line-height: 60px;
		font-size: 24px;
	}

	.status-form {
		padding: 20px;
	}

	.status-header {
		flex-direction: column;
		text-align: center;
	}

	.status-timeline {
		padding-left: 40px;
	}

	.status-timeline::before {
		left: 15px;
	}

	.timeline-marker {
		left: -25px;
		width: 36px;
		height: 36px;
	}

	.timeline-marker i {
		font-size: 16px;
	}

	.action-buttons {
		flex-direction: column;
	}

	.action-buttons .btn {
		width: 100%;
	}

	.otp-input,
	.apply-otp-input,
	.expert-otp-input {
		width: 60px;
		height: 60px;
		font-size: 1.6rem;
	}

	.otp-input-group {
		gap: 12px;
	}

	.form-control,
	.form-select {
		min-height: 48px;
		font-size: 0.95rem;
	}

	.submit-btn {
		padding: 14px 28px;
		font-size: 1rem;
	}
}

@media(max-width: 576px) {
	.container {
		padding: 0 10px;
	}

	.hero {
		padding: 40px 20px;
		margin: 0 5px 15px;
	}

	.hero h1 {
		font-size: 1.5rem;
	}

	.hero p {
		font-size: 0.88rem;
	}

	.hero-btns .btn {
		padding: 11px 20px;
		font-size: 0.85rem;
		width: 100%;
		margin-bottom: 8px;
	}

	.bank-section,
	.approval-status-section {
		padding: 35px 10px;
		margin: 15px 5px;
	}

	.section-title {
		font-size: 1.4rem;
	}

	.section-subtitle {
		font-size: 0.9rem;
	}

	.bank-scroll-container {
		padding: 0 35px;
	}

	.bank-card {
		min-width: 230px;
		padding: 22px 18px;
	}

	.bank-card h6 {
		font-size: 0.98rem;
	}

	.bank-card p {
		font-size: 0.88rem;
	}

	.scroll-btn {
		width: 36px;
		height: 36px;
		font-size: 0.8rem;
	}

	.benefits,
	.details-section,
	.process-section {
		padding: 30px 18px;
		margin: 15px 5px;
		border-radius: 15px;
	}

	.step-card {
		padding: 28px 18px;
		margin-bottom: 12px;
	}

	.step-icon {
		width: 55px;
		height: 55px;
		line-height: 55px;
		font-size: 22px;
	}

	.step-card h6 {
		font-size: 1rem;
	}

	.step-card p {
		font-size: 0.88rem;
	}

	.section-title {
		font-size: 1.3rem !important;
	}

	.modal-dialog {
		margin: 10px;
	}

	.modal-dialog.modal-lg,
	.modal-dialog.modal-xl {
		max-width: calc(100% - 20px);
	}

	.modal-body {
		padding: 25px 20px;
	}

	.modal-header {
		padding: 25px 20px 20px;
	}

	.modal-title {
		font-size: 1.2rem !important;
	}

	.status-card {
		padding: 25px 15px;
	}

	.status-icon-wrapper {
		width: 60px;
		height: 60px;
	}

	.status-main-icon {
		font-size: 28px;
	}

	.timeline-step {
		padding-bottom: 30px;
	}

	.demo-ref-tag {
		font-size: 0.8rem;
		padding: 6px 14px;
	}

	.otp-input,
	.apply-otp-input,
	.expert-otp-input {
		width: 55px;
		height: 55px;
		font-size: 1.4rem;
	}

	.otp-input-group {
		gap: 10px;
	}

	.modal-body {
		padding: 20px 15px;
	}

	.modal-header {
		padding: 20px 15px 15px;
	}

	.form-control,
	.form-select {
		min-height: 46px;
		font-size: 0.9rem;
		padding: 14px 16px;
	}

	.submit-btn {
		padding: 13px 24px;
		font-size: 0.95rem;
	}

	.form-label {
		font-size: 0.9rem;
		margin-bottom: 10px;
	}
}


.employment-options {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

.employment-box {
	display: flex;
	align-items: center;
	gap: 10px;
	border: 2px solid #dee2e6;
	border-radius: 10px;
	padding: 12px 16px;
	background: #fff;
	cursor: pointer;
	transition: all 0.3s ease;
	flex: 1 1 calc(50% - 14px);
	min-width: 250px;
}

.employment-box:hover {
	border-color: #0d6efd;
	background: #f8faff;
}

.employment-box input[type="checkbox"] {
	width: 20px;
	height: 20px;
	accent-color: #0d6efd;
	cursor: pointer;
}

.employment-box label {
	margin: 0;
	font-weight: 500;
	cursor: pointer;
	user-select: none;
}

.employment-box.active {
	border-color: #0d6efd;
	background-color: #e9f3ff;
	box-shadow: 0 0 8px rgba(13, 110, 253, 0.2);
}

.btn-primary {
	--bs-btn-bg: #ba7f32;
	--bs-btn-border-color: #ba7f32;
}


/* ==== Eligibility Result Styles ==== */
#eligibilityResultSection {
	display: none;
	text-align: center;
	padding: 2rem 1rem;
	background: linear-gradient(145deg, #f6f9fc, #eef3f8);
	border-radius: 16px;
	animation: fadeIn 0.6s ease-in-out;
}

#eligibilityResultSection .result-icon {
	font-size: 64px;
	color: #28a745;
	background: #e8f9ee;
	border-radius: 50%;
	padding: 20px;
	box-shadow: 0 4px 10px rgba(40, 167, 69, 0.2);
	animation: bounceIn 1s ease;
}

#eligibilityResultSection h4 {
	font-weight: 700;
	margin-top: 1rem;
	color: #1e293b;
}

#eligibilityResultSection #eligibilityMessage {
	font-size: 1.1rem;
	color: #4b5563;
}

.eligibility-card {
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
	border: none;
	max-width: 440px;
	margin: 1.5rem auto;
	overflow: hidden;
}

.eligibility-card .card-header {
	background: linear-gradient(90deg, #3059aa, #5a8dee);
	color: #fff;
	font-weight: 600;
	padding: 12px 16px;
	font-size: 1rem;
}

.eligibility-card .card-body {
	padding: 1.5rem;
}

.eligibility-card p {
	font-size: 0.95rem;
	color: #334155;
}

.eligibility-card hr {
	margin: 0.8rem 0;
	border-color: #e2e8f0;
}

.eligibility-card .fw-bold {
	color: #0f172a;
}

.btn-modern {
	border-radius: 25px;
	padding: 0.6rem 1.4rem;
	font-weight: 600;
	transition: all 0.3s ease;
}

.btn-modern i {
	margin-right: 6px;
}

.btn-modern.btn-secondary:hover {
	background-color: #475569;
	color: #fff;
}

.btn-modern.btn-primary {
	background: linear-gradient(90deg, #3059aa, #5a8dee);
	border: none;
}

.btn-modern.btn-primary:hover {
	background: linear-gradient(90deg, #264d9c, #4b7ce3);
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(15px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes bounceIn {
	0% {
		transform: scale(0.8);
		opacity: 0;
	}

	60% {
		transform: scale(1.05);
		opacity: 1;
	}

	100% {
		transform: scale(1);
	}
}

.small-radio {
	width: 14px;
	height: 14px;
	transform: scale(0.8);
	margin-top: 2px;
}

.form-step {
	animation: fadeIn 0.4s ease-in-out;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(10px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.btn-primary-custom {
	background-color: #3059aa;
	color: white;
	border: none;
}

.btn-primary-custom:hover {
	background-color: #264a90;
}