/* WHY SECTION */

.why {
    width: 100%;
    padding: 80px 20px;
    background: #020617;
    text-align: center;
}

/* TITLE */

.why h2 {
    color: #fff;
    font-size: 36px;
    margin-bottom: 40px;
}

/* MAIN BOX */

.why-box {
    max-width: 900px;
    margin: auto;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;

    /* Glass */
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(15px);

    padding: 30px;
    border-radius: 20px;

    box-shadow: 0 20px 60px rgba(0,0,0,0.7);
}

/* ITEM */

.why-box div {
    background: rgba(255,255,255,0.08);
    padding: 20px;
    border-radius: 12px;

    color: #fff;
    font-size: 16px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    transition: 0.3s;

    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}

/* HOVER */

.why-box div:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.9);
}

/* ICON STYLE */

.why-box i {
    color: #38bdf8;
    font-size: 18px;
}

/* 📱 MOBILE → 2x2 GRID */

@media (max-width: 768px) {
    .why-box {
        grid-template-columns: repeat(2, 1fr);
    }

    .why h2 {
        font-size: 28px;
    }
}

/* ================= SLIDER ================= */

.slider {
    width: 100%;
    overflow: hidden;
    background: #020617;
    padding: 40px 0;
}

/* TRACK */

.slide-track {
    display: flex;
    width: calc(250px * 38);
    animation: scroll 25s linear infinite;
}

/* SLIDE */

.slide {
    width: 250px;
    margin: 0 10px;
}

.slide img {
    width: 100%;
    height: 150px;
    object-fit: cover;

    border-radius: 10px;

    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}

/* ANIMATION */

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}