

		/* Fix duplicate menu items in sticky header - Hide all items after first 4 */
		.sticky-header .navigation li:nth-child(n+5) {
			display: none !important;
		}
		
		/* Alternative method - hide every second set of menu items */
		/* .sticky-header .navigation li:nth-child(5),
		.sticky-header .navigation li:nth-child(6),
		.sticky-header .navigation li:nth-child(7),
		.sticky-header .navigation li:nth-child(8) {
			display: none !important;
		} */
		
		/* Force sticky header menu items to be black - highest priority */
		.sticky-header .navigation a,
		.sticky-header .navigation li a,
		.sticky-header .main-menu .navigation a,
		.sticky-header .main-menu .navigation li a,
		.sticky-header .navigation a[style*="color: white"],
		.sticky-header .navigation li a[style*="color: white"],
		.sticky-header .navigation a[style*="color: white !important"],
		.sticky-header .navigation li a[style*="color: white !important"] {
			color: black !important;
		}
		
		/* Additional override for any JavaScript applied styles */
		.sticky-header .navigation a:hover,
		.sticky-header .navigation li a:hover,
		.sticky-header .main-menu .navigation a:hover,
		.sticky-header .main-menu .navigation li a:hover {
			color: black !important;
		}
		
		/* Ensure only first 4 menu items are visible */
		.sticky-header .navigation li:not(:nth-child(-n+4)) {
			display: none !important;
		}
	/* Hero Section Right Side Layout */
	.col-lg-6.position-relative {
		position: relative;
		height: 600px;
	}

	.main-hero-img {
		width: 100%;
		max-height: 650px;
		object-fit: cover;
		border-radius: 12px;
		box-shadow: 0 15px 35px rgba(0,0,0,0.2);
	}

	/* Floating Cards - Right Side */
	.floating-card {
		position: absolute;
		background: white;
		border-radius: 15px;
		box-shadow: 0 15px 40px rgba(0,0,0,0.2);
		z-index: 3;
		transition: all 0.3s ease;
	}

	.floating-card:hover {
		transform: translateY(-5px);
		box-shadow: 0 20px 50px rgba(0,0,0,0.25);
	}

	/* Loan Summary Card */
	.loan-summary {
		top: 10%;
		right: 65%;
		width: 280px;
		padding: 20px;
	}

	.card-title {
		font-size: 14px;
		color: #666;
		margin-bottom: 10px;
	}

	.loan-amount {
		font-size: 24px;
		font-weight: bold;
		color: #333;
		margin-bottom: 20px;
		background: linear-gradient(135deg, #4fc3f7 0%, #29b6f6 100%);
		color: white;
		padding: 10px;
		border-radius: 8px;
		text-align: center;
	}

	.interest-section {
		margin-top: 15px;
	}

	.interest-label {
		font-size: 14px;
		color: #666;
		font-weight: 500;
		margin-bottom: 15px;
	}

	.installment-item {
		display: flex;
		align-items: center;
		gap: 15px;
		margin-bottom: 15px;
	}

	.badge {
		width: 30px;
		height: 30px;
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
		font-weight: bold;
		font-size: 14px;
		color: white;
		flex-shrink: 0;
	}

	.badge-1 {
		background: linear-gradient(135deg, #ff6b9d 0%, #ff8a80 100%);
	}

	.badge-2 {
		background: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
	}

	.installment-details {
		flex: 1;
	}

	.installment-label {
		font-size: 12px;
		color: #999;
	}

	.installment-date {
		font-size: 14px;
		color: #333;
		font-weight: 500;
	}

	.interest-rate {
		font-size: 16px;
		color: #2196f3;
		font-weight: bold;
	}

	/* Chart Widget */
	.chart-widget {
		bottom: 15%;
		right: 10%;
		width: 320px;
		padding: 20px;
	}

	.chart-legend {
		display: flex;
		justify-content: space-between;
		margin-bottom: 15px;
	}

	.legend-item {
		display: flex;
		align-items: center;
		gap: 8px;
		font-size: 12px;
		color: #666;
	}

	.legend-dot {
		width: 12px;
		height: 12px;
		border-radius: 50%;
	}

	.legend-dot.highest {
		background: #4caf50;
	}

	.legend-dot.interest {
		background: #ff9800;
	}

	.chart-container {
		height: 150px;
		position: relative;
	}

	.chart-bars {
		display: flex;
		align-items: end;
		justify-content: space-between;
		height: 100%;
		gap: 8px;
	}

	.bar-group {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 5px;
		flex: 1;
	}

	.bar {
		width: 8px;
		border-radius: 4px;
		transition: all 0.3s ease;
	}

	.highest-bar {
		background: #4caf50;
		margin-bottom: 2px;
	}

	.interest-bar {
		background: #ff9800;
	}

	.bar-label {
		font-size: 10px;
		color: #999;
		font-weight: 500;
	}

	/* Responsive adjustments */
	@media (max-width: 1200px) {
		.col-lg-6.position-relative {
			height: 550px;
		}
		
		.main-hero-img {
			max-height: 550px;
		}
		
		.loan-summary {
			width: 250px;
			right: 3%;
			top: 8%;
		}
		
		.chart-widget {
			width: 280px;
			right: 5%;
			bottom: 12%;
		}
	}

	@media (max-width: 991px) {
		.col-lg-6.position-relative {
			height: 500px;
			margin-top: 30px;
		}
		
		.main-hero-img {
			max-height: 500px;
		}
		
		.loan-summary {
			width: 220px;
			right: 5%;
			top: 5%;
		}
		
		.chart-widget {
			width: 250px;
			right: 8%;
			bottom: 10%;
		}
	}

	@media (max-width: 768px) {
		.col-lg-6.position-relative {
			height: 450px;
		}
		
		.main-hero-img {
			max-height: 450px;
		}
		
		.loan-summary {
			width: 200px;
			right: 2%;
			top: 3%;
		}
		
		.chart-widget {
			width: 220px;
			right: 5%;
			bottom: 8%;
		}
		
		.floating-card img {
			width: 100%;
			height: auto;
		}
	}

	@media (max-width: 576px) {
		.col-lg-6.position-relative {
			height: 400px;
		}
		
		.main-hero-img {
			max-height: 400px;
		}
		
		.loan-summary {
			width: 180px;
			right: 1%;
			top: 2%;
		}
		
		.chart-widget {
			width: 200px;
			right: 3%;
			bottom: 5%;
		}
	}

	@media (max-width: 480px) {
		.col-lg-6.position-relative {
			height: 350px;
		}
		
		.main-hero-img {
			max-height: 350px;
		}
		
		.loan-summary {
			width: 160px;
			right: 0;
			top: 1%;
		}
		
		.chart-widget {
			width: 180px;
			right: 54%;
			bottom: 3%;
		}
	}

	/* Hero Content Responsive */
	@media (max-width: 1200px) {
		.hero-content h1 {
			font-size: 2.8rem;
		}
		
		.hero-content p {
			font-size: 1rem;
		}
	}

	@media (max-width: 991px) {
		.hero-content h1 {
			font-size: 2.5rem;
		}
		
		.hero-content p {
			font-size: 0.95rem;
		}
		
		.hero-features .feature-item {
			margin-bottom: 15px;
		}
	}

	@media (max-width: 768px) {
		.hero-content h1 {
			font-size: 2.2rem;
		}
		
		.hero-content p {
			font-size: 0.9rem;
		}
		
		.hero-features .feature-item {
			margin-bottom: 12px;
		}
		
		.hero-features .feature-item i {
			width: 25px;
			height: 25px;
			font-size: 12px;
		}
		
		.hero-buttons .theme-btn {
			padding: 12px 25px;
			font-size: 0.9rem;
		}
	}

	@media (max-width: 576px) {
		.hero-content h1 {
			font-size: 1.8rem;
		}
		
		.hero-content p {
			font-size: 0.85rem;
		}
		
		.hero-features .feature-item {
			margin-bottom: 10px;
		}
		
		.hero-features .feature-item span {
			font-size: 0.85rem;
		}
		
		.hero-buttons .theme-btn {
			padding: 10px 20px;
			font-size: 0.85rem;
		}
	}

	@media (max-width: 480px) {
		.hero-content h1 {
			font-size: 1.6rem;
		}
		
		.hero-content p {
			font-size: 0.8rem;
		}
		
		.hero-features .feature-item {
			margin-bottom: 8px;
		}
		
		.hero-features .feature-item span {
			font-size: 0.8rem;
		}
		
		.hero-buttons .theme-btn {
			padding: 8px 18px;
			font-size: 0.8rem;
		}
	}

	/* Fix Sticky Navigation Duplicate Menu Items */
	.sticky-header .navigation li:nth-child(n+5) {
		display: none !important;
	}

	.sticky-header .navigation li:nth-child(5),
	.sticky-header .navigation li:nth-child(6),
	.sticky-header .navigation li:nth-child(7),
	.sticky-header .navigation li:nth-child(8) {
		display: none !important;
	}

	/* Force sticky header menu text to be black */
	.sticky-header .navigation li a {
		color: black !important;
	}

	.sticky-header .navigation li a:hover {
		color: #667eea !important;
	}

	/* Ensure sticky header has proper styling */
	.sticky-header {
		background: white !important;
		box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
	}

	.sticky-header .logo img {
		filter: none !important;
	}

	/* Ensure mobile menu is properly visible */
	.mobile-menu {
		z-index: 999999 !important;
	}

	.mobile-menu-visible .mobile-menu {
		opacity: 1 !important;
		visibility: visible !important;
	}

	.mobile-menu-visible .mobile-menu .menu-box {
		opacity: 1 !important;
		visibility: visible !important;
		transform: translateX(0%) !important;
	}

	/* Ensure mobile nav toggler is visible on mobile */
	@media only screen and (max-width: 1023px) {
		.mobile-nav-toggler {
			display: block !important;
			visibility: visible !important;
			opacity: 1 !important;
		}
		
		/* Hide main menu on mobile */
		.main-header .main-menu {
			display: none !important;
		}
		
		/* Show mobile nav toggler */
		.mobile-nav-toggler {
			display: block !important;
		}
	}

	/* Additional mobile nav toggler fixes */
	.mobile-nav-toggler {
		position: relative !important;
		font-size: 24px !important;
		line-height: 20px !important;
		cursor: pointer !important;
		/* color: #ffffff !important; */
		margin-left: 15px !important;
		z-index: 999 !important;
		display: none !important;
	}

	/* Show mobile nav toggler on mobile devices */
	@media only screen and (max-width: 1023px) {
		.mobile-nav-toggler {
			display: block !important;
			visibility: visible !important;
			opacity: 1 !important;
		}
	}

	.mobile-nav-toggler .icon {
		display: inline-block !important;
		width: 24px !important;
		height: 24px !important;
		position: relative !important;
	}

	.mobile-nav-toggler .icon {
		display: inline-block !important;
		width: 24px !important;
		height: 24px !important;
		position: relative !important;
	}

	.mobile-nav-toggler .icon i {
		font-size: 24px !important;
		color: #ffffff !important;
		display: block !important;
	}

	/* Ensure the icon is visible on both light and dark backgrounds */
	.mobile-nav-toggler .icon i.fa-bars {
		color: #ffffff !important;
	}

	/* Sticky header mobile nav toggler */
	.sticky-header .mobile-nav-toggler .icon i {
		color: #333333 !important;
	}

	/* Additional mobile menu fixes */
	.mobile-menu .navigation li a {
		color: #ffffff !important;
		padding: 15px 20px !important;
		border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
		display: block !important;
		text-decoration: none !important;
		font-size: 16px !important;
		font-weight: 400 !important;
	}

	.mobile-menu .navigation li a:hover {
		background-color: rgba(255, 255, 255, 0.1) !important;
		color: #ffffff !important;
	}

	/* Ensure all mobile menu navigation items are white */
	.mobile-menu .navigation li a,
	.mobile-menu .navigation li a:visited,
	.mobile-menu .navigation li a:active,
	.mobile-menu .navigation li a:focus {
		color: #ffffff !important;
	}

	/* Override any existing styles that might make text non-white */
	.mobile-menu .navigation li a[style*="color: black"],
	.mobile-menu .navigation li a[style*="color: black !important"] {
		color: #ffffff !important;
	}

	.mobile-menu .close-btn {
		color: #ffffff !important;
		font-size: 20px !important;
		cursor: pointer !important;
	}

	.mobile-menu .close-btn:hover {
		opacity: 0.7 !important;
	}

	/* Ensure mobile menu backdrop works */
	.mobile-menu .menu-backdrop {
		background: rgba(0, 0, 0, 0.7) !important;
	}

	/* Mobile menu box styling */
	.mobile-menu .menu-box {
		background: #1a1a1a !important;
		width: 300px !important;
		max-width: 100% !important;
		height: 100% !important;
		overflow-y: auto !important;
		position: fixed !important;
		right: 0 !important;
		top: 0 !important;
		z-index: 999999 !important;
	}

	/* Mobile menu navigation styling */
	.mobile-menu .navigation {
		border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
	}

	.mobile-menu .navigation li {
		border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
	}

	.mobile-menu .navigation li:last-child {
		border-bottom: none !important;
	}

	/* Contact info styling in mobile menu */
	.mobile-menu .contact-info-box {
		color: #ffffff !important;
		padding: 15px 20px !important;
	}

	.mobile-menu .contact-info-box a {
		color: #ffffff !important;
		text-decoration: none !important;
	}

	.mobile-menu .social-links {
		padding: 20px !important;
	}

	.mobile-menu .social-links a {
		color: #ffffff !important;
		font-size: 18px !important;
		margin-right: 15px !important;
	}

	/* Products Section Responsive Layout */
	/* Hide mobile slider on desktop/tablet */
	@media only screen and (min-width: 768px) {
		.mobile-products-slider {
			display: none !important;
		}
		
		.desktop-products {
			/* display: block !important; */
		}
	}

	/* Show mobile slider on mobile devices */
	@media only screen and (max-width: 767px) {
		.desktop-products {
			display: none !important;
		}
		
		.mobile-products-slider {
			display: block !important;
			margin-top: 30px !important;
		}
	}

	/* Mobile Product Cards Styling */
	.mobile-product-card {
		background: rgba(255, 255, 255, 0.1) !important;
		border-radius: 15px !important;
		padding: 25px 20px !important;
		margin: 10px !important;
		backdrop-filter: blur(10px) !important;
		border: 1px solid rgba(255, 255, 255, 0.2) !important;
		transition: all 0.3s ease !important;
		height: 100% !important;
		display: flex !important;
		flex-direction: column !important;
	}

	.mobile-product-card:hover {
		transform: translateY(-5px) !important;
		box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
	}

	.mobile-product-card .card-icon {
		text-align: center !important;
		margin-bottom: 20px !important;
	}

	.mobile-product-card .card-icon i {
		font-size: 50px !important;
		color: #ffffff !important;
		background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
		-webkit-background-clip: text !important;
		-webkit-text-fill-color: transparent !important;
		background-clip: text !important;
	}

	.mobile-product-card .card-content h3 {
		color: #ffffff !important;
		font-size: 24px !important;
		font-weight: 600 !important;
		margin-bottom: 15px !important;
		text-align: center !important;
	}

	.mobile-product-card .card-content p {
		color: rgba(255, 255, 255, 0.9) !important;
		font-size: 14px !important;
		line-height: 1.6 !important;
		margin-bottom: 20px !important;
		text-align: center !important;
		flex-grow: 1 !important;
	}

	.mobile-product-card .card-btn {
		display: inline-block !important;
		background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
		color: #ffffff !important;
		padding: 12px 25px !important;
		border-radius: 25px !important;
		text-decoration: none !important;
		font-weight: 600 !important;
		font-size: 14px !important;
		transition: all 0.3s ease !important;
		text-align: center !important;
		width: 100% !important;
	}

	.mobile-product-card .card-btn:hover {
		transform: translateY(-2px) !important;
		box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4) !important;
		color: #ffffff !important;
		text-decoration: none !important;
	}

	/* Swiper Pagination Styling */
	.mobile-products-pagination {
		position: relative !important;
		margin-top: 20px !important;
	}

	.mobile-products-pagination .swiper-pagination-bullet {
		background: rgba(255, 255, 255, 0.5) !important;
		opacity: 1 !important;
	}

	.mobile-products-pagination .swiper-pagination-bullet-active {
		background: #ffffff !important;
	}

	/* Responsive adjustments for mobile cards */
	@media only screen and (max-width: 480px) {
		.mobile-product-card {
			padding: 20px 15px !important;
		}

		.mobile-product-card .card-icon i {
			font-size: 40px !important;
		}

		.mobile-product-card .card-content h3 {
			font-size: 20px !important;
		}

		.mobile-product-card .card-content p {
			font-size: 13px !important;
		}

		.mobile-product-card .card-btn {
			padding: 10px 20px !important;
			font-size: 13px !important;
		}
	}

	/* Form Message Styling */
	#formMessage {
		padding: 15px 20px !important;
		border-radius: 10px !important;
		font-weight: 500 !important;
		text-align: center !important;
		margin-top: 20px !important;
	}

	#formMessage.alert-success {
		background: linear-gradient(135deg, rgba(40, 167, 69, 0.1) 0%, rgba(40, 167, 69, 0.05) 100%) !important;
		border: 1px solid rgba(40, 167, 69, 0.3) !important;
		color: #28a745 !important;
		backdrop-filter: blur(10px) !important;
	}

	#formMessage.alert-danger {
		background: linear-gradient(135deg, rgba(220, 53, 69, 0.1) 0%, rgba(220, 53, 69, 0.05) 100%) !important;
		border: 1px solid rgba(220, 53, 69, 0.3) !important;
		color: #dc3545 !important;
		backdrop-filter: blur(10px) !important;
	}
