/*** contact ***/

input:focus, textarea:focus, select:focus {
    outline: none !important;
    box-shadow: none !important;
    border-color: inherit !important;
}

.form-control:focus {
    box-shadow: none !important;
    border-color: #0d6efd !important;
}
.submit-btn {
    transition: all 0.3s ease ;
}
.submit-btn:hover {
    transform: translateY(-2px) ;
    
}

.modal {
    z-index: 99999; /* Higher than any other elements */
    
}

/* Add this to your CSS file */
.modal.fade.show {
    display: block !important;
    opacity: 1;
}

.modal-backdrop.fade.show {
    opacity: 0.5 !important;
}

#thankYouModal {
    z-index: 99999;
}

#thankYouModal {
    z-index: 99999;
}

.modal-backdrop {
    z-index: 99998;
}

.progress-bar {
    transition: width 1s linear;
}

/* Messenger Floating Button */
.messenger-btn {
    position: fixed;
    bottom: 100px;
    right: 38px;
    background-color: #0084FF;
    color: white;
    padding: 15px;
    border-radius: 50%;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    transition: all 0.3s ease;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
}

.messenger-btn:hover {
    background-color: #0069D9;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.3);
}

.messenger-btn i {
    font-size: 28px;
}

/* Optional Contact Section */
.contact-section {
    max-width: 800px;
    margin: 20px auto;
    padding: 30px;
    text-align: center;
    margin-bottom: 25px;
}

.contact-card {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.messenger-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background-color: #0084FF;
    color: white;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.messenger-link:hover {
    background-color: #0069D9;
    transform: translateY(-2px);
}
