/* Reset some default styles */
body, h1, h2, h3, p, ul, li {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f4f4f4;
}

.container {
    width: 80%;
    margin: 0 auto;
}

header {
    background-color: white;
    color: white;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo img {
    height: 60px;
}

header nav ul {
    float: right;
    list-style: none;
    display: flex;
    gap: 20px;
    margin-left: auto; /* Align navigation to the right */
}

header nav ul li a {
    color: rgb(0, 0, 0);
    text-decoration: none;
    font-size: 1.1em;
    position: relative;
}

header nav ul li a:hover {
    color: #f07f3e;
    transition: color 0.3s ease-in-out;
}

header nav ul li a::after {
    content: '';
    width: 0;
    height: 2px;
    background-color: #f07f3e;
    position: absolute;
    left: 0;
    bottom: -5px;
    transition: width 0.3s ease-in-out;
}

header nav ul li a:hover::after {
    width: 100%;
}

footer {
    background-color: white;
    color: #333;
    padding: 30px 0;
    border-top: 1px solid #ddd;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-left img {
    height: 80px;
    margin-bottom: 10px;
}

.footer-left p {
    font-size: 1.2em;
    font-weight: bold;
    color: #333;
}

.footer-right {
    display: flex;
    gap: 50px;
}

.footer-column h4 {
    font-size: 1.1em;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 10px;
}

.footer-links li a,
.footer-contact li {
    color: #333;
    text-decoration: none;
    font-size: 1em;
}

.footer-contact li i {
    margin-right: 10px;
    color: #f07f3e;
}

.footer-contact li i.fa-map-marker {
    vertical-align: top;
}

footer a:hover {
    text-decoration: underline;
}

/* Animation */
.animate-text {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards;
}

.animate-img {
    opacity: 0;
    transform: scale(0.8);
    animation: fadeInScale 1s forwards;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Contact Us Page Styles */
#contact {
    padding: 40px 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #f4f4f4;
}

#contact h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2em;
    color: #333;
}

.contact-content {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.animation-container,
.form-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.animation-container {
    justify-content: flex-start;
}

.form-container {
    justify-content: flex-end;
}

.contact-form {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 500px;
}

.contact-form label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
}

.contact-form input,
.contact-form select {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.contact-form button {
    background-color: #f07f3e;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1em;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #d06529;
}
