
*{
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
    font-family: sans-serif;
    justify-content: center;
}

::-webkit-scrollbar{
    display: none;
}
.header {
    position: fixed;
    min-height: 10vh;
    width: 100%;
    background-color: #ffffff;
    background-position: center;
    background-size: cover;
    z-index: 1000;

}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.logo img {
    height: 3.5rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: #333;
    font-weight: 500;
    padding: 0.5rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #2f6fed;
}

.bg {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
}

#bg-video {
    position:absolute;
    width: 100%;
    height: 70%;
    object-fit: cover;
    z-index: -1;
}

.container {
    background-color: #000000;
    padding: 30px;
}
.container p{
    color: white;
    font-size: 1rem;
    font-family: 'Roboto', sans-serif;
    text-align: left;
}

.contact-info {
    flex: 1;
    padding: 20px;
    color: rgb(5, 5, 5);
    justify-content: center;
}

.contact-form {
    flex: 1;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: left;
}


fieldset {
    width: 100%;
    max-width: 400px;
    padding: 30px;
    background: rgba(15, 15, 15, 0.8);
    border-radius: 10px;
    border: none;
    text-align: center;
}
.contact-container {
    max-width: 50%;
    padding: 1.5rem;
    align-self: flex-end;

}

.section-title h1{
    color: #000000;
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 0.5rem;
    margin-top: 2rem;
    position: relative;
    top: 15rem;

}

legend {
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 1.5em;
    font-weight: bold;
    color: #000000;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 10px 20px;
    border-radius: 10px;
    width: auto;
    display: table;
    margin: 0 auto; 
    text-align: center;

}

input, textarea, button {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    font-size: 1em;
    border-radius: 5px;
    border: 1px solid #ccc;
    box-sizing: border-box;

}

button {
    background-color: #4095ca;
    color: white;
    font-weight: bold;
    cursor: pointer;
    border: none;
}

button:hover {
    background-color: #3178a3;
}
.footer {
    background-color: #222;
    color: #fff;
    padding: 3rem 2rem 1rem;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 3rem;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-logo {
    width: 150px;
    margin-bottom: 1rem;
}

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    position: relative;
    color: white;
}

.footer-section h3::after {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background-color: #2f6fed;
    margin-top: 0.5rem;
}

.footer-section p {
    margin-bottom: 0.5rem;
    color: #ccc;
}

.footer-section a {
    color: #ccc;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #2f6fed;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    justify-content: flex-start;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #333;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: #2f6fed;
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    margin-top: 3rem;
    border-top: 1px solid #444;
    color: #888;
}
