

#particles-js {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw; /* Full width */
    height: 100vh; /* Full height */
    background: black;
    z-index: -1; /* Push behind everything */
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    background: rgba(255, 255, 255, 0.1); /* Very light transparency */
    backdrop-filter: blur(10px); /* Soft blur effect */
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-sizing: border-box;
}

/* Make sure the hamburger is always visible */
.hamburger {
    display: block;
    font-size: 24px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 10px;
}

/* Initially hide the menu */
.nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    width: 200px;
    padding: 10px;
    text-align: center;
}

/* Show the menu when toggled */
.nav-links.show {
    display: flex;
}

/* Style the links */
.nav-links li {
    list-style: none;
    padding: 10px 0;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 18px;
}

/* Responsive for larger screens (same effect on desktop & mobile) */
@media (min-width: 769px) {
    .nav-links {
        position: absolute;
        top: 70px; /* Adjusted for visibility */
        right: 20px;
    }
}

.navbar a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    padding: 10px 15px;
}

.navbar a:hover {
    color: #33ff33; /* Subtle hover effect */
}


  .content-box {
    position: relative; /* Keep it above particles.js */
    width: 60%; /* Adjust width as needed */
    margin: 100px auto; /* Center it and add top margin */
    padding: 30px;
    background: rgba(0, 0, 0, 0.7); /* Semi-opaque black */
    color: white;
    text-align: center;
    font-size: 18px;
    border-radius: 10px; /* Rounded edges */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2); /* Soft shadow */
    z-index: 10; /* Ensure it's above particles.js */
}

.contact-form {
    color: white;
    display: flex;
    flex-direction: column; /* Stack items vertically */
    max-width: 500px;
    margin: 120px auto 50px auto; /* Pushes it down */
    background: rgba(255, 255, 255, 0.1); /* Light opacity */
    padding: 20px;
    border-radius: 10px;
    backdrop-filter: blur(8px);
    text-align: center;
}


.contact-form label {
    display: block; /* Each label takes full width */
    margin-top: 10px; /* Add spacing between elements */
    font-size: 16px;
}

.contact-form input,
.contact-form textarea {
    width: 100%; /* Ensure full width */
    padding: 10px;
    margin-top: 5px;
    border: 1px solid white;
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.contact-form button {
    width: 100%; /* Make the button full width */
    margin-top: 15px;
    padding: 10px;
    background: white;
    color: black;
    font-weight: bold;
    cursor: pointer;
}

.contact-form button:hover {
    background: #33ff33; /* Light green hover effect */
}

/* Ensure mobile responsiveness */
@media (max-width: 768px) {
    .contact-form {
        width: 90%; /* Reduce width for smaller screens */
        margin-top: 300px; /* Push it down */
    }
}