/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    color: #fff;
    background: #0a2b3f;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Navbar Styles */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background: #123344;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.logo {
    font-size: 1.5em;
    font-weight: bold;
}

 a{
    text-decoration: none;
    color: #fff;
    transition: transform 0.3s ease, color 0.3s ease;
}

a:hover {
    color: #00c3ff;
    transform: scale(1.1);
}

.content {
    margin-top: 30px; /* Adjusted to avoid overlap with fixed navbar */
    flex: 1;
    margin-bottom: 20px;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 10;
}

.hamburger .line {
    width: 100%;
    height: 3px;
    background: #fff;
    transition: all 0.3s ease;
}

/* Navigation Links */
.nav-links {
    display: flex;
    list-style: none;
    transition: transform 0.3s ease;
}

.nav-links li {
    margin: 0 10px;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    transition: transform 0.3s ease, color 0.3s ease;
}

footer {
    background-color: #123344;
}

footer a {
/*    text-decoration: none;*/
    color: #fff;
    transition: transform 0.3s ease, color 0.3s ease;
}

footer p {
    margin: 0px;
    padding: 0px;
    text-align: center;
}

footer a:hover {
    color: #00c3ff;
    transform: scale(1.1);
}

footer .desktop {
    display: block;
}

footer .mobile {
    display: none;
}

/* Hover Effect for Menu Items */
.nav-links a:hover {
    color: #00c3ff;
    transform: scale(1.1);
}

/* Hide the nav-links by default for mobile */
.nav-links.active {
    display: flex;
}

/* Footer Styles */
.footer {
    background: #123344;
    text-align: center;
    padding: 10px 20px;
    position: fixed;
    width: 100%;
    bottom: 0;
    z-index: 10;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 0;
        background: #123344;
        width: 100%;
        height: 0;
        overflow: hidden;
        transition: height 0.3s ease;
        opacity: 0; /* Hidden initially */
        visibility: hidden;
        line-height: 2;
        padding: 10px 0px;
    }

    .nav-links.active {
        height: auto;
        opacity: 1;
        visibility: visible;
    }

    footer .desktop {
        display: none;
    }

    footer .mobile {
        display: block;
    }

    .hamburger {
        display: flex;
    }

    .hamburger-show {
        height: 30px;
          width: 30px;
          background: transparent;
          position: relative;
          color: #fff;
          border: transparent;
          &:after {
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
            content: "\d7";
            font-size: 50px;
            color: #fff;
            line-height: 30px;
            text-align: center;
          }
    }
}