body {
    font-family: Arial, sans-serif;
}
.contact-header {
    background: linear-gradient(135deg, #ff7a18, #ffb347);
    color: white;
    padding: 30px 0;
    text-align: center;
    position: relative;
}

.contact-header h1 {
    font-size: 3rem;
    margin-top: 10px;
}

.contact-header img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 10px;
}

.floating-icons {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

/* Form Section */
.form-container {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    margin-top: -50px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.form-container:hover {
    transform: scale(1.02);
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.2);
}


/* Contact Info Section */
.contact-info {
    margin-top: 50px;
}

.contact-info h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.contact-info p,
.contact-info a {
    color: #495057;
    margin: 0;
    padding: 5px 0;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Custom Alert Styles */
.custom-alert {
    display: none; /* Hidden by default */
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    width: 300px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    text-align: center;
    padding: 20px;
    font-family: Arial, sans-serif;
}

.custom-alert-content {
    padding: 20px;
}

.custom-alert p {
    font-size: 16px;
    margin-bottom: 20px;
}

#closeAlert {
    background-color: #ff7a18;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#closeAlert:hover {
    background-color: #ffb347;
}
