* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Montserrat", sans-serif;
    background-image: url(/assets/background-abstract.jpg);
    background-position: top left;
    background-size: 200% 400%;
    backdrop-filter: blur(150px);
    background-repeat: repeat;
    animation: onlygradientSpin 20s linear infinite;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    width: 100%;
    gap: 5rem;
    padding: 5rem 1%;
}

.hero-section {
    align-items: center;
    justify-content: center;
}

.row {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.row h1 {
    color: #00FFFF;
    font-size: 3.5rem;
    font-family: "Montserrat";
    font-weight: 800;
    text-align: center;
    mix-blend-mode: difference;
    animation: slideInRight-d70 2s;
}

.row .route {
    display: flex;
    flex-direction: row;
    margin-top: 1rem;
    align-items: center;
    justify-content: center;
    gap: 3px;
    font-family: "Poppins";
    animation: slideInLeft-d70 2s;
}

.row .route a,
i {
    font-size: 14px;
    font-weight: 400;
    color: white;
    transition: 0.4s ease-in-out;
    border-bottom: 1px solid rgba(0, 255, 255, 0);
}

.row .route i {
    color: #00FFFF;
}

.row .route a:hover {
    border-bottom: 1px solid #00FFFF;
    color: #cbffff;
}

.row .route span {
    color: #00FFFF;
    font-size: 14px;
    font-weight: 400;
    text-shadow: 1px 1px 3px black;
}

.card-section {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.container-card {
    display: flex;
    flex-wrap: wrap; /* Supaya kalau layar kecil, turun ke bawah */
    justify-content: center;
    gap: 2rem;
    width: 90%;
    max-width: 1200px; /* Biar di layar besar tetap tengah */
}

.card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 20px rgba(0, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.container-card a:nth-child(1){
    animation: bounce-down 2s;
}

.container-card a:nth-child(2){
    animation: bounce-down-2 2s;
}

.container-card a:nth-child(3){
    animation: bounce-down-3 2s;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 255, 255, 0.4);
}

.text-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.text-btn i {
    font-size: 4rem;
    color: #00FFFF;
}

.text-btn h2 {
    font-family: "Poppins", sans-serif;
    font-size: 1.5rem;
    color: white;
    text-shadow: 1px 1px 3px black;
}
