body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.container {
    width: 90%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header {
    background: #ffffff; 
    color: #fff;
    padding: 10px 0;
    width: 100%; 
    position: fixed; 
    top: 0; 
    left: 0; 
    z-index: 1000; 
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); 
}

.logo {
    width: 250px;
}

nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0; 
}

nav ul li {
    margin-left: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative; 
}

nav ul li a {
    color: #ff3c00; 
    text-decoration: none;
    text-align: center;
    position: relative;
    padding: 5px 0; 
    transition: color 0.3s ease; 
}

/* Change link color to black on hover */
nav ul li a:hover {
    color: #000; 
}

/* Moving line under the navigation items */
nav ul li a::after {
    content: "";
    position: absolute;
    bottom: 0; 
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #000; 
    transform: scaleX(0); 
    transform-origin: bottom right; 
    transition: transform 0.3s ease; 
}

/* Show and move the line on hover */
nav ul li a:hover::after {
    transform: scaleX(1); 
    transform-origin: bottom left; 
}





/* Contact Us Section */
.contact-us {
    margin: 50px 170px;
    padding: 30px;
    background-color: #ffffff; 
    border-radius: 8px; 
    text-align: center; 
}

.contact-header {
    margin-bottom: 20px; 
}

.contact-header h2 {
    font-size: 2rem;
    color: #ff3c00; 
    margin: 0;
    font-weight: bold;
    position: relative;
}

.contact-header h2 .line {
    display: inline-block;
    width: 100px;
    height: 2px;
    background-color: #ff3c00;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.contact-header h2 .line:first-of-type {
    left: -110px;
}

.contact-header h2 .line:last-of-type {
    right: -110px;
}

.contact-content {
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
}

.contact-content p {
    margin: 10px 0; 
}

.contact-link {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #ff3c00; 
    color: #fff; 
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease; 
}

.contact-link:hover {
    background-color: #e03a00; 
}

/* Contact Form Page */
body {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    margin: 0;
    padding: 0;
}

.message-us {
    max-width: 1000px;
    margin: 150px auto 50px; 
    padding: 20px 50px; 
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.message-header {
    text-align: center;
    margin-bottom: 30px;
}

.message-header h2 {
    font-size: 2rem;
    color: #ff3c00; 
    margin-bottom: 10px;
}

.message-header p {
    font-size: 1rem;
    color: #555;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    gap: 90px; 
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
}

textarea {
    resize: vertical;
}

.submit-button {
    padding: 10px 20px;
    background-color: #ff3c00; 
    color: #fff; 
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #e03a00; 
}

#confirmationMessage {
    text-align: center;
    margin-top: 30px;
}

#confirmationMessage h2 {
    font-size: 2rem;
    color: #ff3c00; 
    margin-bottom: 10px;
}

#confirmationMessage p {
    font-size: 1rem;
    color: #555;
}

.hidden {
    display: none;
}
