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

/* ==========================================================================
   Variables & Global Setup
   ========================================================================== */
:root {
    --primary-color: #007bff;
    --primary-gradient: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    --secondary-color: #6c757d;
    --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --light-accent-color: #e9ecef;

    --text-dark: #212529;
    --text-light: #ffffff;
    --text-light-secondary: #f8f9fa;
    --text-muted: #6c757d;

    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --bg-dark: #2c3e50;
    --bg-dark-textured: #232a34; /* Dark textured background */

    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 12px;

    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 5px 15px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.1);

    /* --- Navbar Height Variables --- */
    --navbar-height-initial: 81.6px;
    --navbar-height-scrolled: 65.6px;
    --navbar-height-scrolled-mobile: 65.6px;
}

body {
    font-family: 'Segoe UI', 'Roboto', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    overflow-x: hidden;
    background-color: var(--bg-white);
}

body.no-scroll {
    overflow: hidden;
}

html { scroll-behavior: smooth; }

/* --- Global Helper Classes --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 5rem 0;
    overflow: hidden;
}
.section.bg-light { background-color: var(--bg-light); }
.section.bg-dark { background-color: var(--bg-dark); color: var(--text-light); }
.section.bg-dark-textured { background-color: var(--bg-dark-textured); color: var(--text-light); }

.section-title {
    text-align: center;
    font-size: clamp(2.2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    position: relative;
    padding-bottom: 1rem;
}
.section.bg-dark .section-title,
.section.bg-dark-textured .section-title {
    color: var(--text-light);
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
}
.section.bg-dark .section-title::after,
.section.bg-dark-textured .section-title::after {
    background-color: var(--text-light);
}
.section-subtitle {
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}
.section-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3rem;
}
.section.bg-dark .section-description,
.section.bg-dark-textured .section-description {
    color: var(--text-light-secondary);
}

.cta-button {
    display: inline-block;
    padding: 0.9rem 2.2rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    box-shadow: var(--shadow-sm);
}
.cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-md);
    background-color: #0056b3;
}

.page-content-after-fixed-header {
    padding-top: var(--navbar-height-initial);
}

/* ==========================================================================
   Header (Navbar) Module - (modules/header.html)
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    z-index: 1000;
    transition: background-color 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.navbar.scrolled {
    padding: 1rem 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
    border-bottom-color: transparent;
}
.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    text-decoration: none;
    letter-spacing: -0.5px;
    transition: color 0.3s ease;
}
.navbar.scrolled .logo {
    color: var(--primary-color);
}
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}
.nav-menu .nav-link {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}
.navbar.scrolled .nav-menu .nav-link {
    color: var(--text-dark);
}
.nav-menu .nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}
.navbar:not(.scrolled) .nav-menu .nav-link::after {
    background: var(--text-light);
}
.nav-menu .nav-link:hover {
    color: var(--primary-color);
}
.navbar:not(.scrolled) .nav-menu .nav-link:hover {
    color: var(--text-light-secondary);
}
.nav-menu .nav-link:hover::after {
    width: 100%;
}
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}
.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    margin: 4px 0;
    border-radius: 2px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}
.navbar.scrolled .hamburger span {
    background: var(--text-dark);
}

/* ==========================================================================
   Hero Section Module - (modules/hero.html) - VIDEO BACKGROUND
   ========================================================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    color: var(--text-light);
    padding-top: var(--navbar-height-initial);
    padding-bottom: 4rem;
    padding-left: 2rem;
    padding-right: 2rem;
    overflow: hidden;
    background-color: #101020; /* Dark fallback color */
}
.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}
#heroVideo {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(20, 30, 40, 0.65);
    z-index: 1;
}
.hero-content {
    max-width: 800px;
    margin: 0 auto;
    z-index: 2;
    position: relative;
}
.hero h1 {
    font-size: clamp(2.8rem, 6vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeInUp 1s ease 0.3s forwards;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    color: var(--text-light);
}
.hero p {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: fadeInUp 1s ease 0.6s forwards;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    color: var(--text-light-secondary);
}
.hero-cta {
    opacity: 0;
    animation: fadeInUp 1s ease 0.9s forwards;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* ==========================================================================
   Core Solutions Module - (modules/core-solutions.html)
   ========================================================================== */
.comprehensive-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}
.service-item-card {
    background: var(--bg-white);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-top-color 0.3s ease;
    text-align: left;
    border-top: 4px solid transparent;
}
.service-item-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-top-color: var(--primary-color);
}
.service-item-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #0056b3 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}
.service-item-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    font-weight: 600;
}
.service-item-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ==========================================================================
   Who We Are Module - (modules/who-we-are.html)
   ========================================================================== */
.who-we-are .content-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 3rem;
}
.who-we-are .content-text, .who-we-are .content-image {
    flex: 1;
    min-width: 300px;
}
.who-we-are .content-text p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-muted);
}
.who-we-are .content-text p:first-child {
    font-size: 1.15rem;
    color: var(--text-dark);
}
.who-we-are .content-image img {
    width: 100%;
    max-width: 500px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    object-fit: cover;
    display: block;
    margin: 0 auto;
}

/* ==========================================================================
   Solutions Offered Module - (modules/solutions-offered.html)
   THIS SECTION SHOULD HAVE A DARK BACKGROUND AND LIGHT TEXT
   ========================================================================== */
.solutions-offered { /* This is the <section id="solutions-offered" class="section solutions-offered bg-dark-textured"> */
    /* Background and text color are applied by .bg-dark-textured via global .section rules */
}
.solutions-offered .solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.solution-card { /* General card style */
    background: var(--bg-white); /* Default background */
    color: var(--text-dark);    /* Default text color */
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
/* Specific styles for solution cards inside a .bg-dark-textured section */
.section.bg-dark-textured .solution-card {
    background: #2c3643; /* Darker card background for contrast on dark section */
    color: var(--text-light-secondary); /* Light text for these cards */
}
.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}
.solution-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}
.solution-card-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.solution-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
    /* Default color would be var(--text-dark) */
}
.section.bg-dark-textured .solution-card h3 { /* Headings inside cards on dark section */
    color: var(--text-light);
}
.solution-card p {
    font-size: 0.95rem;
    color: var(--text-muted); /* Default text for card paragraph */
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}
.section.bg-dark-textured .solution-card p { /* Paragraphs inside cards on dark section */
    color: #adb5bd; /* Lighter muted text */
}
.solution-card-button {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background-color: var(--light-accent-color); /* Light button on dark cards */
    color: var(--text-dark); /* Dark text on light button */
    text-decoration: none;
    border-radius: var(--border-radius-sm);
    font-weight: 500;
    transition: background-color 0.3s ease, color 0.3s ease;
    text-align: center;
    margin-top: auto;
}
.section.bg-dark-textured .solution-card .solution-card-button {
    /* Ensure button stands out on dark cards if default is not suitable */
    /* The default .solution-card-button style might be fine. Add overrides if needed. */
    /* Example:
    background-color: var(--primary-color);
    color: var(--text-light);
    */
}
.solution-card-button:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
}
.section.bg-dark-textured .solution-card .solution-card-button:hover {
    /* Example:
    background-color: #0056b3;
    */
}


/* ==========================================================================
   Our Industries Module - (modules/our-industries.html)
   ========================================================================== */
.industries .industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
}
.industry-item {
    background: var(--bg-white);
    padding: 2rem 1rem;
    border-radius: var(--border-radius-md);
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid #e0e0e0;
}
.industry-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
    background-color: var(--primary-color);
    color: var(--text-light);
}
.industry-item i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
    color: var(--primary-color);
    transition: color 0.3s ease;
}
.industry-item:hover i {
    color: var(--text-light);
}
.industry-item span {
    font-weight: 600;
    font-size: 0.95rem;
    display: block;
}

/* ==========================================================================
   CTA Module - (modules/cta.html)
   ========================================================================== */
.cta-section {
    padding: 5rem 0;
    background: var(--primary-gradient);
    color: var(--text-light);
    text-align: center;
}
.cta-section h2 {
    font-size: clamp(2.2rem, 5vw, 2.8rem);
    margin-bottom: 1.5rem;
    font-weight: 700;
}
.cta-section p {
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}
.cta-section .cta-button {
    background: var(--text-light);
    color: var(--primary-color);
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}
.cta-section .cta-button:hover {
    background: #e9ecef;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* ==========================================================================
   Footer Module - (modules/footer.html)
   ========================================================================== */
.footer {
    background: var(--text-dark);
    color: #bdc3c7;
    padding: 5rem 0 2.5rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}
.footer-section h4 {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-size: 1.25rem;
    font-weight: 600;
}
.footer-section.footer-about .footer-logo-text {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 1rem;
}
.footer-section p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0.75rem;
}
.footer-section p i {
    margin-right: 0.5rem;
    color: var(--primary-color);
}
.footer-section ul { list-style: none; padding-left: 0; }
.footer-section ul li { margin-bottom: 0.8rem; }
.footer-section ul li a, .footer-section p a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
}
.footer-section ul li a:hover, .footer-section p a:hover {
    color: var(--text-light);
    padding-left: 5px;
}
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}
.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}
.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px) scale(1.1);
}
.footer-bottom {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 1px solid #3e4c5a;
    color: #95a5a6;
    font-size: 0.9rem;
}
.footer-bottom p { margin-bottom: 0.5rem; }
.footer-bottom a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-bottom a:hover { color: var(--text-light); }

/* ==========================================================================
   Animations & Scroll Progress
   ========================================================================== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}
.animate-on-scroll {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275), transform 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: var(--primary-color);
    z-index: 1001;
    transition: width 0.05s ease-out;
}

/* ==========================================================================
   About Page, Contact Page, Service Page Template Styles
   ========================================================================== */
/* --- Styles for About Page --- */
.about-page-hero {
    background: var(--primary-gradient);
    color: var(--text-light);
    padding-bottom: 4rem;
    padding-left: 2rem;
    padding-right: 2rem;
    text-align: center;
}
.about-page-hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
    color: var(--text-light);
}
.about-page-hero .section-description {
    color: var(--text-light-secondary);
}
.about-page-content {
    padding-top: 4rem;
    padding-bottom: 4rem;
}
.about-page-content .container {
    max-width: 900px;
}
.about-section {
    margin-bottom: 3rem;
}
.about-section h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--light-accent-color);
    font-weight: 600;
}
.about-section p,
.about-section ul {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 1rem;
}
.about-section ul {
    list-style-type: disc;
    list-style-position: outside;
    padding-left: 20px;
}
.about-section ul li {
     margin-bottom: 0.5rem;
}
.about-section ul li strong {
    color: var(--text-dark);
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}
.team-member-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.team-member-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}
.team-member-card img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
    border: 4px solid var(--primary-color);
}
.team-member-card h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 0.35rem;
    font-weight: 600;
}
.team-member-card p.title {
    font-size: 0.95rem;
    color: var(--secondary-color);
}

/* --- Styles for Contact Page --- */
.contact-content-area {
    padding-top: 4rem;
    padding-bottom: 4rem;
}
.contact-content-area .container {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.contact-details-section h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--light-accent-color);
    text-align: center;
    font-weight: 600;
}
.contact-details-section h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}
.contact-details-section p {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 1.2rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
}
.contact-details-section p i {
    margin-right: 1rem;
    color: var(--primary-color);
    width: 22px;
    font-size: 1.2rem;
    text-align: center;
}
.contact-details-section p a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}
.contact-details-section p a:hover {
    text-decoration: underline;
}
.map-container {
    margin-top: 3rem;
    height: 400px;
    background: var(--light-accent-color);
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    border: 1px solid #ddd;
}

/* --- Styles for Generic Service Pages --- */
.service-page-hero {
    background: var(--primary-gradient);
    color: var(--text-light);
    padding-bottom: 4rem;
    padding-left: 2rem;
    padding-right: 2rem;
    text-align: center;
}
.service-page-hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
    color: var(--text-light);
}
.service-page-hero .section-description {
    color: var(--text-light-secondary);
}
.service-page-content {
    padding-top: 4rem;
    padding-bottom: 4rem;
}
.service-page-content .container {
    max-width: 900px;
}
.service-section {
    margin-bottom: 3rem;
}
.service-section h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--light-accent-color);
    font-weight: 600;
}
.service-section h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}
.service-section p,
.service-section ul {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 1rem;
}
.service-section ul {
    list-style-type: disc;
    list-style-position: outside;
    padding-left: 20px;
}
.service-section ul li {
    margin-bottom: 0.5rem;
}
.service-key-features {
    background-color: var(--bg-light);
    padding: 2.5rem;
    border-radius: var(--border-radius-md);
    margin-top: 2rem;
    border: 1px solid var(--light-accent-color);
}
.service-key-features ul {
    padding-left: 0;
    list-style-type: none;
}
.service-key-features ul li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}
.service-key-features ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 1.1rem;
}
.service-cta-section {
    text-align: center;
    margin-top: 3rem;
    padding: 2.5rem;
    background-color: var(--light-accent-color);
    border-radius: var(--border-radius-md);
}
.service-cta-section h2 {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-size: 1.8rem;
}
.service-cta-section p {
    margin-bottom: 1.5rem;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 992px) {
    /* No general overrides needed here with current layout */
}

@media (max-width: 768px) {
    .navbar { padding: 0.75rem 0; }
    .navbar.scrolled { padding: 0.75rem 0; }
    .logo { font-size: 1.2rem; }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        height: 100vh;
        flex-direction: column;
        background-color: var(--bg-white);
        width: 80%;
        max-width: 300px;
        text-align: left;
        transition: left 0.35s cubic-bezier(0.23, 1, 0.32, 1);
        box-shadow: 5px 0 25px rgba(0,0,0,0.15);
        padding: 5rem 2rem 2rem;
        gap: 1.5rem;
        z-index: 999;
    }
    .nav-menu.active { left: 0; }

    .nav-menu .nav-link,
    .navbar.scrolled .nav-menu .nav-link,
    .navbar:not(.scrolled) .nav-menu .nav-link {
        color: var(--text-dark) !important;
        display: block;
        font-size: 1.1rem;
        padding: 0.8rem 0;
    }
    .nav-menu .nav-link::after { display: none; }

    .hamburger {
        display: flex;
        z-index: 1001;
        position: relative;
    }
    .hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .hero { padding-top: var(--navbar-height-scrolled-mobile); }
    .hero h1 { font-size: 2.2rem; }
    .hero p { font-size: 1rem; }
    .section-title { font-size: 2rem; }
    .section-description { font-size: 1rem; }

    .comprehensive-services-grid,
    .solutions-grid {
        grid-template-columns: 1fr;
    }
    .industries-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 1rem;
    }
    .who-we-are .content-section {
        flex-direction: column;
        text-align: center;
    }
    .who-we-are .content-image img {
        margin-top: 2rem;
    }
    .who-we-are .content-text { order: 1; }
    .who-we-are .content-image { order: 2; }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-section ul { padding-left: 0; }
    .footer-section.footer-about, .footer-section {
        align-items: center;
        display: flex;
        flex-direction: column;
    }
    .social-links { justify-content: center; }

    .page-content-after-fixed-header {
        padding-top: var(--navbar-height-scrolled-mobile);
    }

    .about-page-hero h1, .service-page-hero h1 {
        font-size: clamp(2rem, 6vw, 2.8rem);
    }
    .about-page-content .container,
    .contact-content-area .container,
    .service-page-content .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .about-section h2, .service-section h2, .contact-details-section h2 {
        font-size: 1.8rem;
    }
    .about-section h3, .service-section h3, .contact-details-section h3 {
        font-size: 1.3rem;
    }
    .about-section p, .about-section ul,
    .service-section p, .service-section ul,
    .contact-details-section p {
        font-size: 1rem;
    }
}