
body{
    background-color: #eff5fa;
}
/* Form Section */
.services-bar {
    background-color: #eff5fa;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
    border: 1px solid #e0e0e0;
}

.section {
    margin-bottom: 35px;
}

.section-header {
    background-color: #eff5fa;
    color: #1e3a8a;
    padding: 20px;
    display: flex;
    align-items: center;
    border-radius: 6px;
    margin-bottom: 20px;
}

.section-header .section-icon {
    margin-right: 12px;
    font-size: 28px;
    color: #007bff;
}

.section-header h2 {
    font-size: 24px;
    color : #1e3a8a;
    font-weight: 500;
}

/* Form Grid */
form{
    background-color: #eff5fa;
}
.form-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.input-field {
    position: relative;
}

.input-field label {
    font-size: 14px;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 8px;
}

.input-field input,
.input-field select,
.input-field textarea {
    width: 100%;
    padding: 12px;
    font-size: 15px;
    border: 1px solid #99c3f3;
    border-radius: 6px;
    box-sizing: border-box;
    transition: all 0.3s ease-in-out;
}

.input-field input[readonly] {
    background-color: #99c3f3;
    color: #666;
}

.input-field select,
.input-field textarea {
    font-size: 14px;
}
.sbopenForm{
    background-color: #eff5fa;
}
.input-field input:focus,
.input-field select:focus,
.input-field textarea:focus {
    border-color: #1e40af;
    outline: none;
    box-shadow: 0 0 8px rgba(0, 123, 255, 0.2);
}

/* Full Width Input Fields */
.full-width {
    grid-column: span 2;
}

/* Submit Button */
.form-actions {
    text-align: center;
    margin-top: 30px;
}

.form-actions button {
    background-color: #1e40af;
    color: white;
    border: none;
    padding: 15px 25px;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
}

.form-actions button:hover {
    background-color: #1e40af;
}

.form-actions button:active {
    background-color: #1e40af;
}

/* Required Field Indicator */
.required {
    color: red;
    font-size: 12px;
    margin-left: 5px;
}

/* Modal Window Styles (for additional confirmation or messages) */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    width: 400px;
    text-align: center;
}

.modal-content h3 {
    margin-bottom: 20px;
    font-size: 18px;
    color: #333;
}

.modal-content button {
    background-color: #28a745;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
}

.modal-content button:hover {
    background-color: #218838;
}

/* Tooltip Styles */
.tooltip {
    position: absolute;
    top: -5px;
    right: 10px;
    background-color: rgba(0, 0, 0, 0.75);
    color: white;
    font-size: 12px;
    padding: 5px 8px;
    border-radius: 4px;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.input-field:hover .tooltip {
    visibility: visible;
    opacity: 1;
}
input{
    background-color: #eff5fa;
}
/* Responsiveness for Smaller Screens */
@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
    .services-bar {
        padding: 15px;
    }
    .full-title h1 {
        font-size: 28px;
    }
    .section-header {
        padding: 15px;
    }
    .input-field input,
    .input-field select,
    .input-field textarea {
        padding: 10px;
    }
    .form-actions button {
        width: 100%;
    }
}

/* Mobile Styles */
@media (max-width: 480px) {
    .wrapper-main {
        padding: 10px;
    }
    .top-bar {
        padding: 5px 0;
    }
    .navbar {
        padding: 10px 0;
    }
    .navbar-nav .nav-item {
        margin-left: 15px;
    }
    .section-header h2 {
        font-size: 20px;
    }
    .modal-content {
        width: 300px;
    }
    .form-actions button {
        padding: 12px 20px;
        font-size: 14px;
    }
}
