 body {
    font-family: Montserrat, sans-serif;
    /* background-color: #0F172A; */
    /* background: linear-gradient(to right, #071219, #f1f1f1, #071219); */
    background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)), url('/images/bg.png');
    /* object-fit: cover; */
    /* background-image: url('your-downloaded-image.jpg'); */
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Keeps the background still while scrolling */
    background-repeat: no-repeat;
    background-color: #0f172a; /* Fallback color */

}

.bg-theme{
    background-color: #0f172a;
}

.card-border{
    border:1px solid #334155;
}

.text-greetings .text-welcome{
    font-size: 40px;
}

.text-greetings .text-balance{
    font-size: 50px;
  
}

.card-img-top{
    width: 100%;
   
    object-fit: cover;
    
}

/* Custom Dim Glass Effect */
.glass-card {
    /* Uses your brand color with 70% opacity for the "dim" look */
    background-color: rgba(30, 41, 59, 0.3) !important;

    /* The blurring effect for the background behind the card */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    /* Safari support */

    /* A subtle highlight on the top/left edge to simulate glass thickness */
    border: 1px solid rgba(255, 255, 255, 0.2) !important;

    /* Smooth corners matching your previous UI designs */
    /* border-radius: 15px !important; */

    /* Soft shadow to lift the card off the background */
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);

    color: #ffffff;
}

/* Optional: Add a slight orange glow when hovering */
.glass-card:hover {
    border-color: rgba(249, 115, 22, 0.5) !important;
    transition: 0.3s ease;
}

.btn-secondary{
    background:rgba(0, 0, 0, 0);
    border:1px solid #F97316;
    color:#F97316;
}

.btn-secondary:hover{
    background:rgba(249, 115, 22, 0.5);
    border:1px solid #F97316;
    transition: 0.3s ease;
}

@media(max-width: 768px){
    .text-greetings .text-welcome{
        font-size: 20px;
    }

    .text-greetings .text-balance{
        font-size: 26px;
    
    }
}