/* Pillar Wealth FX - FINAL & POLISHED CSS - November 2, 2025 */

body {
    background-image: url("../images/main-background.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    font-family: "Poppins", sans-serif;
    color: #fff;
}

.navbar {
    background-color: rgba(6, 17, 44, 0.8) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(47, 129, 247, 0.2);
}

.hero-section-v2 {
    position: relative;
    padding: 100px 0;
    text-align: center;
    background-image: url("../images/hero-background.jpg");
    background-size: cover;
    background-position: center;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to top, #040d21, rgba(4, 13, 33, 0.5));
}

.hero-content {
    position: relative;
    z-index: 2;
}

.section-title {
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.plan-card-v2 {
    background: rgba(6, 17, 44, 0.7);
    border: 1px solid #2f81f7;
    border-radius: 10px;
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    padding: 20px;
    color: #fff;
}

.plan-card-v2:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 25px rgba(47, 129, 247, 0.5);
}

.btn-primary {
    background: linear-gradient(90deg, #2f81f7, #0554b2);
    border: none;
    border-radius: 25px;
    padding: 10px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    box-shadow: 0 0 15px rgba(47, 129, 247, 0.7);
}

.auth-form-container {
    background: rgba(6, 17, 44, 0.7);
    border: 1px solid #2f81f7;
    border-radius: 10px;
    backdrop-filter: blur(5px);
    padding: 40px;
}

.form-control, .form-select {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: #30363d;
    color: #c9d1d9;
}

.form-control:focus, .form-select:focus {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #2f81f7;
    color: #c9d1d9;
    box-shadow: 0 0 0 0.25rem rgba(47, 129, 247, 0.25);
}

.form-control::placeholder {
    color: rgba(201, 209, 217, 0.7);
    opacity: 1;
}

.form-control:-ms-input-placeholder {
    color: rgba(201, 209, 217, 0.7);
}

.form-control::-ms-input-placeholder {
    color: rgba(201, 209, 217, 0.7);
}

/* ================================================== */
/* === IYI NI CODE NSHYA IKOSOYE IBARA RY'UMWERU === */
/* ================================================== */
.form-select option {
    background-color: #0a2540 !important; /* Ubururu bwijimye nk'ubwa background */
    color: white;
}
/* Style for My Team Page Background */
body.my-team-bg {
    background-color: #0a183b;
    background-image: url("../images/dashboard-bg.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}
