
.card {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05); /* Adjust values as needed */
    transition: box-shadow 0.3s ease-in-out, transform 0.3s ease-in-out; /* Smooth transition for shadow and lift */
}

/* Add a more pronounced shadow on hover */
 .card:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Stronger shadow on hover*/
    /*transform: translateY(-5px);  Optional: Adds a slight "lift" effect */
}

.sec-button{
    background-color: #fb4928;
    color: white;

}

input.form-control,
textarea.form-control,
select.form-control{
    border: 1px solid #a6a6a7;
}

.sec-button:hover{
    background-color: #fd9d0d;
    color: white;
}

.sec-button .fa,.fas{
    color: white;

}

.pri-button{
    background-color: #262f79;
    color: white;
}

.pri-button .fa,.fas{
    color: white;
}

button .fa,.fas{
    color: white;
}

.pri-button:hover{
    background-color: #5b40d0;
    color: white;
}

.fa, .fas{
    color: #5b40d0;
}

/* .cart .fa, .fas{
    color: white;
} */

.featured-text{
    background-color: #fd9d0d;
    color: white;
    justify-items: center;
    padding: 5px;
}

.carousel-indicators li{
    list-style: none;
}

.main-content{
      background-image: url();
}

.back-img::before {
    content: ""; /* Essential for pseudo-elements */
    position: absolute; /* Position over the whole parent */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/build/icons/login-img.png'); /* Replace with your image path */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.4; /* Adjust this value for the background image's opacity */
    z-index: -1; /* Place behind the content */
}

#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    /* background-image: 'f110'; */
    transition: opacity 0.5s ease-out;
}

/* Optional: Spinner animation */
/* .loader {
    /* border: 8px solid #f3f3f3;
    border-top: 8px solid #3498db;
    border-radius: 50%;
    width: 60px;
    height: 60px; */
    /* animation: spin 1.5s linear infinite;
} */

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* When the screen is hidden */
#loading-screen.hidden {
    opacity: 0;
    pointer-events: none;
}

.modal-img-wrap{
    border: 1px solid #a6a6a7;
    border-radius: 15px;
        margin-bottom: 10px;
    /*padding: 10px; */
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 200px;
    overflow: hidden;
    display: flex;
}
