/* Reset browser defaults */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

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

/* Navbar */
.navbar {
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar a {
    color: #fff;
    text-decoration: none;
    margin-left: 20px;
}

.logo {
    font-size: 2em;
    font-weight: bold;
}

/* Hero Section */
.hero {
    background: url('assets/images/hero-image.jpg') no-repeat center center/cover; /* Replace with your hero image */
    color: #fff;
    text-align: center;
    padding: 100px 20px;
}

.hero-content {
    background: rgba(0, 0, 0, 0.6);
    padding: 40px;
    border-radius: 10px;
}

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

.cta-button {
    background: #00ffff; /* Cyan */
    color: #000;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
    display: inline-block;
    margin-top: 20px;
}

.cta-button:hover {
    background-color: #ffcc00; /* Yellow */
}

/* Features Section */
.features {
    display: flex;
    justify-content: space-around;
    padding: 40px;
    background: #222;
}

.feature {
    text-align: center;
    width: 30%;
}

.feature img {
    width: 70px;
    height: 70px;
    margin-bottom: 15px;
}

/* General Styling for Sections */
section {
    padding: 60px 20px;
    text-align: center;
}

section h2 {
    font-size: 2.5em;
    margin-bottom: 30px;
}

/* Footer */
footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 20px;
    margin-top: auto; /* Stick to the bottom */
}

/* About Us Section */
.about-section {
    padding: 40px;
    text-align: left;
    margin: 20px auto;
    max-width: 800px;
}

.about-section h2 {
    font-size: 2.0em;
    margin-bottom: 20px;
    color: #00ffff; /* Cyan for headings */
}

.about-section p {
    font-size: 1.1em;
    line-height: 1.7;
    margin-bottom: 20px;
}

.about-section ul {
    list-style: none;
    padding-left: 0;
}

.about-section li {
    margin-bottom: 10px;
    font-size: 1.1em;
}

/* Services Section */
.services-section {
    padding: 40px;
}

.services-section h2 {
    font-size: 2.5em;
    margin-bottom: 30px;
    color: #00ffff; /* Cyan for headings */
}

.service {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.5); /* Dark translucent background */
    border-radius: 10px;
}

.service img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-right: 20px;
    object-fit: cover;
}

.service h3 {
    font-size: 1.6em;
    margin-bottom: 10px;
    color: #fff;
}

.service p {
    font-size: 1.1em;
    color: #ddd;
}

/* Gallery */
.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px;
    gap: 20px;
}

.gallery-item {
    width: 300px;
    height: 200px;
    background-color: #333;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Contact Section */
.contact-section {
    padding: 40px;
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
}

.contact-section h2 {
    font-size: 2.5em;
    margin-bottom: 30px;
    color: #00ffff; /* Cyan for headings */
    text-align: center;
}

.contact-section p {
    font-size: 1.1em;
    line-height: 1.7;
    margin-bottom: 20px;
}

.contact-section form {
    display: flex;
    flex-direction: column;
}

.contact-section label {
    margin-bottom: 5px;
    font-weight: bold;
    color: #eee;
}

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

.contact-section textarea {
    resize: vertical;
}

.contact-section button {
    background-color: #00ffff; /* Cyan */
    color: #000;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact-section button:hover {
    background-color: #ffcc00; /* Yellow */
}

.contact-info {
    margin-top: 40px;
    text-align: center;
}

.contact-info h3 {
    font-size: 1.6em;
    margin-bottom: 15px;
    color: #00ffff; /* Cyan for headings */
}

.contact-info p {
    font-size: 1.1em;
    color: #ddd;
}

.contact-info a {
    color: #00ffff; /* Cyan for links */
    text-decoration: none;
    transition: color 0.3s;
}

.contact-info a:hover {
    color: #ffcc00; /* Yellow */
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .navbar a {
        margin: 10px 0;
    }

    .hero {
        padding: 80px 10px;
    }

    .hero h1 {
        font-size: 2.5em;
    }

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

    .feature {
        width: 80%;
        margin-bottom: 30px;
    }

    .service {
        flex-direction: column;
        text-align: center;
    }

    .service img {
        margin-bottom: 20px;
    }

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

    .gallery-item {
        width: 90%;
    }
}