@charset "UTF-8";

body {
    font-family: Arial, sans-serif;
    margin: 0; /* Important for full page background */
    padding: 0; /* Important for full page background */
    overflow-x: hidden; /* Prevent horizontal scrollbar from blur effect */
    position: relative; /* Needed for absolute positioning of background-div */
    z-index: 1; /* Ensure body content is above the background-div */
     /* ✅ Your desired background color */
}

/* New CSS for the blurred background div */
.blurred-background-container {
    position: fixed; /* Fixes it to the viewport */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-color:  #c1e3e3;
    z-index: -1; /* Puts it behind all other content */
    filter: blur(5px); /* Apply blur only to this background div */
    transform: scale(1.02); /* Slight scale to hide blur edges from blur filter */
}

.wrapper-main {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    position: relative; 
    z-index: 2;
}

.services-bar {
    flex-grow: 1;
    padding: 40px 0;
    padding-top: 100px;
}

.card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 30px;
    background-color: #ffffff;
}

.form-control-label {
    font-weight: 600;
    margin-bottom: 5px;
    color: #343a40;
}

.form-check-label {
    font-weight: normal;
    font-size: 0.9rem;
    color: #495057;
    margin-left: 5px;
}

input[type="text"], input[type="email"], input[type="tel"], textarea, select {
    border-radius: 5px;
    border: 1px solid #ced4da;
    padding: 10px;
    width: 100%;
    margin-bottom: 15px;
}

input[type="text"]:focus, input[type="email"]:focus, input[type="tel"]:focus, textarea:focus, select:focus {
    border-color: #80bdff;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
    padding: 10px 20px;
    font-size: 1.1rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

.text-danger {
    color: #dc3545 !important;
}

h2 {
    color: #343a40;
    margin-bottom: 30px;
    font-weight: 700;
}

.services-bar h2 {
    color: white;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.form-check {
    margin-bottom: 10px;
    padding-left: 2.25rem;
}

.form-check-input {
    margin-top: 0.3rem;
    margin-left: -1.5rem;
}
