﻿/* ===============================
       PAGE TITLE (Hero)
    ================================ */

/* Add space between breadcrumbs and main content */
.page-title + .section {
    margin-top: 52px;
}

.page-title {
    margin-bottom: 32px;
}

    .page-title .heading {
        padding: 72px 0 56px;
    }

    .page-title .heading-title {
        font-size: 2.4rem;
        font-weight: 600;
        letter-spacing: 0.3px;
    }

    .page-title .heading p {
        margin-top: 18px;
        font-size: 1.05rem;
        font-weight: 400;
        color: rgba(255, 255, 255, 0.8);
        line-height: 1.6;
    }

/* ===============================
       BREADCRUMBS
    ================================ */

.breadcrumbs {
    background: rgba(255, 255, 255, 0.02);
    padding: 14px 0;
}

    .breadcrumbs ol {
        margin: 0;
        padding: 0;
        list-style: none;
        display: flex;
        gap: 8px;
        font-size: 0.85rem;
    }

    .breadcrumbs a {
        color: #22c55e;
        text-decoration: none;
    }

    .breadcrumbs .current {
        color: rgba(255, 255, 255, 0.6);
    }

/* ===============================
       MAIN SECTION LAYOUT
    ================================ */

.section {
    padding-top: 48px;
    padding-bottom: 80px;
}

    .section .row {
        align-items: flex-start;
    }

    /* ===============================
       HEADINGS & TEXT
    ================================ */

    .section h2 {
        font-size: 1.9rem;
        font-weight: 600;
        margin-bottom: 14px;
    }

    .section h4 {
        font-size: 1.15rem;
        font-weight: 600;
        margin-top: 28px;
        margin-bottom: 12px;
    }

    .section .lead {
        font-size: 1.05rem;
        font-weight: 500;
        margin-bottom: 10px;
        color: rgba(255, 255, 255, 0.9);
        line-height: 1.7;
    }

    .section p {
        font-size: 0.95rem;
        line-height: 1.75;
        color: rgba(255, 255, 255, 0.75);
    }

    /* ===============================
       LIST STYLES
    ================================ */

    .section ul {
        padding-left: 0;
        margin-top: 16px;
    }

        .section ul li {
            list-style: none;
            position: relative;
            padding-left: 22px;
            margin-bottom: 8px;
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.85);
        }

            .section ul li::before {
                content: "✔";
                position: absolute;
                left: 0;
                top: 0;
                color: #22c55e;
                font-weight: 600;
            }

/* ===============================
       RIGHT SIDE CARDS
    ================================ */

.service-card,
.innovation-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 14px;
    padding: 22px 24px;
    margin-bottom: 16px;
}

    .service-card h4,
    .innovation-card h4 {
        font-size: 1.1rem;
        font-weight: 600;
        margin-bottom: 12px;
    }

    .service-card ul li {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }

/* ===============================
       RESPONSIVE TWEAKS
    ================================ */

@@media (max-width: 991px) {

    .page-title .heading {
        padding: 56px 0 42px;
    }

    .page-title .heading-title {
        font-size: 2rem;
    }

    .section {
        padding-top: 36px;
        padding-bottom: 64px;
    }

    .service-card {
        margin-top: 32px;
    }
}

/* Reduce gap before first section heading */
.section {
    padding-top: 10px; /* was 48px */
}

    /* Remove extra top margin from first heading */
    .section h2 {
        margin-top: 0;
    }

/* Optional: tighten space under breadcrumbs */
.page-title {
    margin-bottom: 10px; /* was 32px */
}