/* === GLOBAL PAGE SETUP === */
body {
    margin: 0;
    font-family: 'Orbitron', sans-serif;
    color: #ffffff;

    background: url("images/back.png") no-repeat center center fixed;
    background-size: cover;

    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;

    text-shadow: 0 0 8px rgba(0, 0, 0, 0.8);
}

/* === HEADER === */
header h1 {
    font-size: 3.5rem;
    margin-top: 40px;

    animation: pulseGlow 3s infinite alternate;
}

@keyframes pulseGlow {
    0% {
        text-shadow:
            0 0 10px #00c8ff,
            0 0 20px #00c8ff,
            0 0 40px #ff00c8;
    }
    100% {
        text-shadow:
            0 0 20px #00c8ff,
            0 0 40px #00c8ff,
            0 0 60px #ff00c8;
    }
}

/* === NAVIGATION BAR === */
.navbar {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 20px 0;
}

.navbar a {
    color: #00c8ff;
    text-decoration: none;
    font-size: 1.2rem;
    transition: 0.3s;
}

.navbar a:hover {
    color: #ff00c8;
    text-shadow: 0 0 10px #ff00c8;
    transform: scale(1.1);
}

/* === HERO SECTION === */
.hero {
    max-width: 900px;
    background: rgba(0, 0, 30, 0.55);
    padding: 40px;
    border-radius: 10px;
    margin: 20px auto;
    border: 2px solid #00c8ff;
    box-shadow: 0 0 20px #00c8ff;
}

.hero h2 {
    font-size: 2.5rem;
    color: #00c8ff;
    text-shadow: 0 0 20px #00c8ff;
}

.hero p {
    font-size: 1.3rem;
    color: #b3e8ff;
}

/* === SERVICES SECTION === */
.services {
    display: flex;
    justify-content: space-evenly;   /* evenly spaced */
    align-items: flex-start;
    flex-wrap: nowrap;               /* keeps all 4 on one line */
    width: 100%;
    max-width: 1400px;               /* enough room for all 4 */
    margin: 40px auto;
}


/* === SERVICE CARDS === */
.card {
    background: rgba(0, 0, 40, 0.65);
    border: 2px solid #00c8ff;
    width: 260px;
    padding: 20px;
    border-radius: 10px;

    box-shadow: 0 0 20px #00c8ff;
    transition: 0.3s;

    animation: neonBorder 4s infinite alternate;
}

@keyframes neonBorder {
    0% {
        box-shadow: 0 0 15px #00c8ff;
        border-color: #00c8ff;
    }
    100% {
        box-shadow: 0 0 25px #ff00c8;
        border-color: #ff00c8;
    }
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 35px #ff00c8;
}

.card h3 {
    color: #00c8ff;
    width: 220px;   /* smaller width */
}
    text-shadow: 0 0 10px #00c8ff;
}

.card p {
    color: #b3e8ff;
}

/* === FOOTER === */
footer {
    margin: 40px 0;
    color: #00c8ff;
    text-shadow: 0 0 10px #00c8ff;
}
/* === CONTACT PAGE SECTION === */
.contact-section {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 40px auto;
}

.contact-card {
    background: rgba(0, 0, 40, 0.65);
    border: 2px solid #00c8ff;
    width: 350px;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 20px #00c8ff;
    animation: neonBorder 4s infinite alternate;
    text-align: center;
}

.contact-card h3 {
    color: #00c8ff;
    text-shadow: 0 0 10px #00c8ff;
    margin-bottom: 20px;
}

/* === CONTACT FORM === */
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border-radius: 8px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 1rem;
    outline: none;
    box-shadow: 0 0 10px #00c8ff;
}

.contact-form textarea {
    height: 120px;
    resize: none;
}

.contact-form button {
    width: 100%;
    padding: 12px;
    background: #00c8ff;
    border: none;
    border-radius: 8px;
    color: #000;
    font-size: 1.2rem;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 0 15px #00c8ff;
}

.contact-form button:hover {
    background: #ff00c8;
    box-shadow: 0 0 20px #ff00c8;
    transform: scale(1.05);
}
