/* General Body Styles */
body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(to left, #ffffff, #eeeeee);
    margin: 0;
    padding: 0;
    animation: backgroundFade 5s ease-in-out infinite;
}

/* Header Styles */
header {
    background-color: #db9d0e;
    color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 100px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
    font-size: 17px;
}

nav ul li a:hover {
    color: #add8e6;
}

/* Contact Section Styles */
.contact-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    background-color: #f7f7f7;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin: 20px auto;
    max-width: 800px;
    width: 90%;
}

/* Message Section Styles */
.message-section {
    margin-bottom: 30px;
    border: 1px solid #ddd;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, #ffffff, #f0f0f0);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.message-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.message-section h2 {
    margin-bottom: 20px;
    font-size: 26px;
    color: #00796b;
    font-weight: bold;
}

.message-section p {
    font-size: 18px;
    color: #333;
    line-height: 1.6;
}

/* Contact Information Styles */
.contact-info {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    gap: 40px;
}

.social-icon img {
    width: 45px;
    height: 45px;
    transition: transform 0.3s;
    border-radius: 10%; /* Adjusted for a rounded square look */
}

.social-icon img:hover {
    transform: scale(1.2);
}

/* Divider Styles */
.divider {
    margin: 20px 0;
    font-size: 1.5em;
    color: #00796b;
    text-align: center; /* Center the "OR" text */
    position: relative;
}

.divider::before,
.divider::after {
    content: '';
    width: 50px;
    height: 2px;
    background-color: #00796b;
    position: absolute;
    top: 50%;
}

.divider::before {
    left: 50%;
    transform: translateX(-100%);
}

.divider::after {
    right: 50%;
    transform: translateX(100%);
}

/* Contact Form Styles */
.contact-form {
    text-align: center;
    background-color: #ffffff;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 100%;
    transition: transform 0.3s, box-shadow 0.3s;
}

.contact-form:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.contact-form h2 {
    margin-bottom: 20px;
    font-size: 24px;
    color: #00796b;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 16px;
}

.contact-form textarea {
    height: 120px;
    resize: vertical;
}

.submit-button {
    background-color: #00796b;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

.submit-button:hover {
    background-color: #004d40;
    transform: scale(1.05);
}
