    :root {
        --bg-color: #f5f5f5;
        --text-color: #222;
        --card-bg: rgba(255, 255, 255, 0.7);
        --card-border: rgba(255, 255, 255, 0.2);
    }

    @media (prefers-color-scheme: dark) {
        :root {
            --bg-color: #0f0f1a;
            --text-color: #f5f5f5;
            --card-bg: rgba(255, 255, 255, 0.05);
            --card-border: rgba(255, 255, 255, 0.1);
        }
    }

    body {
        margin: 0;
        font-family: "Poppins", sans-serif;
        background: var(--bg-color);
        color: var(--text-color);
        overflow-x: hidden;
    }

    .background {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
    }

    canvas {
        width: 100%;
        height: 100%;
        display: block;
    }

    .glass-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 30px;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        position: sticky;
        top: 0;
    }

    .glass-header .logo {
        font-weight: 600;
        font-size: 1.5rem;
    }

    nav a {
        margin: 0 10px;
        color: var(--text-color);
        text-decoration: none;
        font-weight: 500;
    }

    nav a:hover {
        opacity: 0.7;
    }

    #theme-toggle {
        border: none;
        background: transparent;
        font-size: 1.2rem;
        cursor: pointer;
    }

    .gallery {
        display: flex;
        flex-direction: row;
        gap: 30px;
        padding: 30px;
    }

    .card {
        background: var(--card-bg);
        border: 1px solid var(--card-border);
        max-width: 300px;
        border-radius: 15px;
        padding: 20px;
        padding-bottom: 40px;
        backdrop-filter: blur(5px);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        transition: transform 0.2s ease;
    }

    .card:hover {
        transform: translateY(-5px);
    }
    .card .iconAndHeading{
        display: flex;
        align-items: center;
        gap: 10px;
    }
    .card .icon{
        width: 100px;
    }
    .card p{
        padding-bottom: 10px;
    }
    .card a {
        position: absolute;
        bottom: 10px;
        left: 10px;
        padding: 8px 15px;
        background: var(--text-color);
        color: var(--bg-color);
        border-radius: 8px;
        text-decoration: none;
        transition: 0.2s;
    }
    .card a:hover{
        background-color: red;
    }