/* =========================
   RESET
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* =========================
   BODY
========================= */

header{
    z-index: 100;
    top: 0;
    position: sticky;

    background-color: #404485;
}

body {
    min-height: 100vh;

    background:
        radial-gradient(
            circle at top left,
            #404485,
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #090909,
            #17172e,
            #231111
        );

    color: white;

    font-family: Arial, sans-serif;

    padding: 10px;
}


/* =========================
   NAVIGATION
========================= */

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 20px 25px;
}

nav h2 {
    text-shadow:
        0 0 10px white,
        0 0 25px #6670ff;
}

.nav-links {
    display: flex;
    gap: 15px;
}

.nav-links a {
    width: 95px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: black;

    color: white;

    text-decoration: none;

    border: 1px solid white;
    border-radius: 12px;

    box-shadow:
        0 0 15px rgba(255, 255, 255, 0.4);

    transition: 0.3s ease;
}

.nav-links a:hover {
    transform: translateY(-6px);

    box-shadow:
        0 0 10px white,
        0 0 30px #6670ff;
}


/* =========================
   SERVICES
========================= */

.services-container {
    max-width: 1100px;

    margin: 60px auto;

    text-align: center;
}

.services-container h1 {
    font-size: 50px;

    margin-bottom: 15px;

    text-shadow:
        0 0 10px white,
        0 0 30px #6670ff;
}

.services-intro {
    max-width: 650px;

    margin: 0 auto 50px;

    color: #dddddd;

    font-size: 18px;

    line-height: 1.6;
}


/* =========================
   SERVICE GRID
========================= */

.service-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;
}


/* =========================
   SERVICE CARD
========================= */

@keyframes moves{
    from {transform: translateY(-25px)}
    to {transform: translateY(25px)}
}

.service-card {
    animation: moves 2s ease-in-out infinite alternate;

    padding: 30px 25px;

    background: rgba(0, 0, 0, 0.5);

    border: 1px solid rgba(255, 255, 255, 0.2);

    border-radius: 20px;

    transition: 0.3s ease;

    backdrop-filter: blur(8px);
}

.service-card:hover {
    transform: translateY(-12px);

    border-color: white;

    box-shadow:
        0 0 15px white,
        0 0 30px #6670ff;
}


/* =========================
   ICON
========================= */

.service-icon {
    font-size: 40px;

    margin-bottom: 15px;

    text-shadow:
        0 0 15px #6670ff;
}

/* =========================
   TEXT
========================= */

.service-card h2 {
    margin-bottom: 15px;

    text-shadow:
        0 0 8px white;
}

.service-card p {
    color: #cccccc;

    line-height: 1.6;

    min-height: 80px;
}


/* =========================
   PRICE
========================= */

.service-card h3 {
    margin: 25px 0;

    font-size: 25px;

    color: white;

    text-shadow:
        0 0 10px #6670ff;
}


/* =========================
   BUTTON
========================= */

.service-button {
    display: inline-block;

    padding: 12px 25px;

    background: black;

    color: white;

    text-decoration: none;

    border: 1px solid white;

    border-radius: 12px;

    box-shadow:
        0 0 10px rgba(255, 255, 255, 0.4);

    transition: 0.3s ease;
}

.service-button:hover {
    transform: translateY(-5px);

    box-shadow:
        0 0 10px white,
        0 0 25px #6670ff;
}


/* =========================
   MOBILE
========================= */

@media (max-width: 900px) {

    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 600px) {

    nav {
        flex-direction: column;

        gap: 20px;
    }

    .nav-links {
        flex-wrap: wrap;

        justify-content: center;
    }

    .services-container h1 {
        font-size: 38px;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }
}