/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #1a1a1a; /* Dark background */
    color: #e0e0e0; /* Light text color */
    line-height: 1.6;
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
}

/* Header */
header {
    background: #000; /* Black header */
    color: #fff;
    padding-top: 20px;
    min-height: 70px;
    border-bottom: #00ff00 3px solid; /* Vibrant green accent */
}

header a {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 16px;
}

header ul {
    padding: 0;
    list-style: none;
}

header li {
    display: inline;
    padding: 0 20px 0 20px;
}

header #branding {
    float: left;
}

header #branding h1 {
    margin: 0;
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    margin: auto;
}

header .logo {
    font-size: 24px;
    font-weight: bold;
    color: #00ffff; /* Vibrant cyan for logo */
}

header ul {
    margin: 0;
}

header li a:hover {
    color: #00ff00; /* Vibrant green on hover */
    font-weight: bold;
}

/* Hero Section */
.hero {
    position: relative;
    height: 600px; /* Adjust as needed */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

.hero img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: brightness(50%); /* Darken image */
}

.hero-content {
    z-index: 1;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay */
    border-radius: 10px;
}

.hero h1 {
    font-size: 4em;
    margin-bottom: 10px;
    color: #ff00ff; /* Vibrant magenta */
}

.hero p {
    font-size: 1.5em;
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    color: #fff;
    background-color: #00ff00; /* Vibrant green button */
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #00cc00;
}

/* Content Sections */
.content-section {
    padding: 40px 20px;
    margin: 20px auto;
    background-color: #2a2a2a; /* Slightly lighter dark background */
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    width: 80%;
    max-width: 1200px;
}

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

.content-section p {
    font-size: 1.1em;
    text-align: center;
    margin-bottom: 20px;
}

/* Service Grid */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.service-item {
    background-color: #3a3a3a;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
}

.service-item h3 {
    color: #ff00ff; /* Vibrant magenta for service titles */
    margin-bottom: 10px;
}

/* Contact Page Layout */
.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 30px;
}

.contact-form {
    flex: 1;
    min-width: 300px;
    background: #3a3a3a;
    padding: 30px;
    border-radius: 8px;
}

.contact-form label {
    display: block;
    margin-bottom: 5px;
    color: #00ffff;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #555;
    background: #222;
    color: #fff;
    border-radius: 4px;
    box-sizing: border-box;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.location-item {
    margin-bottom: 30px;
    padding: 20px;
    background: #3a3a3a;
    border-radius: 8px;
    border-left: 5px solid #ff00ff;
}

.location-item h4 {
    margin-top: 0;
    color: #00ff00;
}

/* Footer */
footer {
    background: #000;
    color: #fff;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    border-top: #00ff00 3px solid; /* Vibrant green accent */
}
