*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.services-page {
    min-height: 100vh;
    padding: 80px 8%;
    background: #111;
    color: white;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: #1c1c1c;
    padding: 30px;
    border-radius: 15px;
    transition: 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    border: 1px solid #00d9ff;
}

.service-card h3 {
    margin-bottom: 15px;
    color: #00d9ff;
}

.service-card p {
    font-size: 14px;
    line-height: 1.6;
}

 
.services-page button {
    margin-top: 20px;
    padding: 10px 25px;
    border: none;
    background: #00d9ff;
    color: black;
    font-weight: bold;
    cursor: pointer;
    border-radius: 25px;
    transition: 0.3s;
}

.services-page button:hover {
    background: white;
}

/* FOR PROPER ADJUSTMENT IN DIFFERENT DEVICES */
@media (max-width: 768px) {
    header {
        padding: 15px 5%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;   /* Important */
        background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
    }
    
    nav .contents {
        display: flex;
        flex-wrap: wrap;   /* Important */
        gap: 10px;
    }

    nav .elements {
        width: 100%;
    }
}
