/* body{
    margin: 0;
    background: linear-gradient(rgba(0,0,0,0.5), 
    rgba(0, 0, 0, 0.5)),
    url(PC-disabled-720x360-1.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
header{
    width: 98%;
    height: 10%;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 30px;
    position: fixed;
    left: 1%;
    top: 1%;
}
.img{
    width: 5%;
    height: 60%;
    margin-top: 1.3%;
    margin-left: 5%;
}
h4{
    margin-top: -2.5%;
    margin-left: 10.5%;
    color: white;
    font-size: 15px;
}
h5{
    color: white;
}
a{
    cursor: pointer;
    text-decoration: none;
}
.link1{
    margin-top: -2.5%;
    margin-left: 40%;
}
.link2{
    margin-top: -3%;
    margin-left: 48%;
}
.link3{
    margin-top: -3%;
    margin-left: 55%;
}
.link4{
    margin-top: -3%;
    margin-left: 63%;
}
.img1{
    width: 3%;
    height: 35%;
    margin-top: -4%;
    margin-left: 73%;
}
.img2{
    width: 3%;
    height: 35%;
    margin-top: -2.7%;
    margin-left: 76.5%;
}
.img3{
    width: 3%;
    height: 35%;
    margin-top: -2.3%;
    margin-left: 80.3%;
}
.img4{
    width: 3%;
    height: 35%;
    margin-top: -2.5%;
    margin-left: 83.5%;
}
img{
    width: 100%;
    height: 100%;
}
h1{
    margin-top: 30%;
    font-weight: 100;
    font-size: 40px;
    color: white;
    font-style: monospace;
}
.but1{
    background-color: blue;
    font-weight: 100;
    font-style: monospace;
    height: 3%;
    font-size: large;
    color: white;
    cursor: pointer;
}
.but2{
    background-color: rgba(0, 0, 0, 0);
    font-weight: 100;
    font-style: monospace;
    height: 3%;
    width: 10%;
    font-size: large;
    color: white;
    cursor: pointer;
    border: none;
    margin-left: 1%;
}
.img5{
    width: 17%;
    margin-left: -10%;
} */
/* General Reset */
body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0, 0, 0, 0.6)), url(PC-disabled-720x360-1.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    height: 100vh;
}

/* Header & Navigation */
header {
    width: 95%;
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 50px;
    position: fixed;
    left: 2.5%;
    top: 20px;
    z-index: 1000;
    padding: 10px 20px;
    box-sizing: border-box;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    width: 40px;
    height: 40px;
}

h4 {
    color: white;
    font-size: 14px;
    margin: 0;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-links h5 {
    color: white;
    margin: 0;
    font-size: 13px;
    transition: 0.3s;
}

.nav-links h5:hover {
    color: #ffd700; /* Gold hover effect */
}

.social-icons {
    display: flex;
    gap: 10px;
    margin-left: 20px;
}

.social-icons img {
    width: 25px;
    height: 25px;
}

/* Hide Hamburger by default */
.menu-toggle {
    display: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    padding: 0 20px;
}

h1 {
    font-weight: 300;
    font-size: clamp(24px, 5vw, 45px); /* Fluid typography */
    color: white;
    line-height: 1.4;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

button {
    padding: 12px 30px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: 0.3s;
}

.but1 {
    background-color: #0047ab;
    color: white;
    border: none;
}

.but2 {
    background: transparent;
    color: white;
    border: 1px solid white;
    display: flex;
    align-items: center;
    gap: 10px;
}

.img5 {
    width: 20px;
}

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none; /* Hide links */
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.95);
        padding: 20px 0;
        border-radius: 20px;
        text-align: center;
    }

    .nav-links.active {
        display: flex; /* Show when jQuery toggles 'active' class */
    }

    .social-icons {
        margin-left: 0;
        margin-top: 15px;
        justify-content: center;
    }

    h4 {
        font-size: 11px;
    }
}