/* Ensure page centers all content both vertically and horizontally */
body {
    margin: 0;
    padding: 0;
    height: 100vh;
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(135deg, #d4e5ff, #ffffff);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Wraps logo and heading */
.welcome-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Logo styling */
.animated-image {
    width: 350px !important;
    /* 👈 Even smaller now */
    max-width: 100%;
    height: auto;
    display: block;
    animation: fadeIn 2.5s ease-in-out forwards;
}

/* Heading styling */
.animated-heading {
    font-size: 2rem;
    color: #174080;
    margin-top: 20px;
    animation: fadeInUp 3s ease-in-out forwards;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}