/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #1a1a1a; /* Professional Dark Gray */
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.landing-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo {
    width: 250px; /* Adjust size based on your logo dimensions */
    height: auto;
    position: relative;
    z-index: 2;
}

/* The Pulsing Glow Effect */
.pulse-glow {
    position: absolute;
    width: 150px;
    height: 150px;
    background: rgba(56, 189, 248, 0.4); /* Light blue glow - matches your tech theme */
    border-radius: 50%;
    filter: blur(50px);
    z-index: 1;
    animation: pulse 3s infinite ease-in-out;
}

@keyframes pulse {
    0% {
        transform: scale(0.9);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.6;
    }
    100% {
        transform: scale(0.9);
        opacity: 0.3;
    }
}