﻿/* Page-specific overrides for OurProcess / AI landing pages */

/* Full-width section layout used by OurProcess / AILandingPage */
.section {
    width: 100vw; /* Stretch full width */
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 5rem 0;
}

    .section .hero-content,
    .section .text-block,
    .section .why-list {
        max-width: 1100px; /* Center content */
        margin: 0 auto;
        padding: 0 1.5rem; /* Side breathing room */
    }

/* Hero + Services Layout */
.hero-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap; /* Responsive stacking */
    gap: 2.5rem;
}

.text-block {
    flex: 1 1 450px;
}

/* Image helper used on these pages */
.responsive {
    max-width: 480px;
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    object-fit: cover;
}

/* Text + Button Styles */
.text-center {
    text-align: center;
}

h1, h2, h3 {
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: #1a1a1a;
}

p {
    color: #444;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Button visual used on these landing pages */
.btn-primary {
    display: inline-block;
    background: #007bff;
    color: white;
    padding: 0.75rem 1.75rem;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease;
}

    .btn-primary:hover {
        background: #0056b3;
        transform: translateY(-2px);
    }

/* Dark-mode landing adjustments */
body.dark-mode .landing-section {
    background-color: #000 !important;
    color: #fff !important;
}

body.dark-mode .landing-section-alt {
    background-color: #212020 !important;
    color: #fff !important;
}

body.dark-mode .landing-section,
body.dark-mode .landing-section-alt {
    background-color: #212020 !important;
    color: #fff !important;
}

    body.dark-mode .landing-section h1,
    body.dark-mode .landing-section h2,
    body.dark-mode .landing-section h3,
    body.dark-mode .landing-section p,
    body.dark-mode .landing-section a,
    body.dark-mode .landing-section .hero-subtext,
    body.dark-mode .landing-section-alt h1,
    body.dark-mode .landing-section-alt h2,
    body.dark-mode .landing-section-alt h3,
    body.dark-mode .landing-section-alt p,
    body.dark-mode .landing-section-alt a {
        color: #fff !important;
    }

    body.dark-mode .landing-section-alt .hero-subtext {
        color: #fff !important;
    }

/* Industry list helpers */
.industry-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.industry-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.industry-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 0.5rem;
    flex-shrink: 0;
}

.industry-text strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    color: #007bff !important;
}

.industry-text p {
    margin: 0;
    color: #555;
}

/* Responsive: stack image above text on smaller screens */
@media (max-width: 768px) {
    .industry-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .industry-img {
        width: 100px;
        height: 100px;
        margin-bottom: 0.5rem;
    }
}

/* Why list dark-mode color tweaks */
body.dark-mode .why-item span {
    color: #fff !important;
}

body.dark-mode .why-item strong {
    color: #00aaff !important;
}

#why .why-card.why-item {
    display: block !important;
    cursor:auto;
}

    #why .why-card.why-item strong {
        display: block !important;
        width: 100%;
        font-size: 1.2rem;
        line-height: 1.3;
        margin: 0 0 0.75rem 0;
        color: #007bff;
        font-weight: 700;
    }

    #why .why-card.why-item span {
        display: block !important;
        width: 100%;
        line-height: 1.6;
        margin: 0;
        color: #444;
    }
