/* General Styles */
body {
    font-family: sans-serif;
    margin: 0;
    line-height: 1.6;
    color: #eee; /* Light text for dark background */
    background-color: #121212; /* Dark black background */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header */
header {
    background-color: rgba(0, 0, 0, 0.8); /* Slightly transparent black header */
    padding: 15px 0;
    position: fixed;
    width: 100%;
    z-index: 100;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2em;
    color: #4285f4; /* Google Blue - a nice accent */
    text-decoration: none;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

nav ul li a {
    color: #ddd;
    text-decoration: none;
    padding: 10px 15px;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #64b5f6; /* Lighter Google Blue */
}

/* Hero Section */
#hero {
    background: linear-gradient(135deg, #1a237e 0%, #000000 100%); /* Sexy dark blue to black gradient */
    color: #fff;
    text-align: center;
    padding: 150px 0;
}

#hero .container {
    max-width: 800px;
}

.hero-content h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2em;
    line-height: 1.8;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    background-color: #4285f4;
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #64b5f6;
}

/* Services Section */
#services {
    background-color: #1e1e1e; /* Slightly lighter black for contrast */
    padding: 80px 0;
    text-align: center;
}

#services h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
    color: #eee;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.service-item {
    background-color: #2c2c2c;
    padding: 30px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-item i {
    font-size: 2.5em;
    color: #4285f4;
    margin-bottom: 15px;
}

.service-item h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #ddd;
}

.service-item p {
    color: #aaa;
}

/* Contact Section */
#contact {
    background-color: #121212;
    padding: 80px 0;
    text-align: center;
    color: #eee;
}

#contact h2 {
    font-size: 2.5em;
    margin-bottom: 30px;
}

.contact-info {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #aaa;
}

.contact-details a {
    color: #64b5f6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #4285f4;
}

/* Footer */
footer {
    background-color: #000;
    color: #777;
    text-align: center;
    padding: 20px 0;
    font-size: 0.9em;
}

/* Responsive Design (Basic) */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }

    header .container {
        flex-direction: column;
        align-items: flex-start;
    }

    .logo {
        margin-bottom: 10px;
    }

    nav ul {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
    }

    nav ul li a {
        padding: 10px 0;
        border-bottom: 1px solid #222;
        width: 100%;
    }

    nav ul li:last-child a {
        border-bottom: none;
    }

    #hero {
        padding: 100px 0;
    }

    #hero .container {
        max-width: 90%;
    }

    .hero-content h1 {
        font-size: 2.5em;
    }

    .hero-content p {
        font-size: 1em;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}