body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: #f5f5f7;
    color: #1c1c1e;
    margin: 0;
    padding: 0;
}

/* Header */
.header {
    background-color: #fff;
    padding: 10px 15px;
    border-bottom: 1px solid #ddd;
}

.header .nav-link {
    font-weight: 500;
    color: #007aff;
}

.header .nav-link img{
    width: auto;
    height: 30px;
}

.carousel-caption{
    height: 110px;
}

.featured-banner img {
    object-fit: cover;
    height: 150px;
}

.carousel-caption h5 {
    font-size: 1.2em;
    font-weight: bold;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);
}

.carousel-caption p {
    font-size: 1rem;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
    color: #f5f5f5;
}



/* Section Titles */
.section-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 20px 0;
}

/* Grid Layout for Apps */
.app-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
}

.app-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #fff;
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: #252525;
}

.app-card img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 16px;
}

.app-title {
    font-size: 1rem;
    font-weight: 600;
    margin-top: 8px;
    text-align: center;
}

.app-category {
    color: #555;
    margin-top: 4px;
    font-size: 0.85rem;
}

/* Footer */
footer {
    background-color: #ddd;
    padding: 20px;
    text-align: center;
}

.bottom-menu {
    border-top: 1px solid #ffffffe5;
    backdrop-filter: blur(8px);
}

.bottom-menu .menu-item {
    flex-grow: 1;
    color: #555;
    text-decoration: none;
}

.bottom-menu .menu-item:hover {
    color: #007bff;
    /* Change color on hover */
}

.bottom-menu .menu-item i {
    display: block;
    margin-bottom: 4px;
    color: #007bff;
}

.bottom-menu .menu-item span {
    font-size: 0.85rem;
    font-weight: 500;
    color: #333;
}


/* Responsive Improvements */
@media (max-width: 576px) {
    .app-card img {
        width: 70px;
        height: 70px;
    }

    .app-title {
        font-size: 0.9rem;
    }

    .app-category {
        font-size: 0.8rem;
    }
}