 /* Left Side - Background Styling */
 .modal-left {
    background: linear-gradient(to right, #f39c12, #e74c3c);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    height: 100%;
}

/* Bigger Image - Covers More Space */
.image-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.extra-big-image {
    width: 100%;
    height: auto;
    max-height: 95vh;
    animation: fadeIn 1s ease-in-out;
}

/* Animated Welcome Text */
.welcome-text {
    font-size: 26px;
    font-weight: bold;
    color: white;
    text-align: center;
    margin-top: 15px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeSlideIn 1s ease-out forwards;
}

@keyframes fadeSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Fade-in Animation for Modal */
.modal.fade .modal-dialog {
    transform: translateY(-20px);
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

.modal.show .modal-dialog {
    transform: translateY(0);
    opacity: 1;
}