* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Jost', sans-serif;
}

.header {
    background-image: url("https://prium.github.io/freya/v2.1.0/assets/img/contacts_header.jpg");
    background-size: cover;
    background-position: center;
    position: relative;
    height: 60vh;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); 
    z-index: 1;
}

.navbar {
    position: sticky;
    width: 80%;
    z-index: 10;
    background: transparent;
    opacity: 0.9;
    padding: 20px 10px;
    margin: 1.25rem auto;
    background-color: #fbfcfe;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
    border-radius: 1.375rem;
}

.navbar-brand {
    font-weight: 400;
    font-size: 20px;
    color: white !important; /* Force white color */
    background-color: black !important; /* Force black background */
    padding: 15px 15px;
    border-radius: 50px;
    text-transform: uppercase;
    text-decoration: none;
}

.navbar .nav-link {
    color: gray;
    margin-right: 15px;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    padding: 8px 0;
    letter-spacing: 1px;
}

.navbar .nav-link:hover {
    color: #f95a25;
    text-decoration: none;
}

.social-links {
    display: flex;
    justify-content: center;
    
    /* margin-top: 10px; */
}

.social-links a {
    color: #333;
    margin-left: 15px;
    font-size: 14px;
}

.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    position: relative;
    top: 40%;
    z-index: 1000;
}

.hero h2 {
    font-size: 4rem;
    font-weight: 400;
}

.hero p {
    font-size: 1.25rem;
    margin-top: 120px;
    position: absolute;
    text-transform: uppercase;
    word-spacing: 5px;
    letter-spacing: 10px;
    color: #ccc;
}

.contact {
    display: flex;
    justify-content: space-between;
    padding: 50px;
}

.office-info {
    max-width: 400px;
}

form {
    max-width: 400px;
}

form input,
form textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    border: 1px solid #ccc;
}

form button {
    padding: 12px 30px;
    background-color: #333;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.footer {
    background-color: lightgrey;
    color: #fff;
    padding: 20px 0;
    text-align: center;
    margin-top: 100px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.social-icon {
    color: black;
    margin: 0 15px;
    font-size: 20px;
    transition: color 0.3s ease;
}

.footer-black {
    background-color: black;
    color: #fff;
    padding: 50px 0;
    text-align: center;
    align-items: center;
}

.footer-black-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-black h5 {
    color: lightgrey;
    letter-spacing: 2px;
    font-weight: 400;
    font-size: medium;
}

.contact-form {
    width: 100%;
    height: 600px; /* Adjust as needed */
    border: none;
}

.form-container {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 300px;
}

form h2 {
    text-align: center;
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 5px;
}

input, textarea {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button {
    width: 100%;
    padding: 10px;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background-color: #218838;
}

#response-message {
    text-align: center;
    margin-top: 10px;
    color: #d9534f;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .navbar {
        width: 100%;
        padding: 10px;
        margin: 0;
    }

    .navbar-brand {
        font-size: 18px;
    }

    .hero h2 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .contact {
        flex-direction: column;
        padding: 20px;
    }

    .office-info,
    form {
        max-width: 100%;
    }

    form input,
    form textarea {
        font-size: 14px;
        padding: 8px;
    }

    form button {
        width: 100%;
    }
}
