*,
::before,
::after {
	margin: 0;
	box-sizing: border-box;
}

a {
	text-decoration: none;
}

img {
	vertical-align: bottom;
}

iframe {
	border: none;
}

label {
	display: inline-block;
}

button {
	cursor: pointer;
	padding: 0;
}

:disabled {
	cursor: not-allowed;
}

table {
	border-collapse: collapse;
}

ul {
	list-style: none;
	padding: 0;
}

:root {
	/* ---------btn-color------------ */
	--bgthem-pink-color: #d9251b;
	--bgthem-pink-gradient: linear-gradient(90deg, #d9251b 0%, #ff5fa2 100%);
	--bgthem-pink-color-hover: linear-gradient(135deg, #d9251b 0%, #ff5fa2 50%, #d9251b 100%);
	--text-dark: #000;
	--text-light: #fff;
	--gold: #d4af37;
	--overlay: rgba(0, 0, 0, 0.4);
	--navy: #0d1b2a;
	--ink: #0a0f14;
	--muted: #6b7280;
	--bg: #f6f7fb;
	--card: #ffffff;
	--glass: rgba(255, 255, 255, .08);
}

/* ========================== */
/*  ---------TOPBAR---------- */
/* ========================== */
.topbar {
	font-size: 15px;
	    background-color: #29738e !important;
}

.topbar a {
	color: #ffffff !important;
	text-decoration: none;
}

.topbar a:hover {
	color: #0d6efd;
	text-decoration: underline;
}

.topbar i {
	color: #fff;
}

/* ****************************** */
/* ------NAVIGATION-BAR---------- */
/* ****************************** */
/* Brand and navbar */
.navbar-brand {
	font-weight: bold;
	font-size: 1.4rem;
	/* color: #0d6efd !important; */
}

.nav-link {
	font-weight: 500;
	color: #111;
}

.navbar {
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
	z-index: 999;
}

/* CTA Button */
.navBar-btn-cta {
	/* background: linear-gradient(90deg, #0050ff 0%, #00a3ff 100%); */
	background: #d9251b;
	color: white;
	font-weight: 600;
	padding: 8px 20px;
	border-radius: 8px;
	transition: all 0.3s ease;
	font-size: 0.95rem;
}

.navBar-btn-cta:hover {
	/* background: linear-gradient(135deg, #021742 0%, #041d63 50%, #0e3ca5 100%); */
	/* background: linear-gradient(90deg, #ff5fa2 0%, #d9251b 100%); */
    background: linear-gradient(90deg, #db231a 0%, #da261f8f 100%);
	color: #fff;
}

/* Offcanvas Styling */
.offcanvas {
	transition: transform 0.4s ease-in-out;
	background-color: #f7f9fc;
}

.offcanvas-header {
	border-bottom: 1px solid #eaeaea;
}

.offcanvas-title {
	font-weight: 600;
	font-size: 1.1rem;
	color: #333;
}

/* Dropdown Styling (Desktop) */
.enhanced-dropdown {
	padding: 0.5rem 0;
	border-radius: 10px;
	min-width: 220px;
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
	animation: dropdownFade 0.3s ease;
}

.enhanced-dropdown .dropdown-item {
	padding: 10px 20px;
	font-weight: 500;
	font-size: 0.95rem;
	color: #333;
	position: relative;
}

.enhanced-dropdown .dropdown-item:hover {
	background-color: #f3f6ff;
	/* color: #0050ff; */
	color: #de2321;
	padding-left: 24px;
}

.enhanced-dropdown .dropdown-item::before {
	content: "";
	position: absolute;
	left: 12px;
	top: 50%;
	transform: translateY(-50%);
	width: 3px;
	height: 50%;
	background-color: #0050ff;
	border-radius: 4px;
	opacity: 0;
	transition: all 0.3s ease;
}

@keyframes dropdownFade {
	0% {
		opacity: 0;
		transform: translateY(10px);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

/* ✅ Mobile Specific Styling */
@media (max-width: 991.98px) {

	#mobile-main-menu,
	#mobile-submenu {
		transition: all 0.3s ease;
		padding-top: 1rem;
	}

	#mobile-submenu {
		display: none;
	}

	#mobile-submenu.active {
		display: block;
	}

	#mobile-main-menu.hide {
		display: none;
	}

	.offcanvas-body {
		flex-direction: column;
		align-items: flex-start;
		padding-left: 1rem;
		padding-right: 1rem;
	}

	.navbar-nav .nav-link {
		display: block;
		width: 100%;
		padding: 12px 0;
		font-size: 1.05rem;
		border-bottom: 1px solid #eee;
	}

	.mobile-back-btn {
		background: none;
		border: none;
		color: #0050ff;
		font-weight: 600;
		font-size: 1rem;
		margin-bottom: 20px;
		padding-left: 0;
	}

	#mobile-submenu ul li a {
		padding: 12px 0;
		border-bottom: 1px solid #eee;
		display: block;
		width: 100%;
	}

	.offcanvas-body>.d-flex {
		width: 100%;
		padding-top: 20px;
	}

	.navBar-btn-cta {
		width: 100%;
		text-align: center;
	}
}

/* Hide mobile submenu permanently on desktop */
@media (min-width: 992px) {
	#mobile-submenu {
		display: none !important;
	}
}

/* ✅ Show dropdown on hover for large screens */
/* @media (min-width: 992px) {
	.navbar-nav .dropdown:hover .dropdown-menu {
		display: block;
		animation: dropdownFade 0.8s ease;
		margin-top: 0.5rem;
	}
} */

@media (min-width: 992px) {
	.navbar-nav .dropdown {
		position: relative;
	}

	.navbar-nav .dropdown-menu {
		top: 100% !important;
		margin-top: 0 !important;
		/* Removes any gap */
		left: 0;
	}

	.navbar-nav .dropdown:hover .dropdown-menu {
		display: block;
		animation: dropdownFade 0.3s ease;
	}
}


/* ******************************** */
/* ------BANNER-HOME-PAGE---------- */
/* ******************************** */
/* Section Styling */
.custom-carousel {
	position: relative;
}

.custom-carousel-item {
	position: relative;
}

.custom-carousel-img {
	width: 100%;
	height: 500px;
	/* object-fit: cover; */
	object-fit: fill;
}

@media (max-width: 768px) {
	.custom-carousel-img {
		height: 280px;
	}
}

/* Dots Styling */
.custom-carousel .owl-dots {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 5;
	display: flex;
	justify-content: center;
}

.custom-carousel .owl-dot span {
	width: 12px;
	height: 12px;
	background: #fff;
	border-radius: 50%;
	display: block;
	margin: 4px;
	opacity: 0.6;
	transition: 0.3s ease;
}

.custom-carousel .owl-dot.active span {
	background: #de2321;
	opacity: 1;
}

/* ************************************ */
/* -----ABOUT-US-SECTION-02-----START---- */
/* ************************************ */

.home-page-aboutus-section {
	background-color: #066a8a;
	color: #ffffff;
}

.home-page-aboutus-section-title {
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
	color: #ffffff;
}

.home-page-aboutus-section-subtitle {
	font-size: 1.1rem;
	/* color: #cfd4ff; */
	color: #fff;
	margin-bottom: 1rem;
}

.home-page-aboutus-section-description {
	font-size: 1rem;
	line-height: 1.7;
	color: #fff;
	margin-bottom: 1rem;
}

.home-page-aboutus-section-features {
	list-style: none;
	padding-left: 0;
	margin-bottom: 0;
}

.home-page-aboutus-section-features li {
	margin-bottom: 0.5rem;
	font-weight: 500;
	color: #fff;
}

.home-page-aboutus-section-image-wrapper {
	overflow: hidden;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.home-page-aboutus-section-image {
	width: 100%;
	height: auto;
	display: block;
	transition: transform 0.3s ease;
}

.home-page-aboutus-section-image:hover {
	transform: scale(1.03);
}

.check-icon {
	width: 18px;
	height: 18px;
	margin-right: 8px;
	vertical-align: middle;

}


@media (max-width: 991.98px) {
	.home-page-aboutus-section-content {
		margin-top: 2rem;
		text-align: center;
	}
}

@media (max-width: 767.98px) {
	.home-page-aboutus-section {
		overflow-x: hidden;
	}

	.home-page-aboutus-section-content {
		margin-top: 2rem;
		text-align: center;
		padding-left: 1rem;
		padding-right: 1rem;
	}
}


/* ************************************ */
/* -----WHY-US-SECTION-02-----START---- */
/* ************************************ */
.why-choose-us {
	padding: 60px 0;
	background: #eaf6ff;
}

.why-choose-us h2 {
	font-weight: 700;
	font-size: 2.5rem;
	text-align: center;
	margin-bottom: 40px;
}

.why-choose-us h2 span {
	color: #de2321;
	display: inline-block;
	width: 60px;
	height: 4px;
	background: #de2321;
	margin: 8px auto 0;
	border-radius: 2px;
}

.feature-card {
	background: #fff;
	border-radius: 15px;
	padding: 20px;
	margin-bottom: 20px;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
	display: flex;
	align-items: flex-start;
	gap: 15px;
}

.feature-card .icon-box {
	width: 50px;
	height: 50px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

/* .icon-blue { background: #dff1ff; }
         .icon-purple { background: #f2e6ff; }
         .icon-orange { background: #fff3e6; }
         .icon-green { background: #e6fff2; } */
.feature-card h5 {
	font-weight: 700;
	margin-bottom: 5px;
}

.feature-card p {
	margin: 0;
	color: #555;
	font-size: 0.95rem;
}

.image-wrapper {
	/* border-radius: 30px; */
	border-radius: 100px 0px 100px 0px;
	border: 0px 10px 10px 0px solid green;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.image-wrapper img {
	width: 100%;
	height: auto;
	display: block;
}

@media (max-width: 991px) {
	.why-choose-us .image-col {
		margin-top: 30px;
	}
}

/* ************************************ */
/* ----SERVICES-SECTION-03----START---- */
/* ************************************ */


.loan-section {
    background: #046a8b;
}

.section-title {
	font-weight: 700;
	color: var(--text-light) !important;
}

.loan-card {
	background-color: #fff;
	transition: transform 0.3s ease;
	border-radius: 8px;
}

.loan-card:hover .img-overlay {
	background: var(--overlay);
}

.loan-image img {
	transition: transform 0.4s ease;
}

.loan-card:hover img {
	transform: scale(1.05);
}

.img-overlay {
	transition: all 0.3s ease;
	background: transparent;
	z-index: 2;
}

.loan-heading h5 {
	margin-bottom: 0.5rem;
}

.loan-content ul li {
	font-size: 0.9rem;
	color: #333;
	margin-bottom: 0.4rem;
	display: flex;
	align-items: center;
}

.loan-content ul li i {
	color: #de2321;
	margin-right: 8px;
	font-size: 1rem;
}

/* Updated Gradient Button Styling */
.apply-btn {
	background: transparent;
	border: 2px solid #de2321;
	color: #de2321;
	font-weight: 600;
	border-radius: 6px;
	padding: 8px 20px;
	transition: all 0.4s ease;
	position: relative;
	overflow: hidden;
	z-index: 1;
}

.apply-btn::before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: var(--bgthem-pink-gradient);
	transition: left 0.4s ease;
	z-index: -1;
}

.apply-btn:hover::before {
	left: 0;
}

.apply-btn:hover {
	color: #fff;
	border-color: #ff5fa2;
}


/* ************************************ */
/* ----WHAT---WE----DO-04-----START---- */
/* ************************************ */

.whatwedo-section {
	background-color: #f5f5f5;
}

.whatwedo-title {
	font-size: 36px;
	color: #de2321;
	margin-bottom: 60px;
	   
}

.whatwedo-title span.highlight-word {
	position: relative;
}

.section-header {
	margin-bottom: 100px;
}

.whatwedo-title span.highlight-word::before {
    content: "";
    position: absolute;
    bottom: -20px;
    right: 0;
    width: 158%;
    height: 1px;
    /* background-color: #1c1c1c; */
    background: linear-gradient(13deg, #e2d6d6, #d9251b);
}

.whatwedo-subtitle {
	font-size: 17px;
	color: #666666;
	font-family: Roboto, sans-serif;
}

.whatwedo-card {
	background-color: #fff;
	padding: 90px 50px 40px;
	position: relative;
	border-radius: 2px;
	transition: 0.3s;
	margin-bottom: 30px;
}

.whatwedo-card:hover {
	box-shadow: 0 40px 70px rgba(0, 0, 0, 0.22);
	cursor: pointer;
}

.whatwedo-icon {
	font-size: 36px;
	width: 96px;
	height: 96px;
	line-height: 96px;
	text-align: center;
	background: #fff;
	border-radius: 50%;
	border: 2px dashed #f0f0f0;
	box-shadow: 0 0 0 10px #fff;
	position: absolute;
	top: -50px;
	left: 50%;
	transform: translateX(-50%);
	color: #bdbdbd;
	transition: 0.3s;
}

.whatwedo-card:hover .whatwedo-icon,
.whatwedo-card:hover .whatwedo-heading,
.whatwedo-card:hover p {
	/* color: #0d6efd;
	border-color: #0d6efd; */
	color: #de2321;
	border-color: #de2321;
}

.whatwedo-heading {
	color: #1c1c1c;
	font-weight: 700;
	margin-top: 20px;
	margin-bottom: 20px;
}

.clear-fix-custom>div:nth-child(3n + 1) {
	clear: left;
}

@media (max-width: 992px) {
	.clear-fix-custom>div:nth-child(3n + 1) {
		clear: none;
	}
}

@media (max-width: 768px) {
	.whatwedo-title {
		font-size: 21px;
		margin-bottom: 20px;
	}

	.whatwedo-title span.highlight-word::before {
		bottom: -10px;
	}

	.whatwedo-heading {
		font-size: 17px;
	}

	.whatwedo-section {
		padding: 50px 0;
	}
}

/* ************************************ */
/* -------counter-05------START-------- */
/* ************************************ */

/* Counter section */
.homepg-counter-section {
	background-color: #f0f8ff;
}

/* Card */
.homepg-counter-card {
	border-radius: 12px;
	transition: transform 0.3s ease;
	background: #fff;
}

.homepg-counter-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(2, 23, 66, 0.15);
}

/* Text */
.homepg-counter-number {
	color: #d9251b !important;
	color: #d9251b !important;
}

.homepg-counter-label {
	font-size: 1.1rem;
	font-weight: 500;
	color: #000;
}

/* Responsive Text */
@media (max-width: 768px) {
	.homepg-counter-number {
		font-size: 2rem;
	}

	.homepg-counter-label {
		font-size: 1rem;
	}
}

/* ************************************ */
/* -------counter-06------START-------- */
/* ************************************ */

.how-to-join-us-wrapper {
	background: linear-gradient(to bottom, #ffffff, #f5f3fa);
	padding: 60px 0;
}

.how-to-join-us-title {
	font-size: 2.5rem;
	font-weight: 800;
	color: #de2321;
	margin-bottom: 60px;
}

.how-to-join-us-progress {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	max-width: 1000px;
	margin: 0 auto 50px;
}

.how-to-join-us-progress::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	height: 3px;
	background: #ccc;
	z-index: 0;
}

.how-to-join-us-step {
	position: relative;
	z-index: 1;
	width: 48px;
	height: 48px;
	background: #fff;
	border: 3px solid #ccc;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	color: #666;
	font-size: 1rem;
	transition: all 0.3s ease;
}

.how-to-join-us-step.active {
	background: #de2321;
	border-color: #de2321;
	color: #fff;
}

.how-to-join-us-cards {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 25px;
}

.how-to-join-us-card {
	background: #fff;
	border-radius: 10px;
	padding: 25px 20px;
	width: 200px;
	text-align: left;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
	cursor: pointer;
	transition: 0.3s ease;
}

.how-to-join-us-card:hover,
.how-to-join-us-card.active {
	box-shadow: 0 0 0 3px #d9251b inset;
	transform: translateY(-3px);
}

.how-to-join-us-icon {
	height: 30px;
	width: 30px;
	margin-bottom: 10px;
}

.how-to-join-us-label {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.7px;
	color: #888;
	text-transform: uppercase;
}

.how-to-join-us-title-text {
	font-size: 15px;
	font-weight: 600;
	margin-top: 6px;
	color: #000;
}

@media (max-width: 768px) {
	.how-to-join-us-progress {
		flex-wrap: wrap;
		gap: 10px;
		justify-content: center;
	}

	.how-to-join-us-card {
		width: 100%;
		max-width: 300px;
	}
}

/* ************************************ */
/* -----OUR-USP----07------START------- */
/* ************************************ */
.optimai-advantage-section {
	background-color: #f0f8ff;
}

.optimai-advantage-heading {
	color: #de2321;
	font-size: 2rem;
}

.optimai-advantage-subheading {
	color: #555;
	font-size: 1.1rem;
}

.optimai-advantage-card {
	padding: 30px 20px;
	border-radius: 20px;
	color: #fff;
	text-align: center;
	height: 100%;
	transition: all 0.3s ease;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.optimai-advantage-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.optimai-advantage-icon {
	width: 56px;
	height: 56px;
	object-fit: contain;
	margin-bottom: 20px;
	/* filter: brightness(0) invert(1); */
	transition: filter 0.3s ease;
}

.optimai-advantage-card:hover .optimai-advantage-icon {
	filter: none;
}

.optimai-advantage-card h5 {
	font-size: 1.1rem;
	font-weight: 700;
	margin-bottom: 10px;
}

.optimai-advantage-card p {
	font-size: 0.95rem;
	line-height: 1.5;
}

/* Unique Gradients */
.card-gradient-1 {
	background: linear-gradient(135deg, #7b52e5, #9e74ff);
}

.card-gradient-2 {
	background: linear-gradient(135deg, #c261da, #de8be8);
}

.card-gradient-3 {
	background: linear-gradient(135deg, #f89b1e, #ffc35c);
}

.card-gradient-4 {
	background: linear-gradient(135deg, #25b4f0, #6dd5fa);
}

.card-gradient-5 {
	background: linear-gradient(135deg, #f45b3d, #fc9776);
}

.card-gradient-6 {
	background: linear-gradient(135deg, #276fbf, #57a4ff);
}

/* Responsive Fix */
@media (max-width: 575.98px) {
	.optimai-advantage-card {
		padding: 25px 15px;
	}

	.optimai-advantage-icon {
		width: 48px;
		height: 48px;
	}

	.optimai-advantage-card h5 {
		font-size: 1rem;
	}

	.optimai-advantage-card p {
		font-size: 0.9rem;
	}
}

/* ************************************ */
/* -----TESTIMONIAL--08----START------- */
/* ************************************ */
.review-section {
background-color: #066989;
}

.owl-theme .owl-nav {
	position: absolute;
	top: 50%;
	width: 100%;
	transform: translateY(-50%);
	display: flex;
	justify-content: space-between;
	pointer-events: none;
	/* Prevents blocking interactions with slides */
}

.owl-theme .owl-nav [class*=owl-] {
	color: #FFF;
	font-size: 29px !important;
	padding: 8px;
	background: #D6D6D6;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	border-radius: 50%;
	width: 50px;
	/* Increased size */
	height: 50px;
	pointer-events: auto;
	/* Allow clicking */
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
	transition: background 0.3s ease-in-out;
}

/* Positioning arrows slightly outside the carousel */
.owl-theme .owl-nav .owl-prev {
	position: absolute;
	left: -30px;
	/* Adjust to move outside */
	bottom: -13px;
}

.owl-theme .owl-nav .owl-next {
	position: absolute;
	right: -30px;
	bottom: -13px;
}

/* Hover effect */
.owl-theme .owl-nav [class*=owl-]:hover {
	background: #a5a5a5;
}

/* Ensure container allows elements to extend beyond */
.feedback-section {
	position: relative;
	overflow: visible;
}

.owl-theme .owl-nav {
	position: absolute;
	top: 50%;
	width: 100%;
	transform: translateY(-50%);
	display: flex;
	justify-content: space-between;
	pointer-events: none;
	/* Prevents blocking interactions with slides */
}

.owl-theme .owl-nav [class*=owl-] {
	color: #FFFFFF !important;
	font-size: 19px !important;
	font-weight: bold;
	/* background: #021742 !important;  */
	background: var(--bgthem-pink-gradient) !important;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	border-radius: 50%;
	width: 35px;
	height: 35px;
	pointer-events: auto;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
	transition: background 0.3s ease-in-out;
}

/* Positioning arrows slightly outside the carousel */
.owl-theme .owl-nav .owl-prev {
	position: absolute;
	left: -20px;
	/* Adjusted to keep half outside */
}

.owl-theme .owl-nav .owl-next {
	position: absolute;
	right: -20px;
}

/* Hover effect */
.owl-theme .owl-nav [class*=owl-]:hover {
	background-color: #084fbe;
}

/* Ensure container allows elements to extend beyond */
/* Feedback section styles */
.feedback-section {
	position: relative;
	padding: 60px 0;
	text-align: center;
	overflow: visible;
}

.feedback-card {
	background: #eae9e9;
	padding: 20px;
	border-radius: 10px;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
	transition: 0.3s;
	height: 400px;
	max-width: 100%;
	word-wrap: break-word;
	margin-top: 35px;
}

/* .feedback-card:hover {
            transform: scale(1.05);
            } */
.feedback-image {
	width: 80px !important;
	height: 80px;
	margin-top: 20px;
	border-radius: 50%;
	margin: -55px auto 0;
	border: 3px solid #de2321;
	object-fit: cover;
	display: block;
}

.feedback-message {
	font-size: 16px;
	color: #212529;
	margin-top: 15px;
	height: auto;
	overflow: visible;
	word-wrap: break-word;
}

.feedback-author {
	font-weight: bold;
	color: #de2321;
	margin-top: 10px;
}

.feedback-rating {
	font-size: 14px;
	color: #de2321;
	padding-bottom: 10px;
}

@media (max-width: 1024px) {
	.feedback-card {
		height: 400px;
		margin-top: 30px
	}
}

@media (max-width: 768px) {
	.feedback-card {
		height: 330px;
		margin-top: 40px;
	}

	.feedback-message {
		font-size: 14px;
	}
}

@media (min-width: 481px) and (max-width: 586px) {
	.feedback-card {
		height: auto;
		margin-top: 30px;
		padding: 30px !important;
	}

	.feedback-section {
		padding: 0px 10px;
	}

	.owl-theme .owl-nav .owl-prev {
		left: -10px !important;
		/* Adjust left arrow position */
	}

	.owl-theme .owl-nav .owl-next {
		right: -10px !important;
		/* Adjust right arrow position */
	}
}

@media (max-width: 480px) {
	.feedback-card {
		height: 350px;
		margin-top: 40px;
	}

	.review-section {
		padding-left: 15px;
		padding-right: 15px;
		overflow-x: hidden;
	}

	/* Adjust button position on small screens */
	.owl-nav .owl-prev {
		left: 10px;
	}

	.owl-nav .owl-next {
		right: 10px;
	}

	.feedback-section {
		padding: 0px 20px;
	}
}

/* ************************************ */
/* ----------BLOG----09-----START------ */
/* ************************************ */

.home-blog-section {
	background-color: #f9f9f9;
}

.home-blog-title {
	color: #de2321;
	font-weight: 700;
}

.home-blog-subtitle {
	color: #555;
}

.home-blog-card {
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 10px;
	overflow: hidden;
	transition: all 0.3s ease;
	height: 100%;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.home-blog-card:hover {
	transform: translateY(-7px);
	box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.home-blog-image {
	width: 100%;
	height: 200px;
	object-fit: cover;
}

.home-blog-content {
	padding: 20px;
}

.home-blog-meta {
	font-size: 14px;
	color: #777;
	margin-bottom: 10px;
}

.home-blog-title-card {
	font-size: 18px;
	font-weight: 600;
	color: #de2321;
	margin-bottom: 10px;
}

.home-blog-description {
	font-size: 15px;
	color: #555;
	margin-bottom: 15px;
}

.home-blog-readmore {
	display: inline-block;
	font-size: 14px;
	color: #de2321;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
	position: relative;
}

.home-blog-readmore::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -2px;
	width: 100%;
	height: 2px;
	background-color: #de2321;
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.3s ease;
}

.home-blog-readmore:hover::after {
	transform: scaleX(1);
}

/* ******************************** */
/* -----------POPUP-MODEL---------- */
/* ******************************** */

/* Modal styling */
.homepage-popup-content {
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 6px 30px rgba(0, 0, 0, 0.25);
}

.homepage-popup-header {
	background: linear-gradient(135deg, #d9251b, #e63b83);
	color: #fff;
	border-bottom: none;
}

.homepage-popup-title {
	font-weight: bold;
}

.homepage-popup-close {
	filter: brightness(0) invert(1);
}

/* Form fields */
.homepage-popup-input {
	border-radius: 10px;
	border: 1px solid #ddd;
	transition: all 0.3s ease;
}

.homepage-popup-input:focus {
	border-color: #d9251b;
	box-shadow: 0 0 6px rgba(171, 30, 90, 0.5);
}

/* Submit button */
.homepage-popup-btn {
	background-color: #d9251b;
	color: #fff;
	border-radius: 10px;
	font-weight: 600;
	transition: all 0.3s ease;
}

.homepage-popup-btn:hover {
	background-color: #8d174a;
	transform: translateY(-2px);
	box-shadow: 0 4px 10px rgba(171, 30, 90, 0.4);
	color: #FFF;
}

/* ******************************** */
/* ----------------FOOTER---------- */
/* ******************************** */
.footer-dark {
	    background-color: #023644;
	color: #f0f0f0;
	padding: 60px 0 20px;
	font-family: 'Segoe UI', sans-serif;
	overflow-x: hidden;
}

.footer-dark h5 {
	color: #fff;
	margin-bottom: 20px;
	font-weight: 600;
	font-size: 18px;
	position: relative;
}

.footer-dark h5::after {
	content: '';
	position: absolute;
	bottom: -8px;
	left: 0;
	width: 40px;
	height: 2px;
	    background: linear-gradient(13deg, #e2d6d6, #d9251b);
	border-radius: 2px;
}

.footer-dark .footer-logo {
	font-size: 2.2rem;
	font-weight: 700;
	color: #ffffff;
	position: relative;
	display: inline-block;
	animation: fadeInLeft 1s ease forwards;
}

.footer-dark .footer-logo::after {
	content: '';
	display: block;
	width: 60px;
	height: 3px;
	    background: linear-gradient(13deg, #e2d6d6, #d9251b);
	margin-top: 10px;
	border-radius: 2px;
}

.footer-dark .footer-links a {
	display: block;
	color: #f1f1f1;
	text-decoration: none;
	margin-bottom: 10px;
	transition: all 0.3s ease;
	font-size: 15px;
	position: relative;
	padding-left: 2px;
	opacity: 0;
	animation: fadeInUp 0.6s ease forwards;
	animation-delay: 0.3s;
}

.footer-dark .footer-links a:hover {
	color: #ffffff;
	padding-left: 10px;
	text-shadow: 0 0 8px #fff;
}

.footer-dark .footer-links a:hover::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 6px;
	height: 6px;
	background-color: #fff;
	border-radius: 50%;
}

.footer-dark .social-icons a {
	color: #eee;
	font-size: 20px;
	margin-right: 15px;
	transition: all 0.3s ease;
	display: inline-block;
	transform: scale(1);
}

.footer-dark .social-icons a:hover {
	color: #fff;
	transform: scale(1.2);
	text-shadow: 0 0 10px #fff;
}

.footer-dark .footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	padding-top: 20px;
	text-align: center;
	color: #f1f1f1;
	font-size: 14px;
	margin-top: 40px;
	animation: fadeIn 1.5s ease forwards;
}

/* Animations */
@keyframes fadeInLeft {
	from {
		opacity: 0;
		transform: translateX(-20px);
	}

	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

/* ============================================================================================================================================ */
/* ---------START-------------------------START----------------SERVICE-PAGE--------------------START-----------------------------START--------- */
/* ============================================================================================================================================ */


/* ********************************************* */
/* -----------------BREADCRUM------------------- */
/* ********************************************* */
.breadcrumb-section {
	background: #ffffff;
	padding: 15px 0;
	
}
.breadcrumb-section1 {
	
	padding: 15px 0;
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    /*z-index: 2;*/
    text-shadow: 0 3px 8px rgba(0, 0, 0, 0.5);

}

.breadcrumb {
	margin: 0;
	background-color: transparent;
}

.breadcrumb-item+.breadcrumb-item::before {
	content: ">";
	padding: 0 8px;
	color: #888;
}

.breadcrumb a {
	text-decoration: none;
	color: #007bff;
}

.breadcrumb-item.active {
	color: #6c757d;
}

.breadcrumb-wrapper {
	background-color: #f8f9fa;
	padding: 15px 0;
}

.breadcrumb {
	margin-bottom: 0;
}

/* ************************************************* */
/* ------SERVICE-PAGE--BANNER---- ---(SECTION-1)---- */
/* ************************************************* */

.service-hero-section {
	position: relative;
	overflow: hidden;
}

.service-hero-image {
	width: 100%;
	height: 300px;
	object-fit: cover;
	display: block;
}

.service-hero-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /*z-index: 2;*/
    color: #000000c7;
    font-size: 3rem;
    font-weight: 700;
    /* text-shadow: 0 3px 8px rgba(0, 0, 0, 0.5); */
}


@media (max-width: 768px) {
	.service-hero-title {
		font-size: 2rem;
	}

	.service-hero-image {
		height: 220px;
	}
}

/* ************************************************* */
/* ------------SERVICE-LIST------(SECTION--2)------- */
/* ************************************************* */
.our-service-border {
	color: #de2321;
	border: 1px solid #d9251b !important;
	font-size: 15px;
}

.loan-services-section {
	padding: 60px 0;
	background-color: #f9f9f9;
}

.loan-service-card {
	background: #fff;
	border-radius: 10px;
	border: 1px solid #ddd;
	padding: 20px;
	transition: all 0.5s ease;
	height: 100%;
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	color: #fff;
	/* text always white now */
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.loan-service-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	/* always visible */
	width: 100%;
	height: 100%;
	background: linear-gradient(to top right, #3730a3, #f472b6);
	z-index: 0;
}

.loan-service-card * {
	position: relative;
	/*z-index: 1;*/
	color: #fff;
	/* text always white */
}

.service-badge {
	position: absolute;
	top: 15px;
	right: 15px;
	background: rgba(255, 255, 255, 0.15);
	border-radius: 20px;
	padding: 3px 12px;
	font-size: 12px;
	font-weight: 600;
	color: #fff;
}

.service-card-header {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 15px;
}

.service-logo {
	width: 60px;
	height: 60px;
	background-color: rgba(255, 255, 255, 0.15);
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
}

.service-logo img {
	width: 60px;
	height: 60px;
	border-radius: 8px;
	/* flip animation removed */
}

.service-price {
	color: #fff;
	font-weight: 700;
	font-size: 16px;
	display: block;
}

.loan-service-card p {
	font-size: 14px;
	margin-bottom: 20px;
}

.service-buttons .btn-promote,
.service-buttons .btn-share {
	font-size: 16px;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	padding: 12px 14px;
	background: rgba(255, 255, 255, 0.15);
	color: #fff;
	border: none;
	cursor: pointer;
}

/* =========================
   FIX: h5 text wrap & no-touch badge
   ========================= */
:root {
	--badge-space: 60px;
}

/* reserve space on right within header so text never goes under badge */
.service-card-header {
	min-width: 0;
	padding-right: var(--badge-space);
}

/* allow text column to shrink and wrap properly */
.service-card-header>div:last-child {
	min-width: 0;
}

.service-card-header h5 {
	margin: 0 0 4px;
	line-height: 1.25;
	overflow-wrap: anywhere;
	word-break: break-word;
	hyphens: auto;
}

/* keep logo from shrinking weirdly */
.service-logo {
	flex: 0 0 60px;
}

/* responsive tuning for smaller screens */
@media (max-width: 992px) {
	:root {
		--badge-space: 96px;
	}
}

@media (max-width: 576px) {
	:root {
		--badge-space: 84px;
	}

	.service-badge {
		font-size: 11px;
		padding: 2px 10px;
	}

	.service-price {
		font-size: 14px;
	}
}

/* ************************************************* */
/* -------SERVICE-PAGE-----------(SECTION--3)------- */
/* ************************************************* */
.service-page-sec-three {
	padding: 60px 0;
	background-color: #eaf6ff;
}

.service-page-sec-three h1 {
	font-size: 2rem;
	color: #121212;
	font-weight: 600;
	line-height: 1.4;
	margin-bottom: 30px;
}

.service-page-sec-three-btn {
	display: inline-block;
	padding: 12px 24px;

	/* background: linear-gradient(90deg, #0050ff 0%, #00a3ff 100%); */
	background: #de2321;
	color: #fff;
	font-weight: 500;
	border-radius: 30px;
	text-decoration: none;
	transition: background 0.3s ease;
}

.service-page-sec-three-btn:hover {
	background: var(--bgthem-pink-color-hover);
}

.service-page-sec-three-btn span {
	margin-left: 8px;
	transition: transform 0.3s ease;
}

.service-page-sec-three-btn:hover span {
	transform: translateX(5px);

}

.service-page-sec-three-img {
	max-width: 100%;
	height: auto;
}


/* Responsive Design */
@media (max-width: 768px) {
	.service-page-sec-three {
		text-align: center;
		padding: 40px 0;
	}

	.service-page-sec-three h1 {
		font-size: 1.8rem;
	}

	.service-page-sec-three-btn {
		margin-top: 20px;
	}

	.service-page-sec-three-img {
		margin-top: 30px;
	}
}

/* ************************************************* */
/* ------SERVICE-PAGE--------(SECTION--4)----------- */
/* ************************************************* */

.loan-help-section-dark {
	/* background-color: #021742; */
	background-color: #000;
}

.loan-help-title-dark {
	font-size: 2rem;
	font-weight: 700;
	color: #ffffff;
}

.loan-help-subtitle-dark {
	font-size: 1rem;
	color: #cbd5e1;
	margin-bottom: 40px;
}

.loan-help-card-dark {
	/* background: #03205c; */
	/* background: linear-gradient(90deg, #0050ff 0%, #00a3ff 100%); */
	background: linear-gradient(to left, #4f46e5, #9333ea, #db2777);
	border: 1px solid #0a2d85;
	border-radius: 12px;
	padding: 30px 20px;
	text-align: center;
	transition: all 0.3s ease-in-out;
	box-shadow: none;
}

.loan-help-card-dark:hover {
	transform: translateY(-6px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.loan-help-icon-dark {
	font-size: 36px;
	color: #ffff;
	margin-bottom: 20px;
}

.loan-help-heading-dark {
	font-size: 1.1rem;
	font-weight: 600;
	color: #ffffff;
	margin-bottom: 10px;
	text-transform: uppercase;
}

.loan-help-text-dark {
	font-size: 0.95rem;
	color: #ffffff;
	margin-bottom: 15px;
}

.loan-help-link-dark a {
	color: #fff;
	font-weight: 500;

	transition: color 0.2s ease-in-out;
}

.loan-help-link-dark a:hover {
	color: #ffffff;
	text-decoration: none;
}

@media (max-width: 767px) {
	.loan-help-card-dark {
		margin-bottom: 20px;
	}
}

/* ************************************************* */
/* -------SERVICE-PAGE-----------(SECTION--5)------- */
/* ************************************************* */

.loan-strip-section {
	background: #fff;
	/* padding: 10px 0; */
}

.loan-strip-box {
	padding: 25px 15px;
	border-right: 1px solid #e0e0e0;
	/* <-- Light grey divider */
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
}

.loan-strip-box:nth-child(4) {
	border-right: none;
	/* Remove divider from last item */
}

.loan-strip-inner {
	display: flex;
	align-items: center;
	gap: 12px;
}

.loan-icon-strip {
	width: 60px;
	height: 60px;
	background-color: rgba(2, 23, 66, 0.1);
	color: #021742;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 28px;
	border-radius: 8px;
	/* margin-bottom: 20px; */
	transition: all 0.6s ease;
}

.loan-rate {
	font-size: 1.4rem;
	font-weight: 700;
	color: #111;
	margin-bottom: 2px;
}

.loan-label {
	font-size: 0.95rem;
	color: #666;
}

/* Responsive Divider Fix */
@media (max-width: 767.98px) {
	.loan-strip-box {
		border-right: none;
		border-bottom: 1px solid #e0e0e0;
	}

	.loan-strip-box:nth-child(2n) {
		border-bottom: none;
	}

	.loan-strip-box:nth-child(3),
	.loan-strip-box:nth-child(4) {
		border-bottom: none;
	}

	.loan-rate {
		font-size: 1.2rem;
	}

	.loan-label {
		font-size: 0.85rem;
	}
}


/* ============================================================================================================================================ */
/* ------SERVICE-PAGE-DETAIL---------------START-------------SERVICE-PAGE-DETAIL--------------START--------------------------START------------- */
/* ============================================================================================================================================ */
.service-detail-sidebar-card {
	background-color: #eef1f7;
	padding: 20px;
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.service-detail-loan-btn {
	background: #fff;
	border: 1px solid #d5dbe0;
	color: #000;
	margin-bottom: 12px;
	text-align: left;
	font-weight: 500;
	position: relative;
	overflow: hidden;
	padding-right: 35px;
	border-radius: 6px;
	transition: 0.4s ease-in-out;
}

.service-detail-loan-btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: #d9e8ff;
	transition: all 0.3s ease;
	z-index: 0;
}

.service-detail-loan-btn:hover::before {
	left: 0;
}

.service-detail-loan-btn .bi {
	position: absolute;
	right: 12px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 1rem;
	z-index: 2;
}

.service-detail-loan-btn span {
	position: relative;
	z-index: 2;
}

.service-detail-download-title {
	font-weight: bold;
	font-size: 16px;
	margin-top: 25px;
	margin-bottom: 15px;
	border-left: 3px solid #d9251b;
	padding-left: 10px;
}

.service-detail-download-btn {
	background-color: #fff;
	border: 1px solid #ccc;
	padding: 10px;
	width: 100%;
	text-align: left;
	color: #d9251b !important;
	margin-bottom: 10px;
	border-radius: 5px;
	font-size: 15px;
}

.service-detail-contact-card {
	background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.1)), url('../img/contact-us.jpg') center center / cover no-repeat;
	border-radius: 10px;
	padding: 20px;
	color: #fff;
	margin-top: 20px;
	text-align: center;
}

.service-detail-contact-card i {
	font-size: 36px;
	margin-bottom: 10px;
}

.service-detail-loan-image {
	width: 100%;
	border-radius: 10px;
	transition: transform 0.3s ease;
}

.service-detail-checkicon {
	color: #d9251b;
}

.service-detail-loan-heading {
	font-weight: 700;
	color: #d9251b;
	font-size: 28px;
	margin-top: 25px;
}

.service-detail-loan-description {
	font-size: 16px;
	color: #444;
	margin-top: 15px;
	line-height: 1.7;
}

.accordion-button:not(.collapsed) {
	background-color: #e6f0ff;
	color: #d9251b;
}

.accordion-button:focus {
	box-shadow: none;
}

ul.service-detail-list li {
	position: relative;
	padding-left: 28px;
}

ul.service-detail-list li:hover {
	background-color: #f1f6ff;
	border-left: 3px solid #d9251b;
	padding-left: 25px;
	transition: all 0.3s ease;
}

@media (max-width: 767.98px) {
	.service-detail-sidebar-card {
		margin-bottom: 30px;
	}

	.service-detail-loan-heading {
		font-size: 22px;
	}

	.service-detail-loan-description {
		font-size: 15px;
	}
}

.service-detail-loan-enquiry-card {
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 8px;
	padding: 15px;
	margin-top: 20px;
}

.service-detail-enquiry-title {
	font-size: 1.2rem;
	font-weight: 600;
	margin-bottom: 15px;
	text-align: center;
	color: #333;
}

.service-detail-loan-enquiry-form .form-control,
.service-detail-loan-enquiry-form .form-select {
	border-radius: 6px;
	font-size: 0.95rem;
}

.service-detail-loan-enquiry-form .btn {
	border-radius: 6px;
	font-weight: 500;
}


/* ============================================================================================================================================ */
/* -------------CONTACT-US------------------START----------------CONTACT-US--------------START--------------------------CONTACT-US------------- */
/* ============================================================================================================================================ */

.contact-page-section {
	padding: 80px 0px;
}

.contact-page-icon-circle {
	background-color: #daccd3;
	width: 45px;
	height: 45px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.contact-page-form-field {
    background-color: #dfd4d433;
    border: 1px solid #d9251bc9;
    padding: 10px 15px;
    border-radius: 5px;
    color: #0b0b0b;
}

.contact-page-form-field::placeholder {
	color: black;
}

.contact-page-form-field:focus {
	border-color: #d9251b;
	box-shadow: none;
	background-color: #dfd4d433;
	color: black;
}

.contact-page-btn-gradient {
	    background: linear-gradient(90deg, #d9251b 0%, #d9251bd4 100%);
	color: #fff;
	border: none;
	border-radius: 4px;
	transition: all 0.3s ease-in-out;
}

.contact-page-btn-gradient:hover {
	filter: brightness(1.05);
	box-shadow: 0 5px 15px rgba(171, 30, 90, 0.3);
	color: #fff;
}

.contact-page-social-icons a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background-color: #ffffff1a;
	color: #fff;
	margin-left: 8px;
	transition: background-color 0.3s ease;
	background-color: #d9251b;
	
	
}

/* .contact-page-social-icons a:hover {
    background-color: #d9251b;
  } */
/* ============================================================================================================================================ */
/* -------------ABOUT-US------------------START----------------ABOUT-US--------------START--------------------------ABOUT-US------------- */
/* ============================================================================================================================================ */

/* General Styling */
.aboutus-section {
	padding: 60px 0;
}

.aboutus-title {
	color: #021742;
	font-weight: 700;
}

.aboutus-text {
	font-size: 1rem;
	margin-bottom: 1rem;
	line-height: 1.6;
}

.aboutus-list li {
	font-size: 1rem;
	margin-bottom: 10px;
	display: flex;
	align-items: center;
}

.aboutus-list li i {
	color: #d9251b;
	margin-right: 10px;
	font-size: 1.2rem;
}

/* Image Styling */
.aboutus-image {
	border-radius: 12px;
	width: 100%;
	/* max-width: 500px; */
	height: auto;
	display: block;
	margin: auto;
}

/* Card Styles */
.aboutus-card {
	background: #fff;
	border-radius: 12px;
	padding: 30px;
	text-align: center;
	height: 100%;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.aboutus-card i {
	font-size: 40px;
	color: #d9251b;
	margin-bottom: 15px;
}

.aboutus-card h4 {
	font-weight: 600;
	color: #021742;
}

.aboutus-card p {
	font-size: 0.95rem;
	margin: 0;
}

/* Responsive tweaks */
@media (max-width: 991px) {
	.aboutus-image {
		max-width: 100%;
		margin-bottom: 20px;
	}
}

/* ======================================================================================================================================= */
/* -------------CAREER------------------START----------------CAREER--------------START--------------------------CAREER------------- */
/* ======================================================================================================================================= */

/*-------------BACKGROUND ----------*/
#jobs,
#freelancers,
#faq {
	background: var(--bg);
}

/* ---------- ICON BADGE ---------- */
.carrerpage-icon-badge {
	height: 56px;
	width: 56px;
	border-radius: 16px;
	display: grid;
	place-items: center;
	background: linear-gradient(145deg, rgba(171, 30, 90, .18), rgba(255, 255, 255, .65));
	border: 1px solid rgba(171, 30, 90, .25);
	color: #d9251b
}

/* ---------- BUTTONS ---------- */
.carrerpage-btn-gradient {
	background: linear-gradient(135deg, #d9251b, #cf3b7b);
	color: #fff;
	border: 0;
	font-weight: 700
}

.carrerpage-btn-gradient:hover {
	filter: brightness(.97);
	color: #fff;

}

/* ---------- SECTION WRAPPERS ---------- */
.carrerpage-section {
	padding: 72px 0
}

.carrerpage-section-title {
	font-weight: 800;
	color: var(--ink) !important
}

.carrerpage-section-kicker {
	color: #de2321;
	font-weight: 700;
	letter-spacing: .18em;
	text-transform: uppercase;
	font-size: .8rem
}

/* ---------- GLASS CARDS ---------- */
.carrerpage-glass {
	position: relative;
	border-radius: 18px;
	background: linear-gradient(180deg, rgba(255, 255, 255, .85), rgba(255, 255, 255, .92));
	border: 1px solid rgba(13, 27, 42, .08);
	box-shadow: 0 10px 30px rgba(13, 27, 42, .12);
	transition: transform .35s ease, box-shadow .35s ease
}

.carrerpage-glass:hover {
	transform: translateY(-8px);
	box-shadow: 0 18px 44px rgba(13, 27, 42, .16);
}

.carrerpage-glass .carrerpage-tag {
	display: inline-flex;
	align-items: center;
	gap: .45rem;
	background: rgba(171, 30, 90, .08);
	color: #de2321;
	padding: .35rem .7rem;
	border-radius: 999px;
	font-weight: 600;
	font-size: .8rem;
	border: 1px solid rgba(171, 30, 90, .18)
}

/* ---------- WHY US TIMELINE ---------- */
.carrerpage-why-step {
	position: relative;
	padding-left: 48px
}

.carrerpage-why-step::before {
	content: "";
	position: absolute;
	left: 20px;
	top: .5rem;
	bottom: -.5rem;
	width: 2px;
	background: linear-gradient(#d9251b, var(--gold))
}

.carrerpage-why-icon {
	position: absolute;
	left: 0;
	top: 0;
	height: 40px;
	width: 40px;
	border-radius: 12px;
	background: linear-gradient(145deg, #d9251b, #c83a78);
	color: #fff;
	display: grid;
	place-items: center
}

/* ---------- FAQ ---------- */
.carrerpage-faq .accordion-button {
	font-weight: 700
}

.carrerpage-faq .accordion-button:not(.collapsed) {
	background: rgba(171, 30, 90, .08);
	color: var(--ink)
}

.carrerpage-faq .accordion-button:focus {
	box-shadow: none
}

/* ======================================================================================================================================= */
/* ----------BECOME A PARTNER-------------START-------------BECOME A PARTNER-------------START-------------BECOME A PARTNER------------- */
/* ======================================================================================================================================= */
.partnerpage-card {
	background: #fff;
	border-radius: 18px;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease-in-out;
}

.partnerpage-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.partnerpage-title {
	font-size: 2rem;
	font-weight: 700;
	color: #d9251b;
}
.partnerpage-icon {
	font-size: 3rem;
	color: #d9251b;
}
.beapartner-icon {
	color: #d9251b !important;
}
.partnerpage-btn {
	background: #d9251b;
	color: #fff;
	font-weight: 600;
	border-radius: 10px;
	padding: 12px 28px;
	transition: all 0.3s ease;
	box-shadow: 0 4px 12px rgba(171, 30, 90, 0.3);
}
.partnerpage-btn:hover {
	background: #056b8d;
	transform: translateY(-2px) scale(1.05);
	box-shadow: 0 6px 15px rgba(171, 30, 90, 0.4);
	color: #fff;
}


/*custom chnges */

.loan-image.position-relative.overflow-hidden {
    height: 207px !important;
}