html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
    color: var(--bs-secondary-color);
    text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
    text-align: start;
}


/*ADDED*/
/* wwwroot/css/site.css */
body {
    background-color: #f8f9fa;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #333;
}

/* Navbar */
.navbar {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
}

.brand-faso {
    color: #dc3545;
}
/* Red for Faso */
.brand-links {
    color: #212529;
}

/* Hero Section */
.main-header {
    text-align: center;
    padding: 60px 20px;
    background: #fff;
    border-radius: 20px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.main-title {
    font-weight: 800;
    font-size: 3rem;
    margin-bottom: 10px;
}

.text-gradient {
    background: linear-gradient(90deg, #dc3545, #0d6efd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Colorful Service Cards */
.service-card {
    border: none;
    border-radius: 20px;
    padding: 2rem;
    color: white;
    height: 100%;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
    display: block;
    position: relative;
    overflow: hidden;
}

    .service-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.2);
        color: white;
    }

/* Specific Colors for Services */
.card-momo {
    background: linear-gradient(135deg, #ff6b00 0%, #ff9e00 100%); /* Orange Money style */
}

.card-cards {
    background: linear-gradient(135deg, #0052d4 0%, #4364f7 100%); /* Visa/Blue style */
}

.card-transfer {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%); /* Success/Green style */
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

/* Simple Footer */
footer {
    text-align: center;
    padding: 40px 0;
    color: #6c757d;
}

/*USER HOME PAGE*/
/* Add this to your existing CSS */

/* Hover Lift Effect for Dashboard Cards */
.hover-lift {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .hover-lift:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
        cursor: pointer;
    }

/* Gradient Text for Greeting */
.text-gradient {
    background: linear-gradient(90deg, #dc3545, #0d6efd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}