/* Software page styling */
* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    background-color: #080808;
    color: #fff;
}


/* Header and navigation */
#header {
    width: 100%;
    height: 15vh;
    position: fixed;
    top: 0;
    z-index: 9999;
    background: #080808;
}
.nav-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
nav {
    width: 80%;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 0;
    background: rgb(0, 0, 0);
    border-radius: 10px;
    z-index: 999;
    filter: drop-shadow(0 0 8px #ff3131)
          drop-shadow(0 0 9px #fff85e)
          drop-shadow(0 0 10px #bdff5d)
          drop-shadow(0 0 11px #00d0ff);
}


nav ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
}
nav ul li {
    display: inline-block;
    list-style: none;
    margin: 10px 20px;
    flex-grow: 1;
    text-align: center;
}
nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    position: relative;
}

nav ul li a:hover{
  color: #bdff5d;
  text-decoration: none;
}

nav ul li a::after {
    content: '';
    width: 0;
    height: 3px;
    background-image: linear-gradient(to right, #ff3131, #fff85e, #bdff5d, #00d0ff);
    position: absolute;
    left: 0;
    bottom: -6px;
    transition: 0.5s;
}
nav ul li a:hover::after {
    width: 100%;
}
nav .fas {
    display: none;
}
.hamburger {
    position: absolute;
    right: 8px;
}

/* Main content */
.main-container {
    width: 80%;
    margin: 0 auto;
    padding-top: 120px; /* space for fixed header */
}
.software-list {
    background: #080808;
    box-shadow: 0px 2px 15px #ad966d;
    padding: 40px;
    border-radius: 11px;
    margin-top: 40px;
    text-align: center;
}
.software-list h2 {
    color: #ad966d;
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 15px;
}
.software-list p,
.software-list ul li {
    color: #fff;
    font-size: 18px;
}
.software-list ul {
    list-style: none;
    padding: 0;
}
.software-list ul li a {
    color: #ad966d;
    text-decoration: none;
    font-size: 16px;
}

/* Responsive styles */
@media only screen and (max-width: 768px) {
    nav .fas {
        display: block;
        font-size: 25px;
        margin-right: 8px;
    }
    nav ul {
        background: #ad966d;
        position: fixed;
        top: 0;
        right: -200px;
        width: 200px;
        padding-top: 50px;
        z-index: 2;
        transition: right 0.5s;
        flex-direction: column;
        overflow-y: auto;
    }
    nav ul li {
        display: block;
        margin: 25px 0;
    }
    .main-container {
        width: 95%;
        padding-top: 100px;
    }
    .software-list {
        padding: 20px;
    }
}