/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    color: #fff;
    background-color: #121212;
    margin: 0;
    padding: 0;
}

/* Header Styles */
header {
    background-color: #000;
    color: #fff;
    padding: 10px 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
}

header .logo {
    width: auto;
    height: 60px;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

nav ul li a:hover {
    color: #ff6600;
}

/* Hero Section Styles */
.hero {
    background: url('images/hero-bg.jpg') no-repeat center center/cover;
    color: #fff;
    text-align: center;
    padding: 100px 20px;
}

.hero h1 {
    font-size: 3em;
    margin: 0;
}

.hero p {
    font-size: 1.5em;
}

.hero .btn {
    background-color: #ff6600;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
}

/* About Section Styles */
.about {   
    padding: 50px 20px;
    background-color: #1c1c1c;
}

.about h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

.about p {
    font-size: 1.2em;
}

/* Mission Section Styles */
.mission {
    padding: 50px 20px;
    background-color: #1c1c1c;
}

.mission h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

.mission p {
    font-size: 1.2em;
}

/* Team Section Styles */
.team {
    padding: 50px 20px;
    background-color: #1c1c1c;
}

.team h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

.team-member {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.team-img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    margin-right: 20px;
}

.team-info {
    max-width: 600px;
}

.team-info h3 {
    font-size: 1.5em;
    margin: 0;
}

.team-info p {
    font-size: 1.2em;
    margin: 5px 0 0;
}

/* Join Section Styles */
.join {
    padding: 50px 20px;
    background-color: #1c1c1c;
}

.join h1 {
    font-size: 2em;
    margin-bottom: 20px;
}

.join p {
    font-size: 1.2em;
}

.join .btn {
    background-color: #ff6600;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
}

/* Contact Section Styles */
.contact {
    padding: 50px 20px;
    background-color: #000;
}

.contact h1 {
    font-size: 2em;
    margin-bottom: 20px;
}

.contact form label {
    font-size: 1.2em;
    display: block;
    margin-bottom: 10px;
}

.contact form input,
.contact form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 5px;
}

.contact form button {
    background-color: #ff6600;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.contact .btn {
    background-color: #ff6600;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
}

/* Footer Styles */
footer {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}


/* Video Background Styles */
.video-background {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000; /* Fallback color */
}

.video-background iframe {
    width: 100%;
    max-width: 100%;
    height: 100%;
    max-height: 80vh;
    border: none;
}

.video-overlay {
    position: absolute;
    z-index: 1;
    text-align: center;
    color: #fff;
    width: 100%;
    top: 20%;
}

.video-overlay h1 {
    font-size: 3em;
    margin: 0;
}

.video-overlay p {
    font-size: 1.5em;
}

.video-overlay .btn {
    background-color: #ff6600;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    margin-top: 20px;
}
