@media(max-width: 1280px){
	.main-menu ul li a {
		padding-left: 10px !important;
		padding-right: 10px !important;
	}
}
.navbar-nav .nav-link.news{
	min-width: max-content;
    letter-spacing: -0.3px;
    padding-left: 5px !important;
    padding-right: 5px !important;
}

/* ============================================
   A. ESCROW CREDIBILITY HIGHLIGHTS
   Design: After hero section with dark background
   Layout: Flex row with dividers
============================================ */
.credibility-strip {
	padding: 40px 0;
	background: url(../images/testimonial-bg-img.svg) no-repeat;
	background-color: #14317e;
	background-position: center center;
	background-size: auto;
}

.credibility-list {
	display: flex;
	justify-content: center;
	align-items: center;
	max-width: 1000px;
	margin: 0 auto;
	gap: 0;
}

.credibility-item {
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 0 50px;
	border-right: 1px solid var(--dark-divider-color);
	flex: 1;
	justify-content: center;
}

.credibility-item:first-child {
	padding-left: 0;
	justify-content: flex-start;
}

.credibility-item:last-child {
	border-right: none;
	padding-right: 0;
	justify-content: flex-end;
}

.credibility-icon {
	position: relative;
	width: 60px;
	height: 60px;
	background: var(--dark-divider-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	flex-shrink: 0;
	transition: all 0.4s ease-in-out;
}

.credibility-icon::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--accent-color);
	border-radius: 50%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
}

.credibility-item:hover .credibility-icon::before {
	transform: scale(1);
}

.credibility-icon i {
	position: relative;
	font-size: 24px;
	color: var(--white-color);
	z-index: 1;
	transition: all 0.4s ease-in-out;
}

.credibility-content h3 {
	font-size: 42px;
	color: var(--white-color);
	margin-bottom: 5px;
	font-weight: 700;
	line-height: 1;
}

.credibility-content p {
	color: var(--white-color);
	opacity: 0.75;
	margin-bottom: 0;
	font-size: 14px;
	text-transform: capitalize;
}

/* ============================================
   B. TESTIMONIALS PREVIEW
   Design: Similar to .client-testimonial-item
   Layout: 3 column grid cards
============================================ */
.testimonials-preview {
	padding: 80px 0;
	background-color: var(--secondary-color);
}

.testimonials-preview .section-row {
	margin-bottom: 40px;
}

.testimonial-preview-item {
	background: var(--white-color);
	border: 1px solid var(--divider-color);
	box-shadow: 0px 0px 50px 2px #04030308;
	border-radius: 20px;
	padding: 30px;
	height: 100%;
	display: flex;
	flex-direction: column;
	transition: all 0.4s ease-in-out;
}

.testimonial-preview-item:hover {
	transform: translateY(-10px);
	box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-preview-content {
	flex-grow: 1;
	margin-bottom: 20px;
}

.testimonial-preview-content p {
	font-size: 16px;
	line-height: 1.7;
	color: var(--text-color);
	margin-bottom: 0;
}

.testimonial-preview-author {
	border-top: 1px solid var(--divider-color);
	padding-top: 20px;
	display: flex;
	align-items: center;
	gap: 15px;
}

.testimonial-preview-author .author-image {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	overflow: hidden;
	flex-shrink: 0;
}

.testimonial-preview-author .author-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.testimonial-preview-author .author-info h4 {
	font-size: 16px;
	font-weight: 600;
	color: var(--primary-color);
	margin-bottom: 3px;
	text-transform: capitalize;
}

.testimonial-preview-author .author-info span {
	font-size: 13px;
	color: var(--text-color);
}

.testimonial-preview-author .customer-rating-star {
	display: flex;
	gap: 2px;
}

.testimonial-preview-author .customer-rating-star i {
	color: #ffc107;
	font-size: 12px;
}

/* ============================================
   C. PARTNERSHIP SUMMARY
   Design: White background with centered logos
   Layout: Flex wrap centered logos
============================================ */
.our-partners-section {
	padding: 100px 0;
	background-color: var(--white-color);
}

.partners-grid {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	max-width: 1300px;
	margin: auto;
	gap: 15px;
	text-align: center;
}

.partner-item {
	display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: #f4f4f4aa;
    border-radius: 20px;
    padding: 18px 24px 8px 24px;
    text-align: center;
    transition: all 0.4s ease-in-out;
    border: 1px solid transparent;
}

.partner-item:hover {
	transform: translateY(-5px);
	border-color: var(--divider-color);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.partner-logo-box {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 8px;
}

.partner-logo-box img {
	width: 100%;
	max-height: 40px;
	max-width: 160px;
	object-fit: contain;
	opacity: 0.85;
	transition: all 0.4s ease-in-out;
}

.partner-item:hover .partner-logo-box img {
	opacity: 1;
}

.partner-info h4 {
	font-size: 12px;
	font-weight: 600;
	color: var(--primary-color);
	margin-bottom: 2px;
}

.partner-info p {
	font-size: 10px;
	color: var(--text-color);
	margin-bottom: 0;
	opacity: 0.7;
}

/* ============================================
   D. BANK PARTNER TRUST SIGNAL
   Design: Simple trust badge strip
============================================ */
.bank-trust-signal {
	padding: 20px 0;
	background-color: var(--secondary-color);
	border-top: 1px solid var(--divider-color);
}

.bank-trust-content {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
}

.bank-trust-content p {
	font-size: 14px;
	color: var(--text-color);
	margin-bottom: 0;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.bank-logo img {
	max-height: 40px;
	object-fit: contain;
	border-radius: 8px;
}

/* ============================================
   RESPONSIVE STYLES
============================================ */

/* Tablet */
@media (max-width: 991px) {
	.credibility-strip {
		padding: 35px 0;
	}

	.credibility-list {
		flex-wrap: wrap;
		gap: 20px;
		justify-content: center;
	}

	.credibility-item {
		padding: 0 20px;
		border-right: none;
		flex: 0 0 auto;
		justify-content: center;
	}

	.credibility-item:first-child,
	.credibility-item:last-child {
		padding: 0 20px;
		justify-content: center;
	}

	.credibility-content h3 {
		font-size: 30px;
	}

	.testimonials-preview,
	.our-partners-section {
		padding: 60px 0;
	}

	.testimonial-preview-item {
		margin-bottom: 30px;
	}
}

/* Mobile */
@media (max-width: 767px) {
	.credibility-strip {
		padding: 30px 0;
	}

	.credibility-list {
		flex-direction: column;
		gap: 15px;
	}

	.credibility-item {
		width: 100%;
		padding: 0 0 15px 0;
		border-right: none;
		border-bottom: 1px solid var(--dark-divider-color);
		justify-content: flex-start;
	}

	.credibility-item:first-child,
	.credibility-item:last-child {
		padding: 0 0 15px 0;
		justify-content: flex-start;
	}

	.credibility-item:last-child {
		border-bottom: none;
		padding-bottom: 0;
	}

	.credibility-content h3 {
		font-size: 28px;
	}

	.testimonials-preview,
	.our-partners-section {
		padding: 40px 0;
	}

	.testimonial-preview-item {
		padding: 25px;
	}

	.partner-item {
		padding: 15px 20px;
	}

	.partner-logo-box img {
		max-height: 30px;
	}

	.partner-info h4 {
		font-size: 12px;
	}

	.bank-trust-content {
		flex-direction: column;
		gap: 15px;
		text-align: center;
	}
}

/* Small Mobile */
@media (max-width: 575px) {
	.credibility-strip {
		padding: 25px 0;
	}

	.credibility-icon {
		width: 45px;
		height: 45px;
	}

	.credibility-icon i {
		font-size: 16px;
	}

	.credibility-content h3 {
		font-size: 24px;
	}

	.credibility-content p {
		font-size: 11px;
	}

	.testimonials-preview,
	.our-partners-section {
		padding: 30px 0;
	}

	.testimonial-preview-item {
		padding: 20px;
	}

	.testimonial-preview-content p {
		font-size: 14px;
	}

	.testimonial-preview-author h4 {
		font-size: 16px;
	}
}
