@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

body {
    font-family: "Roboto", sans-serif;
    background-color: #18181b;
    margin: 0;
    color: white;
}

.service {
    margin-bottom: 2%;
    width: 50%;
    text-align: center;
    margin-top: 2%;
    margin-left: auto;
    margin-right: auto;
}

.service>.title {
    font-size: 20px;
}

.service>.desc {
    font-size: 18px;
}

.tile-container {
    display: flex;
    gap: 25px;
    width: 90%;
    max-width: 1800px;
    margin: 0 auto;
    padding: 20px 0;
    justify-content: center;
    flex-wrap: wrap;
}

.tile {
    background: #1e1e21;
    border-radius: 12px;
    padding: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-left: 5px solid #ffffff63;
    transition: all 0.3s ease;
    transform: translateY(0);
    cursor: pointer;
    width: 380px;
    flex-shrink: 0;
}

.tile:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border-left: 5px solid #ffffff;
}

.tile-header {
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.tile:hover .tile-header {
    transform: translateX(3px);
}

.tile-icon {
    width: 36px;
    height: 36px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.tile:hover .tile-icon {
    transform: scale(1.1);
    filter: brightness(1.1);
}

.tile h2 {
    margin: 0;
    font-size: 1.5em;
    transition: all 0.3s ease;
}


.tile p {
    line-height: 1.6;
    margin-top: 15px;
    padding-left: 48px;
    transition: all 0.3s ease;
}


@media (max-width: 1450px) {
    .tile {
        width: 300px;
    }

    .service {
        width: 60%;
    }

    .tile-container {
        width: 92%;
    }

    .tile {
        width: 320px;
    }
}

@media (max-width: 1170px) {
    .tile {
        width: 230px;
    }

    .service>.title {
        font-size: 18px;
    }

    .service>.desc {
        font-size: 16px;
    }
}

@media (max-width: 940px) {
    .tile-container {
        width: 95%;
    }

    .service {
        width: 70%;
    }
}

@media (max-width: 590px) {
    .tile-container {
        width: 98%;
    }

    .tile {
        width: 400px;
    }

    .service {
        width: 80%;
    }
}
@media (max-width: 472px) {
    .tile {
        width: 300px;
    }
}