/* ----------------------------------------------------------------
	Custom CSS

	Add all your Custom Styled CSS Here for New Styles or
	Overwriting Default Theme Styles for Better Handling Updates
-----------------------------------------------------------------*/

/* Dormant Account Banner */
.dormant-banner {
    background: linear-gradient(135deg, #ff6b6b, #ffa500);
    color: white;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
    border-left: 5px solid #ffffff;
    position: relative;
    overflow: hidden;
}

.dormant-banner::before {
    content: "⚠️";
    position: absolute;
    top: 10px;
    left: 15px;
    font-size: 1.5em;
}

.dormant-banner p {
    margin: 0;
    padding-left: 30px;
    font-weight: 600;
    font-size: 1.1em;
}

.dormant-banner a {
    color: #fff;
    font-weight: bold;
    text-decoration: underline;
    margin-left: 5px;
}

.dormant-banner a:hover {
    text-decoration: none;
}

/* About Our Credit Union Section Image */
.credit-union-image {
	max-height: 400px;
	object-fit: cover;
	width: 100%;
}

@media (max-width: 991.98px) {
	.credit-union-image {
		max-height: 300px;
		margin-top: 2rem;
	}
}

/* Modern Fintech Section */
.fintech-section {
	background: linear-gradient(135deg, #004d4d, #006666, #008080) !important;
}

.fintech-headline {
	text-shadow: 0 0 10px rgba(255,255,255,0.3);
	font-weight: 700;
}

.fintech-star {
	text-shadow: 0 0 8px rgba(255,255,255,0.5);
}

.fintech-card {
	background: rgba(0, 30, 30, 0.7);
	border-radius: 20px;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(0, 200, 200, 0.2);
	position: relative;
}

.fintech-card::before {
	content: '';
	position: absolute;
	top: -2px;
	left: -2px;
	right: -2px;
	bottom: -2px;
	border-radius: 20px;
	box-shadow: 0 0 20px rgba(0, 200, 200, 0.3);
	z-index: -1;
}

.fintech-device {
	background: #001e1e;
	border: 1px solid rgba(0, 200, 200, 0.3);
}

.fintech-window-button {
	width: 10px;
	height: 10px;
	border-radius: 50%;
}

/* Fintech Values Section */
.values-section {
	background-color: #ffffff;
}

.values-label {
	letter-spacing: 2px;
	font-weight: 500;
}

.values-headline {
	color: #ffffff;
	font-weight: 700;
}

.value-card {
	border: 1px solid #eee;
	border-radius: 12px;
	padding: 2.5rem 2rem;
	transition: all 0.3s ease;
}

.value-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.value-card-highlighted {
	background-color: #f8f5f0;
	position: relative;
	overflow: hidden;
}

.value-card-highlighted::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 100px;
	height: 100px;
	background-color: #e8e2d9;
	border-radius: 0 0 0 100px;
}

.value-card-icon {
	color: #0a1f3c;
	stroke-width: 1.5;
}

.value-card-title {
	color: #333;
	font-weight: 600;
}

.value-card-description {
	color: #666;
	line-height: 1.6;
}

.action-button {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	transition: all 0.3s ease;
}

.action-button-outline {
	border: 1px solid #ddd;
	color: #0a1f3c;
}

.action-button-solid {
	background-color: #0a1f3c;
	color: #fff;
}

.action-button:hover {
	transform: translateX(5px);
}