body {
    background-color: transparent;
    color: black;  /* Changed text color to black */
    font-family: 'Inter', sans-serif;
    padding-top: 50px; 
    margin: 0;
    overflow-x: hidden;
}
header {
    background: #333;
    color: white;
    padding: 20px 0;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
header nav a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
    font-size: 1.1em;
    transition: color 0.3s ease;
}
header nav a:hover {
    color: #00bcd4;
}
main {
    padding: 40px;
    line-height: 1.6;
}
footer {
    text-align: center;
    background: #333;
    color: white;
    padding: 20px 0;
    width: 100%;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    font-size: 0.9em;
    position: relative;
}
footer p {
    margin: 5px 0;
    opacity: 0.8;
    transition: opacity 0.3s ease-in-out;
}
footer p:hover {
    opacity: 1;
}

h1, h2, h3 {
    font-family: 'Roboto', sans-serif;
}
ul {
    list-style-type: none;
    padding: 0;
}
ul li {
    margin: 10px 0;
}
a {
    text-decoration: none;
}
.glass-navbar {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
}
.navbar-nav .nav-link {
    color: white !important;
    font-size: 18px;
    padding: 10px 12px;
    transition: color 0.3s ease-in-out, transform 0.2s ease-in-out;
}
.navbar-nav .nav-link:hover {
    color: #f8b400 !important;
    transform: scale(1.1);
}
.navbar-nav .nav-link.active {
    font-weight: bold;
    color: #f8b400 !important;
    border-bottom: 2px solid #f8b400;
}
.navbar-toggler {
    border: none;
}
.navbar-toggler:focus {
    box-shadow: none;
}
