.contactpage {
    position: relative;
    background-image: url('../Images/b4.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    height: 120vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contactpage::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
    opacity: 0.8;
    z-index: 1;
}

.form-container {
    position: relative;
    z-index: 2;
    max-width: 80%;
    width: 90%;
    /* background: rgba(255, 255, 255, 0.1); */
    /* backdrop-filter: blur(10px); */
    margin-top: 90px;
    padding: 40px 30px;
    border-radius: 15px;
    /* box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3); */
    color: #fff;
}

.form-container h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 28px;
    color: #fff;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #fff;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border-radius: 8px;
    border: none;
    outline: none;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 16px;
    transition: background 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #e0e0e0;
}

.form-group input:focus,
.form-group textarea:focus {
    background: rgba(255, 255, 255, 0.3);
}

.form-submit-btn {
    width: 100%;
    padding: 15px;
    background-color: #385474;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.form-submit-btn:hover {
    background-color: #1b3858;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .form-container {
        padding: 30px 20px;
    }

    .form-submit-btn {
        font-size: 16px;
    }
}
