/* Applications Grid */
.applications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    padding: 20px 0;
}

/* Application Card */
.app-card {
    background: #111;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.app-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

/* Application Image */
.app-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
    border: 2px solid #222;
}

/* Icon */
.app-icon {
    font-size: 42px;
    margin-bottom: 10px;
    color: #00aaff;
}

/* Text */
.app-card h2 {
    margin-bottom: 10px;
    color: #fff;
}

.app-card p {
    color: #ccc;
    font-size: 15px;
    line-height: 1.5;
}
