/* ============================================
   OUR PROCESS PAGE - BUTTON HOVER FIX
   ============================================ */

/* Fix for white button with grape text hover */
.btn-white.text-grape {
	background-color: #ffffff !important;
	color: #7A1E4F !important;
	border: none !important;
	font-weight: 600;
	transition: all 0.3s ease;
}

.btn-white.text-grape:hover {
	background-color: #f8f9fa !important;
	color: #5d1a3d !important;
	transform: translateY(-3px);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2) !important;
}

/* Ensure text-grape class maintains proper color */
.text-grape {
	color: #7A1E4F !important;
}

/* Optional: Add hover effect to the entire card */
.card.bg-grape:hover {
	transform: translateY(-5px);
	transition: all 0.3s ease;
}

/* Icon List Positioning Fix for Modal Sidebar */
#modal-strategy .icon-list.bullet-bg.bullet-soft-primary li {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	margin-bottom: 1.5rem;
}

#modal-strategy .icon-list.bullet-bg.bullet-soft-primary li span:first-child {
	flex-shrink: 0;
	margin-top: 0.25rem;
}

#modal-strategy .icon-list.bullet-bg.bullet-soft-primary li span:last-child {
	flex: 1;
}

#modal-strategy .icon-list.bullet-bg.bullet-soft-primary li h6 {
	margin-top: 0;
	margin-bottom: 0.25rem;
	line-height: 1.4;
}

#modal-strategy .icon-list.bullet-bg.bullet-soft-primary li p {
	line-height: 1.5;
	margin-bottom: 0;
	color: rgba(52, 63, 82, 0.8);
}

/* Ensure icon styling consistency in modal */
#modal-strategy .bullet-soft-primary i {
	background-color: #7A1E4F !important;
	color: #fff !important;
	width: 32px;
	height: 32px;
	font-size: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
}

/* Responsive adjustments */
@media (max-width: 991px) {
	.btn-white.text-grape {
		width: 100%;
		margin-top: 1rem;
	}
}

.widget-title {
    margin-bottom: 1.25rem !important;
    font-size: 0.95rem !important;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
    color: #ffffff !important;
}

footer .fs-sm,
footer address,
footer p,
footer li a {
    font-size: 0.85rem !important;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6) !important;
}

/* Fix for Twitter/X Logo Visibility */
.uil-twitter::before,
.x-social-icon i::before {
	content: "\edc5" !important;
	/* The 'X' icon Unicode for Unicons */
	font-family: "unicons" !important;
	font-style: normal;
	font-weight: normal;
	display: inline-block;
	text-decoration: inherit;
	color: #ffffff;
	/* Ensures it's white */
	opacity: 1 !important;
}

/* Fix Space Inconsistency */
.offset-lg-1 {
	margin-left: 8.33333333% !important;
	/* Standard Bootstrap offset */
}

/* Ensure the container uses flexbox for alignment */
.nav.social.social-white {
	display: flex !important;
	align-items: center !important;
	gap: 20px !important;
	/* This creates exactly equal 20px space between every icon */
}

/* Reset anchor tags to ensure they don't have inherited margins */
.nav.social.social-white a {
	margin: 0 !important;
	padding: 0 !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	color: #ffffff !important;
	line-height: 1 !important;
}

/* Align the SVG Twitter-X icon perfectly with FontIcons */
.x-social-icon {
	height: 14px;
	/* Matches the SVG height for a tight bounding box */
}

.x-social-icon svg {
	display: block;
	fill: #ffffff !important;
	/* Ensures the X is white */
}

/* Ensure Unicons match the visual center */
.nav.social.social-white i {
	font-size: 1rem;
	display: block;
	line-height: 1;
}
/* Hover effect */
.hover-grape:hover {
    color: #7a1e4f !important;
}
