html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background-color: #f9f9f9;
    color: #333333;
}

header {
    background-color: #ffffff;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
}

.logo-container {
    position: absolute; /* Allow logo placement without affecting title centering */
    left: 20px; /* Align the logo to the left */
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    max-width: 180px;
    margin-left: 20px;
    transition: transform 0.5s ease;
}

.logo-container img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.logo-container:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.nav-links a {
    color: #333;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
}

.nav-links a:hover {
    color: #00a9d8;
}

.nav-links a:hover,
.nav-links-mobile a:hover {
    color: #00a9d8;
    text-shadow: 0 0 5px rgba(0, 169, 216, 0.5);
}

.app-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}


.menu-icon {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
}

.menu-icon div {
    width: 100%;
    height: 3px;
    background-color: #333;
    border-radius: 2px;
}

.nav-links-mobile {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    background-color: #ffffff;
    text-align: center;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
    max-height: 0;
}

.nav-links-mobile a {
    padding: 15px 0;
    color: #333;
    font-size: 18px;
    text-decoration: none;
}

.nav-links-mobile a:hover {
    color: #00a9d8;
}

.nav-links-mobile.open {
    display: flex;
    max-height: 500px;
}

.dashboard {
    padding: 40px 20px;
    text-align: center;
    background-color: #ffffff;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.dashboard h1 {
    font-size: 28px;
    margin-bottom: 10px;
    color: #333;
}

.dashboard p {
    font-size: 16px;
    color: #555;
    margin-bottom: 30px;
}

.app-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
    padding: 0 20px;
}

.app-card {
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.app-card img {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
}

.app-card h3 {
    font-size: 18px;
    color: #333;
    margin: 10px 0;
}

.app-card p {
    font-size: 14px;
    color: #666;
}

.app-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.footer {
    background-color: #ffffff;
    padding: 20px;
    text-align: center;
    color: #555;
    font-size: 14px;
}

.footer a {
    color: #00a9d8;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

.app-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}
.app-card a:hover {
    transform: scale(1.05);
    transition: 0.2s ease-in-out;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .menu-icon {
        display: flex;
    }

    .logo-container {
        max-width: 150px;
        height: 50px;
    }

    .dashboard h1 {
        font-size: 24px;
    }

    .app-card h3 {
        font-size: 16px;
    }

    .app-card p {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .dashboard h1 {
        font-size: 20px;
    }

    .app-card h3 {
        font-size: 14px;
    }

    .app-card p {
        font-size: 12px;
    }

    .logo-container {
        max-width: 120px;
        height: 40px;
    }

    .footer {
        padding: 15px;
    }
}


