/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* BODY */
body {
    background-color: #05081A !important;
    font-family: 'Segoe UI', Tahoma, sans-serif;
    min-height: 100vh;
    color: #e6f7ff;
}

/* PAGE LAYOUT */
.page {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px;
}

/* BUSINESS CARD */
.card-container {
    width: 90vw;                 /* 90% of viewport width */
    max-width: 900px;            /* prevents over-stretching */
    margin-top: 20px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow:
        0 0 25px rgba(255, 79, 154, 0.55),
        0 0 55px rgba(56, 232, 255, 0.35);
}


.card-container img {
    width: 100%;
    display: block;
}

/* ICON ROW */
.icon-row {
    margin-top: 36px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    width: 90vw;                 /* match card width */
    max-width: 900px;
}


/* ICON BOX */
.icon-box {
    background: linear-gradient(
        180deg,
        rgba(11, 20, 48, 0.95),
        rgba(5, 11, 26, 0.95)
    );
    border-radius: 20px;
    padding: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.35s ease;
    box-shadow:
        0 0 14px rgba(56, 232, 255, 0.45),
        inset 0 0 8px rgba(255, 79, 154, 0.15);
}

.icon-box img {
    width: 48px;
    height: 48px;
    filter: drop-shadow(0 0 6px rgba(255, 79, 154, 0.6));
}

/* HOVER EFFECT */
.icon-box:hover {
    transform: translateY(-6px) scale(1.06);
    box-shadow:
        0 0 22px rgba(255, 79, 154, 0.7),
        0 0 45px rgba(56, 232, 255, 0.55),
        inset 0 0 10px rgba(255, 79, 154, 0.3);
}

/* RESPONSIVE */
@media (max-width: 600px) {
    .icon-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 420px) {
    .card-container {
        width: 95vw;
    }

    .icon-row {
        margin-top: 36px;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
        gap: 22px;
        width: 90vw;
        max-width: 900px;
    }



@media (max-width: 420px) {
    .icon-row {
        gap: 16px;
    }

    .icon-box img {
        width: 42px;
        height: 42px;
    }
}
