/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #fff;
    background-color: #1a1a1a;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

a {
    text-decoration: none;
    color: inherit;
}

h1, h2, h3 {
    color: #fff;
}

/* Navigation Bar */
.navbar {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar .logo {
    font-size: 24px;
    font-weight: bold;
}

.navbar .nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.navbar .nav-links a {
    color: #fff;
    transition: color 0.3s ease;
}

.navbar .nav-links a:hover {
    color: #007BFF;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 4px 0;
}

/* Hero Section - Background Image */
.hero {
    position: relative;
    height: 100vh;
    background-image: url('your-background-image.jpg'); /* Replace with your image */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 20px;
}

/* About Us Section */
.about {
    padding: 80px 0;
    background-color: #222;
}

.about h2 {
    text-align: center;
    margin-bottom: 20px;
}

.about p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* What We Do Section */
.what-we-do {
    padding: 80px 0;
    background-color: #1a1a1a;
}

.what-we-do h2 {
    text-align: center;
    margin-bottom: 40px;
}

.services {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.service {
    background-color: #333;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    width: 30%;
    min-width: 250px;
}

.service h3 {
    margin-bottom: 15px;
}

/* Contact Us Section */
.contact {
    padding: 80px 0;
    background-color: #222;
}

.contact h2 {
    text-align: center;
    margin-bottom: 20px;
}

.contact form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 600px;
    margin: 0 auto;
}

.contact input, .contact textarea {
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: #444;
    color: #fff;
}

.contact button {
    padding: 10px;
    background-color: #007BFF;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact button:hover {
    background-color: #0056b3;
}

/* Footer */
.footer {
    padding: 20px 0;
    background-color: #000;
    text-align: center;
}

.footer .socials {
    margin-top: 10px;
}

.footer .socials a {
    margin: 0 10px;
    color: #007BFF;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #000;
        position: absolute;
        top: 60px;
        left: 0;
    }

    .navbar .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    .services {
        flex-direction: column;
        align-items: center;
    }

    .service {
        width: 80%;
    }
}

/* Hero Section - Static Image */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #1a1a1a; /* Fallback color */
}

.hero-content {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 20px;
}

.hero-image {
    max-width: 100%;
    height: auto;
    margin-top: 20px; /* Space between text and image */
}

        .social-links {
            background: white;
            padding: 20px;
            margin: 20px;
            border-radius: 10px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        }
        .social-links div {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
        }
        .social-links div i {
            color: #6e00ff;
            margin-right: 10px;
        }