:root {
    --primary: #002d72;
    --accent: #00d4ff;
    --dark: #0a192f;
    --light: #ffffff;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: #f0f4f8;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 10%;
    background: var(--light); /* Fixed variable name */
    border-bottom: 1px solid #e1e8ed;
}

.hero {
    position: relative;
    min-height: 600px; /* Increased height */
    display: flex;
    align-items: center;
    justify-content: space-around; /* Spreads out text and login card */
    padding: 0 10%;
    overflow: hidden;
    background-color: #0a192f; /* Fallback color if image fails */
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/assets/img/hero-bank.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    opacity: 0.6; /* Makes text easier to read */
}

.hero-content, .login-card {
    position: relative;
    z-index: 10; /* Put everything clearly above the bg */
}

.hero-content {
    max-width: 500px;
    color: white;
}

.hero h1 {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.login-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    width: 350px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

/* Ensure the rates bar is visible */
.rates-bar {
    background: #e9ecef;
    padding: 20px 10%;
    display: flex;
    gap: 30px;
    border-top: 1px solid #ddd;
}