/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Roboto, sans-serif;
    background: radial-gradient(circle at top, #0a0f24, #000);
    color: #e0e6ff;
}

.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1rem;
}

.logo-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #00d4ff, #0066ff);
    color: #fff;
    font-size: 2.8rem;
    font-weight: bold;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0.7rem;
    box-shadow: 0 0 25px rgba(0, 150, 255, 0.6);
}

h1 {
    font-size: 2.4rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.tagline {
    font-size: 1.2rem;
    margin: 1rem 0;
    color: #9bb3ff;
}

.contact-btn {
    margin-top: 1.5rem;
    padding: 0.8rem 1.8rem;
    color: #e0e6ff;
    text-decoration: none;
    font-size: 1rem;
    border-radius: 8px;

    /* Glass effect */
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(6px);

    /* Neon border */
    border: 1px solid rgba(0, 170, 255, 0.4);

    /* Glow */
    box-shadow: 0 0 12px rgba(0, 170, 255, 0.3);

    transition: 0.3s ease;
}

.contact-btn:hover {
    border-color: rgba(0, 200, 255, 0.9);
    box-shadow: 0 0 22px rgba(0, 200, 255, 0.7);
    background: rgba(0, 170, 255, 0.08);
}

