.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 10px;
}

.footer-text {
    flex: 1; /* allows the text to grow */
    min-width: 120px; /* minimum width for the text to ensure layout does not break */
}

.footer-images {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-image {
    max-width: 100px;
    height: auto; /* maintain aspect ratio */
    margin-left: 20px; /* spacing between images */
}

/* Media query for smaller screens */
@media (max-width: 768px) {
    .card-footer {
        justify-content: center;
        text-align: center;
    }

    .footer-text {
        flex-basis: 100%; /* makes the text take the full width on small screens */
        margin-bottom: 10px; /* spacing between text and images */
    }

    .footer-images {
        flex-basis: 100%;
        justify-content: center;
    }

    .footer-image {
        max-width: 80px;
        margin-left: 10px; /* reduced spacing between images on small screens */
    }
}


.logo-img-1 {
    width: 45%;
}

.logo-img-2 {
    width: 48%;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}



body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(120deg, #f0f0f0, #ffffff);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    overflow: hidden;
}

.welcome-card {
    background-color: white;
    padding: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    width: 100%;
    height: 70vh;
    max-width: none;
    margin: 0;
}


.welcome-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.welcome-text span {
    font-size: 2.5em;
    font-weight: bold;
    color: #5a6e80;
    text-transform: uppercase;
    opacity: 0;
    transform: translateX(-100px);
    animation: letter-slide-in 0.5s forwards;
    animation-delay: calc(0.1s* var(--i));
}

@keyframes letter-slide-in {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.logo-container {
    margin-top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.logo {
    max-width: 50%;
    min-width: 300px;
    height: auto;
    opacity: 0;
    transform: translateY(-100px);
    animation: logo-slide-down 1.5s ease forwards;
    animation-delay: 1.5s;
}

@keyframes logo-slide-down {
    0% {
        opacity: 0;
        transform: translateY(-100px);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.cta-button {
    padding: 10px 20px;
    font-size: 1.2rem;
    color: white; /* Ensures the text color stays white */
    background-color: #5a6e80;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    position: absolute;
    bottom: 20px;
    right: 20px;
    opacity: 0;
    transition: opacity 1s ease-in-out, background-color 0.3s ease; /* Added smooth transition for background color */
    text-decoration: none; /* Ensures no underline for the text */
    font-weight: bold;
}

.cta-button:hover {
    background-color: #3c464f; /* Change the background color on hover */
    color: white; /* Maintain text color as white */
}

.cta-button i {
    color: white; /* Keeps the icon color white */
}

.cta-button:hover i {
    color: white; /* Ensure the icon color remains white on hover */
}

@keyframes fade-in {
    to {
        opacity: 1;
    }
}