/* General Body Styles */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #0e0e2c;
    color: #e0e0f1;
    margin: 0;
    padding: 0;
}

/* Container for Centering Content */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
}

/* Header Styles */
header.hero {
    background: linear-gradient(135deg, #001f3f, #003366);
    color: white;
    padding: 50px 0;
    text-align: center;
    position: relative;
}

header .graphic-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('path-to-your-background-image.jpg'); /* Change the image URL */
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: -1;
}

header .logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 3em;
    margin: 0;
    letter-spacing: 2px;
}

header .tagline {
    font-size: 1.2em;
    font-weight: 300;
    margin-top: 10px;
}

/* Navigation Menu Styles */
nav ul.nav-links {
    list-style: none;
    padding: 0;
    margin: 30px 0 0 0;
    display: flex;
    justify-content: center;
    gap: 40px;
}

nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #00d4ff;
}

/* Section Titles */
h2 {
    color: #00d4ff;
    font-weight: 600;
    border-bottom: 1px solid #333;
    padding-bottom: 10px;
    margin-top: 40px;
    margin-bottom: 20px;
}

/* Fade-In Animation for Sections */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-in.active {
    opacity: 1;
    transform: translateY(0);
}

/* PDF Links Section */
.pdf-links a.report-link {
    display: block;
    background: #1a75ff;
    color: white;
    text-decoration: none;
    padding: 18px 22px;
    margin: 14px 0;
    border-radius: 8px;
    font-weight: 500;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    text-shadow: 0px 0px 3px rgba(255, 255, 255, 0.4);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.pdf-links a.report-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: transparent;
    transition: left 0.4s ease;
    z-index: 0;
}

.pdf-links a.report-link:hover {
    background: #1aabff;
    transform: translateY(-5px);
    color: white;
}

.pdf-links a.report-link:hover::before {
    left: 0;
}

/* Service Boxes */
.service-box {
    display: inline-block;
    width: 22%;
    margin: 30px;
    background: #333;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    position: relative;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.service-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.7);
    background: #1a1a2e;
}

.service-box img {
    max-width: 1800px;
    max-height: 100px;
    margin-bottom: 5px;
    margin-top: 12px;
    filter: drop-shadow(0 0 10px #00d4ff);
}

.service-box h3 {
    color: #00e5ff;
    font-size: 1.6em;
    margin-bottom: 10px;
}

/* Footer Styles */
footer {
    background-color: #001f3f;
    color: white;
    padding: 40px 0;
    text-align: center;
}

footer a {
    color: #00d4ff;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Testimonials Section */
blockquote {
    background: #1e2a47;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    font-size: 1.2em;
    font-style: italic;
    color: #e0e0f1;
    border-left: 5px solid #00d4ff;
}

cite {
    display: block;
    margin-top: 10px;
    text-align: right;
    font-weight: bold;
    color: #00d4ff;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    nav ul.nav-links {
        flex-direction: column;
        gap: 20px;
    }

    header {
        padding: 40px 20px;
    }
}
