﻿
/* Full-screen background section */
.welcome-section {
    position: relative;
    height: 80vh;
    background-image: url('../content/dashboardbg.png');
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

/* Dark overlay */
.welcome-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

/* Text content */
.welcome-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    animation: fadeInUp 1.2s ease-out;
}

    .welcome-content h1 {
        font-size: 3rem;
        font-weight: bold;
        margin-bottom: 20px;
    }

    .welcome-content p {
        font-size: 1.3rem;
        opacity: 0.9;
    }

/* Animation */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* CTA Button */
.welcome-btn {
    margin-top: 25px;
    padding: 12px 25px;
    background: #ff9900;
    border: none;
    color: white;
    font-size: 1.1rem;
    border-radius: 30px;
    transition: background 0.3s ease;
}

    .welcome-btn:hover {
        background: #e07c00;
    }


