:where([class^="ri-"])::before { content: "\f3c2"; }
body {
    font-family: 'Inter', sans-serif;
}
.hero-section {
    background-image: url('/image/back.webp');
    background-size: cover;
    background-position: center right;
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}
input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: #a92729;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.bg-primary {
    background-color:rgb(15 76 129 / var(--tw-bg-opacity, 1));
}
label {
    display: inline-block;
}
.error {
    color: red;
    font-size: 0.8em;
    /*margin-top: 5px;*/
    display:inline;
}
/* Modal styles */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}
.modal-content {
    background: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}                