/* Form Section */
.form-section-haeder{
    margin-top: 200px;
}

.form-section {
    margin-top: 6px;
}

.form-container {
    max-width: 800px;
    margin: auto;
}

.form-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    text-align: center;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.7);
}

.form-intro {
    font-size: 1.4rem;
    text-align: center;
    margin-bottom: 80px;
    color: white;
    text-shadow: 0 2px 2px rgba(0, 0, 0, 0.3);
}

.form-intro-sub {
    font-size: 1.1rem;
    text-align: start;
    margin-bottom: 20px;
    color: white;
    text-shadow: 0 2px 2px rgba(0, 0, 0, 0.3);
}

.context-form {
    background: rgba(17, 32, 29, 0.25);
    padding: 40px 30px;
    border-radius: 30px;
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-section h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #fcC005;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

.section-intro {
    font-size: 1rem;
    margin-bottom: 20px;
    color: white;
    text-shadow: 0 2px 2px rgba(0, 0, 0, 0.3);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: white;
    font-weight: 500;
    text-shadow: 0 2px 2px rgba(0, 0, 0, 0.3);
   
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #fcC005;
}

.radio-group,
.checkbox-group {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.radio-option,
.checkbox-option {
    text-align: center;
    align-items: center;
    padding: 10px 15px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    cursor: pointer;
    transition: background 0.3s ease;
}

.radio-option:hover,
.checkbox-option:hover {
    background: rgba(252, 192, 5, 0.1);
}

.radio-option input,
.checkbox-option input {
    margin-right: 10px;
}

.radio-text,
.checkbox-text {
    color: white;
    text-shadow: 0 2px 2px rgba(0, 0, 0, 0.3);
}

.closing-text {
    font-size: 1.1rem;
    font-style: italic;
    text-align: center;
    margin: 40px 0 30px;
    padding: 20px;
    border-radius: 15px;
    background: rgba(252, 192, 5, 0.1);
    color: white;
    text-shadow: 0 2px 2px rgba(0, 0, 0, 0.3);
}

.btn {
    padding: 12px 25px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    font-size: 16px;
}

.btn-primary {
    background: #fcC005;
    color: #ffffff;
    margin: 0 auto;
    display: block;
    width: 200px;
    text-align: center;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

.btn-primary:hover {
    background: #05604E;
    color: white;
    text-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
}

/* Add this to your existing CSS */
.form-group select {
    color: rgb(0, 0, 0); /* Text color */
    background-color: rgb(255, 255, 255); /* Background color */
    border: 1px solid rgba(255, 255, 255, 0.1); /* Border to match design */
    border-radius: 10px;
    padding: 12px;
    width: 100%;
    font-size: 16px;
    cursor: pointer;
}

.form-group select option {
    color: rgb(0, 0, 0); /* Text color for options */
    background-color: #ffffff; /* Background color for options */
    padding: 10px;
}

.form-group select:focus {
    outline: none;
    border-color: #fcC005; /* Match your theme color */
}


/* Responsive Design */
@media (max-width: 768px) {
    .form-section-haeder{
        margin-left: 15px;
        margin-right: 15px;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .radio-group,
    .checkbox-group {
        flex-direction: column;
    }
    
    .form-title {
        font-size: 2.5rem;
    }
    
    .form-intro {
        font-size: 1.2rem;
    }
    
   
    
    .context-form {
        padding: 30px 20px;
    }
}