.parallax {
    background-image: url('../files/parallax/11.jpg');
    height: 100vh; /* Changed from 60vh to 100vh for full height */
    background-attachment: fixed;
    background-position: center; /* Changed from bottom to center for better centering */
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0; /* Removed padding to ensure full height */
}
/* Add this new rule for the overlay */
.parallax::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Adjust the last value (0.5) to control darkness */
}

.parallax-text {
    color: white;
    text-align: center;
    position: relative; /* Add this to ensure text stays above the overlay */
    z-index: 1; /* Add this to ensure text stays above the overlay */
}

.parallax-text h1 {
    font-size: 48px;
    margin-bottom: 10px;
    color: white;
    font-family: sans-serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Add shadow for better readability */
}

.parallax-text p {
    font-size: 24px;
    margin-top: 0;
    color: white;
    font-family: sans-serif;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5); /* Adjust shadow for better readability */
}

 :root {
     --emerald-green: #50C878;
     --coral-pink: #FF6B6B;
     --classic-orange: #FFA500;
     --royal-purple: #9B59B6;
 }

.application-form {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.application-form h2 {
    color: var(--royal-purple);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    animation: bounce 2s infinite;
}

.form-section {
    margin-bottom: 2rem;
    padding: 1.5rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.form-section:nth-child(odd) {
    background-color: rgba(80, 200, 120, 0.1);
}

.form-section:nth-child(even) {
    background-color: rgba(255, 107, 107, 0.1);
}

.form-section:hover {
    transform: scale(1.02);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-section h3 {
    color: var(--classic-orange);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.form-group {
    margin-bottom: 1rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--royal-purple);
    font-weight: bold;
}

input[type="text"],
input[type="date"],
input[type="email"],
select,
textarea {
    width: 100%;
    padding: 0.5rem;
    border: 2px solid var(--emerald-green);
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

input[type="text"]:focus,
input[type="date"]:focus,
input[type="email"]:focus,
select:focus,
textarea:focus {
    border-color: var(--coral-pink);
    outline: none;
}

.submit-btn {
    display: block;
    width: 100%;
    padding: 1rem;
    background-color: var(--classic-orange);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: var(--coral-pink);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.shape {
    position: absolute;
    opacity: 0.5;
    animation: float 15s infinite linear;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    100% {
        transform: translateY(-100vh) rotate(360deg);
    }
}