#tryout-nav-section {
    background-color: #f4f9ff;
    width: 100%;
    padding: 30px 0;
}

.tryout-nav-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    min-height: 140px;
    background-color: #ffffff;
}

.tryout-nav-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08) !important;
}

.tryout-nav-icon {
    width: 64px;
    height: 64px;
    object-fit: contain;
    display: block;
}

.tryout-nav-text {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.2px;
}

.tryout-nav-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 8px;
}

.bar-teal {
    background: linear-gradient(90deg, #03acb3 0%, #a2f0ed 100%);
}

.bar-yellow {
    background: linear-gradient(90deg, #ffc700 0%, #ffefa0 100%);
}

/* Tablet (768px - 991.98px) */
@media (max-width: 991.98px) {
    #tryout-nav-section {
        padding: 24px 0;
    }
    .tryout-nav-card {
        min-height: 125px;
    }
    .tryout-nav-icon {
        width: 54px;
        height: 54px;
    }
    .tryout-nav-text {
        font-size: 16px;
    }
}

/* Mobile (< 768px) */
@media (max-width: 767.98px) {
    #tryout-nav-section {
        padding: 18px 0;
    }
    .tryout-nav-card {
        min-height: 105px;
        padding: 14px 10px !important;
        border-radius: 16px !important;
    }
    .tryout-nav-icon {
        width: 46px;
        height: 46px;
    }
    .tryout-nav-text {
        font-size: 14px;
    }
    .tryout-nav-bar {
        height: 6px;
    }
}

/* Small Mobile (< 576px) */
@media (max-width: 575.98px) {
    .tryout-nav-icon {
        width: 42px;
        height: 42px;
    }
    .tryout-nav-text {
        font-size: 13px;
    }
}
