:root {
    /* Layout */
    --container: 1100px;
    --side-pad: 24px;

    /* Spacing scale */
    --space-2: 2px;
    --space-4: 4px;
    --space-8: 8px;
    --space-12: 12px;
    --space-16: 16px;
    --space-24: 24px;
    --space-32: 32px;
    --space-48: 48px;
    --space-64: 64px;
}

/* Centered container */
.container {
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: var(--side-pad);
}

nav {
    width: 100%;
    background: #23292e;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
}

nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    height: 60px;
}

nav li {
    margin: 0 1.5rem;
}

nav a,
.cta-btn,
.no-underline {
    text-decoration: none !important;
    color: #e6e6e6;
}

nav a:hover,
nav a:focus,
nav a.active {
    color: #00e38c;
    border-bottom: 2px solid #00e38c;
    text-decoration: none !important;
}

.cta-btn,
.cta-btn:hover,
.cta-btn:focus {
    text-decoration: none !important;
}

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 0;
    padding: 0;
    padding-top: 60px;
    background: #181c1f;
    color: #e6e6e6;
}

.hero,
header.hero {
    background: #1a2227;
    color: #fff;
    padding: 4.5rem 1rem 2.5rem 1rem;
    text-align: center;
    margin-top: 0;
    position: relative;
}

.logo-frame {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #23292e;
    border-radius: 50%;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
    padding: 1rem;
}

.logo-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

header h1,
.hero h1 {
    margin: 0 0 0.5rem 0;
    font-size: 2.2rem;
    letter-spacing: 1px;
    color: #fff;
}

.tagline {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    font-weight: 400;
    color: #b6ffda;
}

.cta-btn {
    display: inline-block;
    background: #00e38c;
    color: #181c1f;
    padding: 0.7rem 2rem;
    border-radius: 6px;
    font-size: 1.08rem;
    font-weight: 600;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: background 0.2s, color 0.2s;
    margin-top: 0.7rem;
}

.cta-btn:hover,
.cta-btn:focus {
    background: #00b86b;
    color: #fff;
}

main {
    max-width: var(--container);
    margin: 2.5rem auto 2rem;
    background: #23292e;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    padding: var(--space-48) var(--space-32) var(--space-32);
    min-height: 60vh;
}

section {
    margin-bottom: 2.7rem;
}

section h2 {
    color: #00e38c;
    margin-top: 0;
    font-size: 1.4rem;
    border-bottom: 2px solid #2e353b;
    padding-bottom: 0.3rem;
}

ul {
    margin: 0.5rem 0 0.5rem 1.5rem;
    padding: 0;
}

li {
    margin-bottom: 0.4rem;
    line-height: 1.6;
}

footer {
    background: #181c1f;
    color: #b6ffda;
    text-align: center;
    padding: 1rem 0;
    font-size: 0.95rem;
    margin-top: 2rem;
}

/* Footer */
.site-footer {
    background: #121518;
    color: #e6e6e6;
}

.footer-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: var(--space-32) var(--space-32);
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-32);
    text-align: left;
}

.footer-heading {
    margin: 0 0 0.6rem 0;
    font-size: 1.05rem;
    color: #00e38c;
}

.footer-blurb {
    margin: 0;
    color: #b6ffda;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    margin: 0.4rem 0;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 0.6rem;
}

.footer-linkedin {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #00e38c;
}

.footer-copy {
    text-align: center;
    margin-top: 1.6rem;
    color: #b6ffda;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 1px, 1px);
    white-space: nowrap;
    border: 0;
}

@media (max-width: 900px) {
    .footer-columns {
        grid-template-columns: 1fr;
    }
}

a {
    color: #00e38c;
    text-decoration: none;
    transition: color 0.2s;
}

a img,
img {
    max-width: 100%;
    height: auto;
}

.logo-badge {
    background: #ffffff;
    display: inline-block;
    padding: 6px 10px;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.logo-badge img {
    transition: transform 0.2s ease;
}

a.logo-badge:hover img {
    transform: scale(1.05);
}

a:hover {
    text-decoration: underline;
    color: #00b86b;
}

.service-icons,
.industries-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 1.2rem;
}

.service,
.industry {
    background: transparent;
    border-radius: 0;
    padding: 1.1rem 1.5rem;
    min-width: 140px;
    max-width: 140px;
    text-align: center;
    box-shadow: none;
    border: none;
    transition: none;
}

.service:hover,
.industry:hover {
    background: transparent;
    border-color: transparent;
}

.service .icon,
.industry span {
    font-size: 2.1rem;
    display: block;
    margin-bottom: 0.5rem;
}

.icon-img {
    width: 38px;
    height: 38px;
    margin-bottom: 0.5rem;
    filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(90deg);
}

.contact-footer {
    margin-bottom: 0.7rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    max-width: 400px;
    margin: 0 auto;
}

.contact-form input,
.contact-form textarea {
    background: #23292e;
    color: #e6e6e6;
    padding: 0.6rem;
    border: 1px solid #00e38c;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
}

.contact-form button {
    background: #00e38c;
    color: #181c1f;
    border: none;
    padding: 0.7rem 0;
    border-radius: 6px;
    font-size: 1.08rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.contact-form button:hover {
    background: #00b86b;
    color: #fff;
}

@media (max-width: 900px) {
    main {
        padding: 1.2rem;
    }

    .service-icons,
    .industries-icons {
        gap: 1rem;
    }
}

@media (max-width: 640px) {

    .hero,
    header.hero {
        padding: var(--space-32) var(--space-8) var(--space-16) var(--space-8);
        margin-top: 0;
    }

    main {
        padding: var(--space-24);
    }

    section h2 {
        font-size: 1.1rem;
        line-height: 1.25;
    }

    .service,
    .industry {
        min-width: 110px;
        padding: var(--space-12) var(--space-8);
    }
}

.hero-header-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.2rem;
    margin-bottom: 1.2rem;
}

.logo-frame.large-logo {
    width: 240px;
    height: 240px;
}

.hero-header-flex h1 {
    font-size: 2.3rem;
    margin: 0;
    color: #fff;
    text-align: left;
    line-height: 1.2;
}

@media (max-width: 700px) {
    .hero-header-flex {
        flex-direction: column;
        gap: 1.2rem;
    }

    .hero-header-flex h1 {
        text-align: center;
        font-size: 1.3rem;
    }

    .logo-frame.large-logo {
        width: 160px;
        height: 160px;
    }
}

/* Hero background overlay */
.hero {
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero>* {
    position: relative;
    z-index: 2;
}

/* About */
.about-content {
    display: flex;
    align-items: center;
    gap: var(--space-32);
}

.about-text {
    flex: 2;
}

.about-image {
    flex: 1;
    text-align: center;
}

.about-img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

/* Why choose us */
.why-choose-content {
    display: flex;
    align-items: center;
    gap: var(--space-32);
}

.why-choose-text {
    flex: 2;
}

.why-choose-image {
    flex: 1;
    text-align: center;
}

.why-choose-img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

/* Solutions hero */
.solutions-hero h1 {
    color: #00e38c;
    margin-bottom: 0.5rem;
}

.solutions-hero p {
    color: #b6ffda;
    font-size: 1.1rem;
    margin: 0;
}

/* Technical/Training/Software sections */
.technical-services,
.training-support,
.software-platforms {
    margin-bottom: 3rem;
}

.services-content,
.training-content,
.software-content {
    display: flex;
    align-items: center;
    gap: var(--space-32);
    background: #2d343b;
    padding: 2rem;
    border-radius: 6px;
    border: 1px solid #353c44;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.services-text,
.training-text,
.software-text {
    flex: 2;
}

.services-image,
.training-image,
.software-image {
    flex: 1;
    text-align: center;
}

.services-img,
.training-img,
.software-img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

/* Industries */
.industries-hero h1 {
    color: #00e38c;
    margin-bottom: 0.5rem;
}

.industries-hero p {
    color: #b6ffda;
    font-size: 1.1rem;
    margin: 0;
}

.industries-overview {
    margin-bottom: 3rem;
}

.industry-image {
    flex: 1;
    min-height: 200px;
    background: #1a2227;
    display: flex;
    align-items: center;
    justify-content: center;
}

.industry-img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

.industry-content {
    flex: 2;
    padding: 1.5rem;
}

.industry-content h2 {
    color: #00e38c;
    margin-top: 0;
    margin-bottom: 1rem;
}

.cross-industry-capabilities {
    margin-bottom: 3rem;
}

.capabilities-content {
    display: flex;
    align-items: center;
    gap: var(--space-32);
    background: #2d343b;
    padding: 2rem;
    border-radius: 6px;
    border: 1px solid #353c44;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.capabilities-text {
    flex: 2;
}

.capabilities-image {
    flex: 1;
    text-align: center;
}

.capabilities-img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

/* Services */
.services-hero h1 {
    color: #00e38c;
    margin-bottom: 0.5rem;
}

.services-hero p {
    color: #b6ffda;
    font-size: 1.1rem;
    margin: 0;
}

.service-section {
    margin-bottom: 3rem;
}

.service-content {
    display: flex;
    align-items: center;
    gap: var(--space-32);
    background: #2d343b;
    padding: 2rem;
    border-radius: 6px;
    border: 1px solid #353c44;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.service-text {
    flex: 2;
}

.service-image {
    flex: 1;
    text-align: center;
}

.service-img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

/* Responsive blocks */
@media (max-width: 900px) {

    .about-content,
    .why-choose-content,
    .services-content,
    .training-content,
    .software-content,
    .capabilities-content,
    .service-content {
        flex-direction: column;
        text-align: center;
    }

    .solution-card,
    .industry-card {
        flex-direction: column;
    }

    .solution-image,
    .industry-image {
        min-height: 150px;
    }

    .solutions-grid,
    .industry-details {
        gap: 1.5rem;
    }
}

@media (max-width: 600px) {

    .about-content,
    .why-choose-content,
    .services-content,
    .training-content,
    .software-content,
    .capabilities-content,
    .service-content {
        padding: 1.5rem;
    }

    .solution-content,
    .industry-content {
        padding: 1rem;
    }

    .solutions-hero,
    .industries-hero,
    .services-hero {
        padding: 1.5rem;
    }

    .solution-image,
    .industry-image {
        min-height: 120px;
    }
}

/* Mobile nav */
.mobile-nav-toggle {
    display: none;
    position: fixed;
    top: 15px;
    right: 15px;
    z-index: 1001;
    background: #00e38c;
    border: none;
    border-radius: 4px;
    padding: 8px;
    cursor: pointer;
    flex-direction: column;
    gap: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.mobile-nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: #181c1f;
    transition: all 0.3s ease;
}

.mobile-nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

@media (max-width: 900px) {
    .mobile-nav-toggle {
        display: flex;
    }

    body {
        padding-top: 0;
    }

    nav {
        position: fixed !important;
        top: 0 !important;
        left: auto !important;
        right: -100% !important;
        width: 280px !important;
        height: 100vh !important;
        background: #23292e !important;
        transition: right 0.3s ease !important;
        z-index: 1000 !important;
        box-shadow: -2px 0 8px rgba(0, 0, 0, 0.3) !important;
    }

    nav.active {
        right: 0 !important;
    }

    nav ul {
        flex-direction: column !important;
        height: auto !important;
        padding: 80px 2rem 2rem 2rem !important;
        justify-content: flex-start !important;
        align-items: flex-start !important;
    }

    nav li {
        margin: 1rem 0 !important;
        width: 100% !important;
    }

    nav a {
        display: block !important;
        padding: 0.8rem 1rem !important;
        border-radius: 6px !important;
        transition: background 0.2s !important;
        width: 100% !important;
    }

    nav a:hover {
        background: #353c44 !important;
        border-bottom: none !important;
    }

    body::after {
        content: '';
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
    }

    body.nav-open::after {
        opacity: 1;
        visibility: visible;
    }

    main {
        margin-top: 1rem;
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .about-content,
    .company-image-content,
    .future-content {
        flex-direction: column;
        text-align: center;
    }

    .solution-card,
    .industry-card {
        flex-direction: column;
    }

    .solution-image,
    .industry-image {
        min-height: 150px;
    }

    .solutions-grid,
    .industry-details {
        gap: 1.5rem;
    }
}

@media (max-width: 600px) {
    .mobile-nav-toggle {
        top: 10px;
        right: 10px;
    }

    .mobile-nav-toggle span {
        width: 18px;
        height: 2px;
    }

    nav {
        width: 260px;
    }

    nav ul {
        padding: 70px 1.5rem 1.5rem 1.5rem;
    }

    .about-content,
    .company-image-content,
    .future-content,
    .services-content,
    .training-content,
    .software-content,
    .capabilities-content,
    .service-content {
        padding: 1.5rem;
    }

    .solution-content,
    .industry-content {
        padding: 1rem;
    }

    .about-hero,
    .solutions-hero,
    .industries-hero,
    .services-hero {
        padding: 1.5rem;
    }

    .solution-image,
    .industry-image {
        min-height: 120px;
    }

    .info-card {
        padding: 1rem;
    }

    .company-image-content,
    .future-content {
        padding: 1.5rem;
    }
}

/* About page */
.about-hero h1 {
    color: #00e38c;
    margin-bottom: 0.5rem;
}

.about-hero p {
    color: #b6ffda;
    font-size: 1.1rem;
    margin: 0;
}

.about-main,
.company-info,
.company-image-section,
.future-sections {
    margin-bottom: 3rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.info-card {
    background: transparent;
    border-radius: 0;
    padding: 1.5rem;
    border: none;
    text-align: center;
    transition: none;
}

.info-card:hover {
    transform: none;
    box-shadow: none;
}

.info-icon {
    margin-bottom: 1rem;
}

.info-icon-img {
    width: 48px;
    height: 48px;
    filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(90deg);
}

.info-card h2 {
    color: #00e38c;
    margin-top: 0;
    margin-bottom: 1rem;
}

.company-image-content {
    display: flex;
    align-items: center;
    gap: var(--space-32);
    background: transparent;
    padding: 2rem;
    border-radius: 0;
    border: none;
}

.company-image {
    flex: 1;
    text-align: center;
}

.company-img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.company-image-text {
    flex: 2;
}

.company-image-text h2 {
    color: #00e38c;
    margin-top: 0;
    margin-bottom: 1rem;
}

.future-content {
    display: flex;
    align-items: center;
    gap: var(--space-32);
    background: transparent;
    padding: 2rem;
    border-radius: 0;
    border: none;
    margin-bottom: 2rem;
}

.future-text {
    flex: 2;
}

.future-text h2 {
    color: #00e38c;
    margin-top: 0;
    margin-bottom: 1rem;
}

.future-image {
    flex: 1;
    text-align: center;
}

.future-img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

/* Remove ALL hover effects from non-clickable elements */
.industry-card:hover,
.solution-card:hover,
.service-content:hover,
.services-content:hover,
.training-content:hover,
.software-content:hover,
.capabilities-content:hover {
    transform: none !important;
    box-shadow: none !important;
    border-color: #353c44 !important;
}

.industry-card,
.solution-card,
.service-content,
.services-content,
.training-content,
.software-content,
.capabilities-content {
    transition: none !important;
}

/* Card layout fixes */
.solution-card,
.industry-card {
    display: flex;
    background: #2d343b;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #353c44;
    min-height: 200px;
}

.solution-image,
.industry-image {
    flex: 1;
    min-height: 200px;
    max-height: 200px;
    background: #1a2227;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.solution-img,
.industry-img {
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.solution-content,
.industry-content {
    flex: 2;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Desktop layout corrections */
@media (min-width: 901px) {

    .solution-card,
    .industry-card {
        min-height: auto;
        height: auto;
    }

    .solution-image,
    .industry-image {
        min-height: 200px;
        max-height: none;
        height: auto;
    }

    .solution-img,
    .industry-img {
        height: auto;
        max-height: none;
    }

    .solution-content,
    .industry-content {
        justify-content: flex-start;
    }

    .services-content,
    .training-content,
    .software-content,
    .capabilities-content {
        margin-bottom: 3rem;
    }

    .services-text,
    .training-text,
    .software-text,
    .capabilities-text {
        min-width: 0;
    }

    .services-image,
    .training-image,
    .software-image,
    .capabilities-image {
        min-width: 0;
    }
}

/* Unified hero container */
.solutions-hero,
.industries-hero,
.services-hero,
.about-hero {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #2d343b 0%, #23292e 100%);
    border-radius: 6px;
    border: 1px solid #353c44;
    position: relative;
    z-index: 1;
}

/* Unified spacing for grids */
.solutions-grid,
.industry-details {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-32);
    margin-bottom: 3rem;
}

.technical-services,
.training-support,
.software-platforms,
.industries-overview,
.cross-industry-capabilities {
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

/* Reduced corners & shadows for calmer look */
.solution-card,
.industry-card,
.service-content,
.services-content,
.training-content,
.software-content,
.capabilities-content,
.info-card,
.company-image-content,
.future-content {
    border-radius: 6px;
}

.solution-card,
.industry-card,
.service-content,
.services-content,
.training-content,
.software-content,
.capabilities-content,
.info-card,
.company-image-content,
.future-content {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Mobile header sizes */
@media (max-width: 900px) {

    header h1,
    .hero h1 {
        font-size: 1.8rem;
    }

    .tagline {
        font-size: 1rem;
    }

    .hero-header-flex h1 {
        font-size: 1.6rem;
    }
}

@media (max-width: 600px) {

    header h1,
    .hero h1 {
        font-size: 1.5rem;
    }

    .tagline {
        font-size: 0.9rem;
    }

    .hero-header-flex h1 {
        font-size: 1.3rem;
    }

    .about-hero h1,
    .solutions-hero h1,
    .industries-hero h1,
    .services-hero h1 {
        font-size: 1.4rem;
    }
}