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

html {
    scroll-behavior: smooth; /* Native smooth scrolling for fallback */
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333; /* Default text color for non-parallax content if any */
    background-color: #f4f4f4; /* Fallback background */
}

/* Navigation Bar */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(25, 40, 65, 0.95); /* Darker, more corporate blue */
    padding: 15px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    transition: background-color 0.3s ease;
}

nav .logo {
    font-size: 1.8em;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    text-decoration: none;
    color: #e0e0e0;
    font-size: 1em;
    font-weight: 400;
    padding-bottom: 5px;
    transition: color 0.3s ease, border-bottom-color 0.3s ease;
    border-bottom: 2px solid transparent;
}

nav ul li a:hover,
nav ul li a.active { /* Class 'active' can be added by JS if desired */
    color: #61dafb; /* Bright accent color */
    border-bottom-color: #61dafb;
}

/* Parallax Sections */
.parallax-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 80px 20px; /* Increased padding for nav bar space */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: white;
    position: relative;
}

.parallax-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.55); /* Overlay for text readability */
    z-index: 1;
}

.content-box {
    position: relative;
    z-index: 2;
    background-color: rgba(10, 20, 40, 0.75); /* Slightly more opaque for better readability */
    padding: 30px 40px;
    border-radius: 12px;
    max-width: 800px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.3);
}

.parallax-section h1 {
    font-size: 3em;
    margin-bottom: 0.3em;
    font-weight: 700;
    color: #fff;
}

.parallax-section h2 {
    font-size: 2.5em;
    margin-bottom: 0.5em;
    font-weight: 600;
    color: #61dafb; /* Accent color for headings */
}

.parallax-section h3 {
    font-size: 1.8em;
    margin-top: 1em;
    margin-bottom: 0.5em;
    font-weight: 600;
    color: #82eefd; /* Lighter accent for subheadings */
}

.parallax-section p {
    font-size: 1.1em;
    margin-bottom: 1em;
    font-weight: 300;
    color: #f0f0f0;
}

.parallax-section p.tagline {
    font-size: 1.5em;
    font-weight: 400;
    color: #e0e0e0;
}

/* Specific content styling */
.service-details .service-item {
    margin-bottom: 20px;
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    text-align: left;
}
.service-details .service-item:last-child {
    margin-bottom: 0;
}

.service-details h3 { /* Target H3 specifically within service-details for service item titles */
    font-size: 1.5em;
    color: #82eefd; 
    margin-bottom: 0.5em;
    margin-top: 0; /* Reset margin top for these H3s */
}

.commitment-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
    text-align: left;
    display: inline-block; /* Center the list items block */
}

.commitment-list li {
    font-size: 1.1em;
    margin-bottom: 10px;
    color: #f0f0f0;
    font-weight: 300;
}

.commitment-list .checkmark {
    color: #61dafb; /* Accent color for checkmarks */
    margin-right: 10px;
    font-weight: bold;
}

.contact-details {
    margin-top: 20px;
    font-size: 1.1em;
}

.contact-details p {
    margin-bottom: 0.5em;
    color: #f0f0f0;
}

.contact-details strong {
    color: #82eefd;
}

.social-links {
    margin-top: 20px;
    font-size: 1.1em;
}

.social-links p {
    margin-bottom: 0.5em;
}

.social-links a {
    color: #61dafb;
    text-decoration: none;
}

.social-links a:hover {
    text-decoration: underline;
}

.partner-list {
    list-style: none;
    padding: 0;
    margin-top: 15px;
    text-align: left;
}

.partner-list li {
    font-size: 1em;
    margin-bottom: 10px;
    color: #f0f0f0;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 10px;
    border-radius: 6px;
}

.partner-list li strong {
    color: #82eefd;
    display: block;
    margin-bottom: 5px;
}

.partner-list a {
    color: #61dafb;
    text-decoration: none;
}

.partner-list a:hover {
    text-decoration: underline;
}


/* Footer */
footer {
    background-color: #192841; /* Consistent dark blue */
    color: #bbb;
    text-align: center;
    padding: 20px;
    font-size: 0.9em;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    nav {
        padding: 15px 20px;
        flex-direction: column;
    }
    nav .logo {
        margin-bottom: 10px;
    }
    nav ul {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    nav ul li {
        margin: 5px 0;
        width: 100%;
        text-align: center;
    }
    nav ul li a {
        display: block;
        padding: 8px;
    }

    .parallax-section h1 {
        font-size: 2.2em;
    }
    .parallax-section h2 {
        font-size: 1.8em;
    }
    .parallax-section h3 {
        font-size: 1.5em;
    }
    .parallax-section p {
        font-size: 1em;
    }
    .content-box {
        padding: 20px;
        margin: 0 10px;
    }

    .service-details h3 { /* Target H3 specifically within service-details for service item titles */
        font-size: 1.3em;
    }
    .partner-list li {
        font-size: 0.95em;
    }
}