/* General Contact Section Styling */
.contact-content{
    backdrop-filter: blur(7px);
    box-shadow:/* Dark shadow on the bottom-right */
    inset 3px 3px 5px rgba(255, 255, 255, 0.15),
    /* Light shadow on the top-left */
    inset -3px -3px 5px rgba(255, 255, 255, 0.15);
    text-align: center;
    padding:20px;
    color: #ffffff;
    border-radius: 10px;
    max-width: 500px;
    margin: 0 auto;
}

.contact-content h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.contact-content p {
    font-size: 16px;
    margin-bottom: 20px;
}

/* Contact Form Styling */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.form-group input::placeholder ,.form-group textarea::placeholder{
    color:rgba(255, 255, 255, 0.704);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    color: #ffffff;
    backdrop-filter: blur(7px);
    background: rgba(255, 255, 255, .1);
    transition: all 0.3s ease-in-out;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    box-shadow: 0 0 10px rgba(123, 0, 255, 0.5);
}

.send-button {
    background: linear-gradient(135deg, #7322ff, #00f7ff);
    color: #fff;
    border: none;
    padding: 12px 20px;
    font-size: 15px;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.4s ease-in-out;
    position: relative;
    overflow: hidden;
}
.send-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    transition: left 0.3s;
}
.send-button:hover::before {
    left: 100%;
}
.send-button:hover {
    transform: scale(1.05);
}

.form-row {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.form-group {
    flex: 1;
}