/* ===============================
   WHY SECTION UNIQUE
================================ */

.why-section-unique {
    padding: 0px 20px;
    background: #f9fbff;
}

.why-container {
    max-width: 1200px;
    margin: auto;
}

/* TITLE */
.why-title {
    text-align: center;
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #222;
}

/* GRID */
.why-grid-unique {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* CARD */
.why-card-unique {
    background: #fff;
    padding: 25px 20px;
    border-radius: 14px;
    text-align: center;
    transition: 0.3s ease;
    box-shadow: 0 5px 18px rgba(0,0,0,0.05);
}

/* HOVER EFFECT */
.why-card-unique:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

/* ICON */
.why-icon {
    font-size: 42px;
    margin-bottom: 15px;
    color: #ff5722;
}

/* TITLE */
.why-heading {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #222;
}

/* TEXT */
.why-text {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* ===============================
   RESPONSIVE
================================ */

/* Tablet */
@media (max-width: 992px) {
    .why-grid-unique {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 576px) {
    .why-grid-unique {
        grid-template-columns: 1fr;
    }

    .why-title {
        font-size: 26px;
    }

    .why-card-unique {
        padding: 20px 15px;
    }
}