/* General styles */
body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    scroll-behavior: smooth; /* Enables smooth scrolling */
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #333;
    padding: 10px 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
}

.nav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

.nav li {
    margin: 0 15px;
}

.nav a {
    color: white;
    text-decoration: none;
    padding: 10px;
    transition: 0.3s;
}

.nav a:hover {
    background: #555;
}

/* Responsive menu toggle */
.menu-toggle {
    display: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
}

/* Sections */
.section {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2em;
    background: #f4f4f4;
    border-bottom: 1px solid #ddd;
}

/* Mobile styles */
@media screen and (max-width: 768px) {
    .navbar {
        justify-content: space-between;
        padding: 10px;
    }

    .menu-toggle {
        display: block;
    }

    .nav {
        flex-direction: column;
        position: absolute;
        top: 50px;
        left: 0;
        background: #333;
        width: 100%;
        display: none;
    }

    .nav li {
        text-align: center;
        padding: 10px;
    }

    .nav.active {
        display: flex;
    }
}

.menu a.active {
    color: #ff4500; /* Highlight color */
    font-weight: bold;
}