h1 {
    font-size: 3rem;
    color: #00d4ff;
    margin-bottom: 10px;
}

.description {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    width: 80%;
    max-width: 1200px;
}

.card {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.2);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.2s;
    justify-content: center;
    height: 20vh;
}

.card:hover {
    transform: translateY(-10px);
}

.card-title {
    font-size: 1.5rem;
    color: #ffffff;
    margin: 10px 0;
}

.card-description {
    font-size: 1rem;
    color: #ddd;
}

.btn:hover {
    transform: scale(1.05) rotate(5deg);
    background: linear-gradient(90deg, #2575fc, #6a11cb);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.4);
}

/* การเบลอพื้นหลัง */
.background-blur {
    position: absolute;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(2px);
    z-index: 0;
}

.display-001{
    display: flex;
    justify-content: center;
}