/* Website Font */
    body {
	font-family: sans-serif; /* Default for all body text */
    }

    h1, h2, h3 {
	font-family: 'Nunito', sans-serif; /* Override only for headings */
	font-weight: 700;
    }

/* General Styles */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
        
    body {
        font-family: 'Nunito', sans-serif;
        background: #0a0a0a;
        color: #ffffff;
    }

/* Background */
    body::before {
        content: "";
        position: fixed;
        top: 0; left: 0;
        width: 100%; height: 100%;
        background: url('../img/background.webp') no-repeat center center/cover;
        opacity: 0.3;
        z-index: -1;
    }

/* Navbar */
    .navbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 30px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 50px;
        position: fixed;
        width: 95%;
        top: 10px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1000;
        backdrop-filter: blur(15px);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);    /* floating shadow */
        border: 1px solid rgba(255, 255, 255, 0.3);
    }

    .navbar h2 {
        font-size: 1.8rem;
    }
    .navbar img {
        height: 40px;
        margin-right: 10px;
        vertical-align: middle;
    }

    .menu-toggle {
        font-size: 1.5rem;
        cursor: pointer;
        display: none;
    }

    .menu {
        list-style: none;
        display: flex;
    }

    .menu li {
        margin: 0 15px;
    }

    .menu a {
        text-decoration: none;
        color: white;
        font-size: 1.2rem;
        transition: 0.3s;
    }

    .menu a:hover {
        color: #e53888;
    }

/* Mobile Menu */
    @media (max-width: 768px) {
        .menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px;
        right: 0;
        width: 50%;
        background: rgba(60, 40, 80, 0.9);
        border-radius: 25px;
        backdrop-filter: blur(15px);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.9);
        padding: 10px 0;
    }

    .menu li {
        text-align: center;
        margin: 10px 0;
    }

    .menu-toggle {
        display: block;
    }

    .menu.active {
        display: flex;
        }
    }

/* Sections */
    .container {
        max-width: 900px;
        margin: auto;
        padding: 80px 20px 50px;
        text-align: center;
    }

    .section {
        padding: 20px 20px;
        margin: 20px 0;
        background: rgba(159, 168, 218, 0.1);
        border-radius: 25px;
        backdrop-filter: blur(10px);
    }

/* Media Gallery Section */
/* Media Gallery */
.media-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.media-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.media-item img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 10px;
}


.download-btn {
    display: inline-block;
    padding: 12px 20px;
    background: linear-gradient(135deg, #440b4f, #7899f5);
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: 0.3s ease-in-out;
    box-shadow: 0 4px 10px rgba(129, 234, 252, 0.4);
}

.download-btn:hover {
    background: linear-gradient(135deg, #5b47cb, #81eafc);
    transform: scale(1.1);
    color: #0a0a0a;
    box-shadow: 0 6px 15px rgba(91, 71, 203, 0.6);
}




/* Contact Section */
    .contact-section {
        text-align: center;
        padding: 50px 20px;
        background: rgba(159, 168, 218, 0.1);
        border-radius: 25px;
        backdrop-filter: blur(10px);
        margin-top: 20px;
    }

    .contact-buttons {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-top: 20px;
    }

    .contact-buttons a {
        display: inline-block;
        padding: 12px 20px;
        background: linear-gradient(135deg, #440b4f, #7899f5);
        color: #fff;
        text-decoration: none;
        border-radius: 25px;
        font-weight: 600;
        transition: 0.3s ease-in-out;
        box-shadow: 0 4px 10px rgba(129, 234, 252, 0.4);
    }

    .contact-buttons a:hover {
        background: linear-gradient(135deg, #5b47cb, #81eafc);
        transform: scale(1.1);
        color: #0a0a0a;
        box-shadow: 0 6px 15px rgba(91, 71, 203, 0.6);
    }


/* Skills Section */
    .skills-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
        padding: 20px 0;
    }

    .skill {
        background: rgba(170, 96, 200, 0.5);
        color: #fff;
        padding: 12px 18px;
        border-radius: 50px;
        font-size: 1rem;
        text-align: center;
        transition: transform 0.3s ease-in-out;
        cursor: pointer;
    }

    .skill:hover {
        transform: scale(1.1) translateY(-5px);
        background: #dd88cf;
        color: #0a0a0a;
    }


/* Featured Section */
    .feature-container {
        display: flex;
        justify-content: center;
    }

    .feature-container iframe {
        width: 80%;
        height: 400px;
        border-radius: 10px;
    }

    @media (max-width: 768px) {
        .video-container iframe {
        width: 100%;
        height: 250px;
        }
    }


/* Table Styling */
        #list {
            width: 100%;
            border-collapse: collapse;
            margin-top: 20px;
        }

/* Table Header Styling */
        #list thead {
            background-color: rgba(0, 0, 0, 0.2); /* Slightly darker for contrast */
            color: #fff;
            border-radius: 10px 10px 0 0;
        }

        #list th {
            padding: 15px;
            text-align: left;
            font-weight: bold;
            font-size: 1.1em;
        }

/* Table Body Styling */
        #list tbody tr {
            background-color: rgba(255, 255, 255, 0.1); /* Very transparent white for rows */
            border-radius: 10px;
        }

        #list tbody tr:nth-child(even) {
            background-color: rgba(255, 255, 255, 0.15); /* Slightly darker for alternating rows */
        }

        #list tbody tr:hover {
            background-color: rgba(255, 255, 255, 0.2); /* Lighter hover effect */
            cursor: pointer;
        }

        #list td {
            padding: 15px;
            text-align: left;
            font-size: 1em;
            color: #ddd;
        }

/* Link Styling */
        #list td a {
            color: #00ffff;
            text-decoration: none;
            font-weight: bold;
        }

        #list td a:hover {
            text-decoration: underline;
        }

/* Remove gridlines */
        #list, #list th, #list td {
            border: none;
        }

/* Footer */
        .footer {
            background-color: rgba(0, 0, 0, 0.6);
            color: #fff;
            text-align: center;
            padding: 20px;
            font-size: 1em;
            margin-top: auto;
        border-top-left-radius: 30px;
        border-top-right-radius: 30px;
            backdrop-filter: blur(15px); /* Glass blur effect */
            box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4); /* Subtle shadow for depth (top shadow) */
        }
