/* General Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f9;
    color: #333;
    line-height: 1.6;
}


/* Header */

header {
    background: #333;
    color: white;
    padding: 15px 0;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

header nav ul {
    list-style: none;
    padding: 0;
}

header nav ul li {
    display: inline;
    margin-right: 20px;
}

header nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    transition: color 0.3s ease, transform 0.3s ease;
}

header nav ul li a:hover {
    color: #f1c40f;
    transform: scale(1.1);
}


/* Contact Section */

#contact {
    padding: 50px 20px;
    background: #ecf0f1;
    text-align: center;
    animation: fadeInUp 2s ease-out;
}

#contact h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #1abc9c;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
}

form label {
    font-size: 1rem;
    margin-bottom: 5px;
    color: #1abc9c;
}

form input,
form textarea {
    width: 80%;
    max-width: 500px;
    padding: 10px;
    margin-bottom: 15px;
    border: 2px solid #1abc9c;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

form input:focus,
form textarea:focus {
    border-color: #f1c40f;
}

form button {
    background: #1abc9c;
    color: white;
    padding: 10px 20px;
    font-size: 1.1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

form button:hover {
    background: #16a085;
    transform: scale(1.1);
}


/* Thank You Message */

#contact h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #1abc9c;
}

#contact p {
    font-size: 1.2rem;
    color: #333;
    margin-top: 10px;
    font-weight: bold;
}


/* Footer */

footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
    position: fixed;
    width: 100%;
    bottom: 0;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
}

footer p {
    font-size: 1rem;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}