body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #000;
    color: white;
    overflow-x: hidden;
}

/* Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #000;
    padding: 10px 1px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0px 4px 10px rgba(255, 255, 255, 0.2); /* Shadow effect */
    border-bottom: 2px solid rgba(255, 255, 255, 0.3); /* Light border for extra effect */
    z-index: 1000;
}


.nav-links a {
    font-family: 'Poppins', Bookman Old Style; /* Change this to your preferred font */
    font-size: 15px; /* Adjust size as needed */
    font-weight: bold; /* You can change to normal, lighter, etc. */
    text-transform: uppercase; /* Optional: Makes text uppercase */
}
.nav-links b {
    font-family: 'Poppins', Bookman Old Style; /* Change this to your preferred font */
    font-size: 15px; /* Adjust size as needed */
    font-weight: bold; /* You can change to normal, lighter, etc. */
    text-transform: uppercase; /* Optional: Makes text uppercase */
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-img {
    width: 70px;
    height: auto;
    margin-right: 15px;
}

.logo {
    font-family: 'Monotype Corsiva', cursive;
    font-size: 35px;
    color: white;
    margin: 0;
    padding-bottom: 5px;
}

.nav-links {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}
.nav-links b {
    color: #ffcc00;
    text-decoration: underline;
    font-weight: bold;
    transition: color 0.3s;
}
.nav-links b:hover {
    color: #ffcc00;
}

.nav-links a:hover {
    color: #ffcc00;
    text-decoration: underline;
}

/* Resume Upload Section */
.resume-upload {
    max-width: 600px;
    margin: 100px auto;
    padding: 25px;
    background: #222;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.713);
    text-align: center;
    animation: fadeIn 1s ease-in-out;
}

.resume-upload h2 {
    color: #ffcc00;
    font-size: 24px;
}

.resume-upload label {
    display: block;
    margin-top: 12px;
    font-weight: bold;
    color: #fff;
}

.resume-upload input {
    width: 75%;
    padding: 8px;
    margin-top: 5px;
    border: none;
    border-radius: 6px;
    background: #444;
    color: white;
    text-align: center;
}

.resume-upload input[type="longtext"] {
    background: #444;
    color: white;
    padding: 10px;
    text-align: center;
}

.resume-upload button {
    margin-top: 15px;
    background: #ffcc00;
    color: #000;
    padding: 12px 18px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s ease-in-out;
}

.resume-upload button:hover {
    background: #e6b800;
}

.popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgb(50, 46, 46);
    padding: 20px;
    box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.631);
    text-align: center;
    z-index: 1000;
}
iframe {
    width: 80%;
    height: 300px;
    border-radius: 24px;
    border-color: #000;
    margin-top: 20px;
    box-shadow: #ffffffb5;
}

.details-container {
    background: rgb(48, 46, 46);
    padding: 15px;
    border-radius: 8px;
    margin-top: 10px;
    box-shadow: 0px 4px 10px rgba(229, 226, 226, 0.872);
    font-family: Arial, sans-serif;
}

.details-container h3 {
    color: #f3df06;
    font-size: 16px;
    margin-bottom: 5px;
    font-weight: bold;
}

.details-container p {
    margin: 0;
    color: #ffffff;
    font-size: 12px;
}

.details-container a {
    color: #ffffff;
    text-decoration: none;
}

.details-container a:hover {
    text-decoration: underline;
    color: rgb(0, 13, 255);
}

.form-container {
    width: 90%;
    max-width: 700px;
    background: #232323;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0px 4px 10px rgba(255, 255, 255, 0.697);
}

.form-header {
    background-color: #24026b; /* Purple Header */
    height: 8px;
    border-radius: 10px 10px 10px 10px;
}

.form-title {
    font-size: 28px;
    font-weight: bold;
    color: rgb(238, 227, 10);
    margin-top: 15px;
}

.form-subtitle {
    font-size: 18px;
    color: #B0B0B0;
    margin-bottom: 10px;
}

.required-text {
    color: #F44336;
    font-size: 14px;
    margin-bottom: 20px;
}

.fill-button {
    background-color: #673AB7;
    color: white;
    font-size: 16px;
    padding: 10px 20px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    margin-top: 10px;
    text-decoration: none;
}

.fill-button:hover {
    background-color: #5E35B1;
    text-decoration: underline;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background-color: #111;
    position: relative;
    bottom: 0;
    width: 100%;
}
.logo-footer {
    display: flex;
    justify-content: center;
    align-items: center;
}
footer a {
    color: #ffcc00;
    text-decoration: none;
    font-weight: normal;
}

footer a:hover {
    text-decoration: underline;
}

/* Page Load Animation */
.page {
    opacity: 0;
    transform: translateY(25px);
    animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Fade-in Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
