/* General Styles */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    color: #fff;
    background: #000; /* Fallback background color */
}

/* Vanta.js Background */
#vantajs {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: -1;
}

/* Header Styles */
header {
    text-align: center;
    padding: 100px 20px;
    position: relative;
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

nav .logo img {
    max-height: 60px;
}

.nav-links {
    display: flex;
    list-style: none;
}

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

.nav-links a {
    color: #fff;
    text-decoration: none;
}

.cta {
    background-color: #ff6f61;
    padding: 10px 20px;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
}

.desktop-only {
    display: block;
}

.menu-icon {
    display: none;
}

@media (max-width: 768px) {
    nav {
        flex-wrap: wrap;
    }

    .nav-links {
        width: 100%;
        flex-direction: column;
        display: none;
        text-align: center;
    }

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

    .nav-links.nav-active {
        display: flex;
    }

    .menu-icon {
        display: block;
        cursor: pointer;
    }

    .cta.desktop-only {
        display: none;
    }
}

/* Header Content */
.header-content h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 48px;
    margin-bottom: 20px;
}

.header-content p {
    font-size: 18px;
    margin-bottom: 30px;
}

.header-content .btn {
    background-color: #ff6f61;
    padding: 15px 30px;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
}

/* Features Section */
#features {
    padding: 80px 20px;
    text-align: center;
}

.features-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.feature {
    width: 300px;
    margin: 20px;
}

.feature-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

/* AI Interaction Section */
#interaction {
    padding: 80px 20px;
    text-align: center;
}

.interaction-image {
    margin-top: 40px;
}

.interaction-image img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Training Section */
#training {
    padding: 80px 20px;
    text-align: center;
}

.training-image {
    margin-top: 40px;
}

.training-image img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* For Recruiters Section */
#recruiters {
    padding: 80px 20px;
    text-align: center;
}

.recruiters-image {
    margin-top: 40px;
}

.recruiters-image img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Get Notified Section */
#notify {
    padding: 80px 20px;
    text-align: center;
}

#signup-form {
    max-width: 400px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#signup-form input, #signup-form button {
    width: 100%;
    padding: 15px;
    margin: 5px 0;
    font-size: 16px;
    box-sizing: border-box;
}

#signup-form button {
    background-color: #ff6f61;
    color: #fff;
    border: none;
    cursor: pointer;
}

#signup-form button:hover {
    background-color: #ff4f41;
}

/* About Section */
#about {
    padding: 80px 20px;
    text-align: center;
}

/* Footer Styles */
footer {
    padding: 40px 20px;
    text-align: center;
    background-color: #111;
}

.footer-links {
    margin-bottom: 20px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
}

.social-media a {
    color: #fff;
    margin: 0 10px;
    font-size: 24px;
    transition: color 0.3s;
}

.social-media a:hover {
    color: #ff6f61;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: rgba(0,0,0,0.8);
    color: #fff;
    padding: 15px;
    text-align: center;
    z-index: 1000;
}

.cookie-consent button {
    background-color: #ff6f61;
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
}

.cookie-consent button:hover {
    background-color: #ff4f41;
}
/* Add this to your existing styles */

/* Thank You Popup Styles */
.thank-you-popup {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.8);
}

.popup-content {
    background-color: #fff;
    color: #000;
    margin: 15% auto;
    padding: 20px;
    border-radius: 5px;
    max-width: 500px;
    position: relative;
    text-align: center;
}

.popup-content h2 {
    margin-top: 0;
}

.popup-content p {
    font-size: 16px;
}

.close-btn {
    color: #aaa;
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close-btn:hover,
.close-btn:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}
