/* Global Styles */
body {
    font-family: Arial, sans-serif;
    background-color: #111;
    color: #fff;
    margin: 0;
    padding: 0;
}



/* Header / Navigation */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: black;
    padding: 15px 50px;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: gold;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav ul li {
    display: inline;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    padding: 5px 10px;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: gold;
}

nav ul li a.active {
    color: gold;
}

.icons span {
    font-size: 20px;
    cursor: pointer;
    margin-left: 10px;
}


/* Contact Section */
.contact {
    text-align: center;
    padding: 40px 20px;
    color: gold;
}

.section-title {
    font-size: 24px;
    font-weight: bold;
}

.gold {
    color: white;
}


/* Contact Container */
h4{
    text-align: right;
    padding: 2px 20px;
}

.contact-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    align-items: center;
}

.map {
    flex: 1;
}

.contact-form {
    flex: 1;
    background: #222;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    max-width: 350px;
}

/* Contact Form */

.contact-form h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.input-box {
    display: flex;
    align-items: center;
    background: #333;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
}

.input-box .icon {
    font-size: 18px;
    margin-right: 10px;
}

.input-box input {
    width: 100%;
    background: none;
    border: none;
    color: #fff;
    outline: none;
    font-size: 16px;
}

button {
    background: gold;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 10px;
    transition: 0.3s;
}

button:hover {
    background: orange;
}



/* Footer */
footer {
    text-align: center;
    background: black;
    padding: 10px;
    margin-top: 0px;
}

.social-icons {
    margin-bottom: 10px;
}

.social-icons a {
    text-decoration: none;
    font-size: 15px;
    margin: 0 10px;
    color: white;
}

.footer-links {
    margin: 10px 0;
}

.footer-links a {
    text-decoration: none;
    color: white;
    margin: 0 10px;
}

.highlight {
    color: gold;
}
