/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@300;500&display=swap');

/* --- FIXED FULL RESPONSIVE BACKGROUND --- */
body {
    background: url("Assets/BG/Cubitrek UI Background Design-02 1.png") no-repeat center center;
    background-size: cover;
    min-height: 100vh;
    width: 100%;
    overflow-x: hidden;
    color: #ffffff;
    font-family: 'Unbounded', sans-serif;
}

/* WRAPPER */
.services-wrapper {
    width: 100%;
    min-height: 100vh;
    padding: 50px 60px;
    position: relative;
}

/* BACK BUTTON */
.back-btn {
    width: 26px;
    position: absolute;
    top: 30px;
    left: 40px;
}

/* TOP RIGHT DOT */
.top-dot {
    width: 18px;
    height: 18px;
    background: #72f9d2;
    border-radius: 50%;
    position: absolute;
    top: 35px;
    right: 40px;
}

/* TITLE */
.title {
    text-align: center;
    font-size: 50px;
    font-weight: 500;
    margin-top: 50px;
    letter-spacing: 3px;

    background: linear-gradient(90deg, #FFFFFF 43%, rgba(153,153,202,0.79) 81%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* GRID */
.services-grid {
    margin-top: 70px;
    display: grid;
    grid-template-columns: repeat(5, auto);
    justify-content: center;
    gap: 40px;
    align-items: center;
}

/* SERVICE CARD */
.service-item {
    width: 230px;
    text-align: center;
}

/* --- GREEN BORDER CIRCLE (#34FF9D) --- */
.icon-circle {
    width: 110px;
    height: 110px;
    border: 2px solid #34FF9D;   /* FIXED */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 15px auto;
}

.icon {
    width: 55px;
}

/* SERVICE TEXT */
.service-item p {
    font-weight: 300;
    font-size: 18px;
    line-height: 1.3;
    letter-spacing: 1px;

    background: linear-gradient(90deg, #D9D9D9 0%, #737373 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* GLOW DIVIDER IMAGE */
.glow {
    width: 35px;
    height: 120px;
    object-fit: contain;
}

/* NEXT BUTTON */
.next-btn {
    width: 50px;
    height: 50px;
    border: 1px solid #fff;
    border-radius: 8px;
    position: absolute;
    bottom: 40px;
    right: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.next-btn img {
    width: 20px;
}


/* ----------------------------
       RESPONSIVE SECTION
----------------------------- */

/* TABLET */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(3, auto);
    }

    .glow {
        display: none;
    }
}

/* MOBILE */
@media (max-width: 600px) {

    body {
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
    }

    .title {
        font-size: 32px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .service-item {
        width: 100%;
    }

    .glow {
        display: none;
    }

    .back-btn {
        width: 22px;
        left: 20px;
        top: 20px;
    }

    .top-dot {
        right: 20px;
        top: 25px;
    }

    .next-btn {
        right: 20px;
        bottom: 20px;
    }
}
