body {
    background: linear-gradient(to right, #00275f, #2f68b8);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    font-family: Arial, sans-serif;
    animation: fadeIn 1.5s ease-in-out;
}

.welcome-container {
    max-width: 650px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    animation: slideUp 1.2s ease-out;
    position: relative;
    margin-top: 60px; /* Adjust for logo overlap */
    transition: opacity 1s ease-out;
}

.logo-container {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.logo-container img {
    width: 95px;
    height: 95px;
    border-radius: 50%;
}

h1 {
    font-size: 2rem;
    font-weight: bold;
    animation: fadeInDown 1.5s ease-in-out;
    margin-top: 50px;
}

p {
    font-size: 1.2rem;
    animation: fadeInUp 1.5s ease-in-out;
}

.description {
    font-size: 1rem;
    margin-top: 10px;
    font-style: italic;
    opacity: 0.8;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes fadeInDown {
    from { transform: translateY(-30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes fadeInUp {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}