/* Global Styles */
body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #0a0a1a; /* Deep dark blue/black */
    color: #e0e0e0; /* Light grey text */
    line-height: 1.6;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

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

h1, h2, h3 {
    color: #ffffff; /* White for headings */
    text-align: center;
    margin-bottom: 20px;
}

h1 {
    font-size: 2.8em;
    letter-spacing: 1px;
    text-transform: uppercase;
}

h2 {
    font-size: 2.2em;
    color: #00ffff; /* Electric cyan for section titles */
    margin-bottom: 30px;
}

h3 {
    font-size: 1.8em;
    color: #cccccc; /* Lighter grey for subheadings */
}

a {
    color: #00ffff; /* Electric cyan for links */
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #ff6600; /* Vibrant accent on hover */
}

/* Buttons */
.cta-button {
    display: inline-block;
    background-color: #ff6600; /* Vibrant accent for CTA */
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background-color: #ffffff;
    color: #ff6600;
    transform: translateY(-3px);
}

/* Hero Section */
.hero {
    position: relative;
    height: 70vh; /* More screen height */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(rgba(10, 10, 26, 0.9), rgba(10, 10, 26, 0.7)), url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNDQwIiBoZWlnaHQ9IjYwMCIgdmlld0JveD0iMCAwIDE0NCA2MCI+CiAgPHJlY3Qgd2lkdGg9IjE0NCIgaGVpZ2h0PSI2MCIgZmlsbD0iIzAwMCIvPgogIDxwYXRoIGQ9Ik0gMCAwIEwgMTQ0IDYwIEwgMCA2MCBaIiBmaWxsPSIjMGEwYTE0Ii8+CiAgPHBhdGggZD0iTSAwIDYwIEwgMTQ0IDAgTCAxNDQgNjAgWiIgZmlsbD0iIzBhMGEwZCIvPgogIDxnPz4KICAgIDxjaXJjbGUgY3g9IjM0IiBjeT0iMzYiIHI9IjMiIGZpbGw9IiNlZGUiLz4KICAgPGNpcmNsZSBjeD0iNTgiIGN5PSIzNiIgcj0iMyIgZmlsbD0iI2VlZSIvPgogICAgPGNpcmNsZSBjeD0iODIiIGN5PSIzNiIgcj0iMyIgZmlsbD0iI2VlZSIvPgogICAgPGNpcmNsZSBjeD0iMTA2IiBjeT0iMzYiIHI9IjMiIGZpbGw9IiNlZWUiLz4KICA8L2c+Cjwvc3ZnPg==');
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1) 0%, rgba(255, 102, 0, 0.05) 50%, rgba(255, 255, 255, 0.02) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    animation: fadeIn 2s ease-in-out forwards;
}

.hero h1 {
    font-size: 3.5em;
    margin-bottom: 15px;
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
}

.hero p {
    font-size: 1.3em;
    max-width: 700px;
    margin: 0 auto 30px auto;
    opacity: 0.9;
}

/* Section Styles */
section {
    padding: 60px 0;
    text-align: center;
    position: relative;
    background-color: #101020; /* Slightly lighter dark blue for sections */
}

section:nth-child(even) {
    background-color: #0a0a1a; /* Alternating darker background */
}

.service-item, .about-content-block {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 30px;
    margin: 20px auto;
    border-radius: 8px;
    max-width: 600px;
    border-left: 5px solid #00ffff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover, .about-content-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 255, 255, 0.2);
}

.service-item h3 {
    color: #00ffff;
    margin-top: 0;
}

.about-content-block h3 {
    color: #ffffff;
    margin-top: 0;
}

.about-content-block p {
    font-size: 1.1em;
}

/* Contact Section */
.contact-info {
    background-color: #1a1a2a; /* Darker section for contact */
    padding: 40px 0;
}

.contact-info p {
    font-size: 1.2em;
    margin: 10px 0;
}

.contact-info p strong {
    color: #ffffff;
}

/* Footer */
footer {
    background-color: #000000; /* Black footer */
    color: #999999;
    text-align: center;
    padding: 20px 0;
    font-size: 0.9em;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5em;
    }
    h2 {
        font-size: 1.8em;
    }
    .hero p {
        font-size: 1.1em;
    }
    .container {
        width: 95%;
    }
    .cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2em;
    }
    h2 {
        font-size: 1.6em;
    }
    .hero {
        height: 50vh;
    }
    .hero p {
        font-size: 1em;
    }
}

/* SVG Background Pattern */
/* The inline SVG in the hero section provides a subtle background. */

