/* General styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #000;
    color: #fff;
}

a {
    color: #fff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Header styles */
header {
    position: relative;
    width: 100%;
    height: 100vh;
    background: url('images/hero-image.jpg') no-repeat center center/cover;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background: rgba(0, 0, 0, 0.8);
}

nav .logo a {
    font-size: 1.5rem;
    font-weight: bold;
}

nav ul {
    list-style-type: none;
    display: flex;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    font-size: 1rem;
}

/* Hero styles */
.hero {
    text-align: center;
    margin-top: auto;
    padding: 50px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
}

/* Section styles */
section {
    padding: 50px;
    text-align: center;
    background: #111;
}

/* Footer styles */
footer {
    text-align: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.8);
}
/* Additional section styles */
.company-history, .team, .technology-details, .applications, .news-updates, .gallery, .contact-form, .careers, .investors-partners {
    background: #111;
    padding: 50px 100px;
    text-align: left;
}

h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Image styles */
img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Contact form styles */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: #222;
    padding: 20px;
    border-radius: 10px;
}

.contact-form label {
    display: block;
    margin-bottom: 10px;
    font-size: 1rem;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #444;
    border-radius: 5px;
    background: #333;
    color: #fff;
}

.contact-form button {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background: #444;
    color: #fff;
    cursor: pointer;
    font-size: 1rem;
}

.contact-form button:hover {
    background: #555;
}
