/* General Styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: black;
    color: white;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px;
    background-color: #222;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}


nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    padding: 10px 15px;
    display: block;
}

nav ul li a:hover {
    background-color: #555;
    border-radius: 5px;
}

/* Home Section */
.home-section {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

#background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.home-content {
    text-align: center;
    z-index: 10;
}

.home-content h1 {
    font-size: 3rem;
}

.home-content p {
    font-size: 1.5rem;
}

/* About Section */
.about-section {
    padding: 100px 20px;
    background-color: #111;
}

.about-columns {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.about-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
}

.about-text {
    width: 100%;
    max-width: 600px;
    text-align: left;
}

/* Services Section */
.services-section {
    padding: 100px 20px;
    text-align: center;
}

.services-columns {
    display: flex;
    justify-content: space-around;
    gap: 20px;
}

.service {
    width: 30%;
}

.service-image {
    width: 100%;
    border-radius: 10px;
}

.service p {
    text-align: left;
    margin-top: 10px;
}

/* Contact Section */
.contact-section {
    padding: 100px 20px;
    text-align: center;
}

.contact-image {
    width: 25%;
    border-radius: 10px;
}

button {
    padding: 15px 30px;
    font-size: 1rem;
    background-color: #555;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

button:hover {
    background-color: #777;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-columns {
        flex-direction: column;
    }

    .about-image, .about-text {
        width: 100%;
    }

    .services-columns {
        flex-direction: column;
        align-items: center;
    }

    .service {
        width: 100%;
        margin-bottom: 20px;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    nav ul li {
        margin-left: 10px;
    }

    nav ul li a {
        padding: 10px 12px;
    }

    .home-content h1 {
        font-size: 2rem;
    }

    .home-content p {
        font-size: 1rem;
    }
}
