        body {
            font-family: 'Inter', sans-serif;
        }

        /* ================= HERO ================= */
        .industries-hero {
            background: #ff6a2a;
            min-height: 420px;
        }

        .industries-hero .row {
            min-height: 420px;
        }

        .hero-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* ================= CARD ================= */
        .industry-card {
            background: #fff;
            border-radius: 50px;
            border: 1px solid #ececec;
            margin-bottom: 60px;
            overflow: hidden;
            max-width: 1140px;

        }

        .industry-row {
            display: flex;
            align-items: stretch;
        }

        .industry-row.reverse {
            flex-direction: row-reverse;
        }


        .industry-img-col {
            flex: 0 0 360px;
            overflow: hidden;
        }

        .industry-row:not(.reverse) .industry-img-col {
            border-radius: 50px 0 0 50px;
        }

        .industry-row.reverse .industry-img-col {
            border-radius: 0 50px 50px 0;
        }


        .industry-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }


        .industry-content {
            flex: 1;
            padding: 40px;
            display: flex;
            flex-direction: column;

        }

        .industry-title {
            font-size: 28px;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .industry-list {
            list-style: none;
            padding-left: 0;

            display: grid;
            grid-template-columns: 1fr 1fr;
            grid-auto-flow: column;

            grid-template-rows: repeat(7, auto);

            gap: 10px 20px;
            max-height: 200px;

            overflow: visible;

        }

        .industry-list li {
            font-size: 15px;
            margin-bottom: 0;
        }

        .industry-list li::before {
            content: "✓";
            color: #ff6a2a;
            font-weight: bold;
            margin-right: 10px;
        }


        .overlap-section {
            margin-top: -180px;
            position: relative;
            z-index: 2;
            padding-bottom: 80px;
        }


        @media (max-width:768px) {

            .industry-row,
            .industry-row.reverse {
                flex-direction: column;
            }

            .industry-img-col {
                height: 220px;
                border-radius: 36px 36px 36px 36px !important;
            }

            .industry-list {
                columns: 1;
            }
        }

        /* ================= TABLET & MOBILE ONLY ================= */
@media (max-width: 991px) {

    /* Remove hero overlap */
    .overlap-section {
        margin-top: 0;
        padding-top: 40px;
    }

    .industries-hero h1,
    .industries-hero p {
        text-align: center;
    }

    /* Remove card look */
    .industry-card {
        background: transparent;
        border: none;
        border-radius: 0;
        box-shadow: none;
        overflow: visible;
        margin-bottom: 50px;
    }

    /* Stack layout vertically */
    .industry-row,
    .industry-row.reverse {
        display: flex;
        flex-direction: column;
    }

    /* CONTENT ON TOP */
    .industry-content {
        order: 1;
        padding: 0 0 20px 0;
    }

    /* IMAGE AT BOTTOM */
    .industry-img-col {
        order: 2;
        width: 100%;
        height: auto;
        border-radius: 36px !important;
    }

    .industry-img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }

    /* Single column list */
    .industry-list {
        display: block;
        max-height: none;
    }

    /* Footer */
footer {
    background: #000;
    color: white;
}

footer h3 {
    font-weight: 600;
    font-size: 18px;
}

footer p {
    color: #aaa;
    line-height: 1.8;
}

footer a {
    color: #999;
    transition: color 0.3s;
    padding: 5px 0;
    display: inline-block;
}

footer a:hover {
    color: var(--primary-orange);
}

.footer-bottom {
    border-top: 1px solid #333 !important;
}

.footer-bottom p {
    color: #999;
    margin: 0;
}
.footer-availability h2 {
    font-size: 20px; /* Same as h4 */
    font-weight: 500;
    margin-bottom: 1rem;
}
.footer-brand h3 {
    font-size: 1.5rem; /* Same as h2 */
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-col-title {
    font-size: 1.125rem; /* Same as h5 */
    font-weight: 600;
    margin-bottom: 1rem;
}
.social-icon {
    width: 42px;
    height: 42px;
    background: #2a2a2a;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white !important;
    text-decoration: none;
    transition: all 0.3s;
}

.social-icon:hover {
    background: var(--primary-orange);
    transform: translateY(-3px);
}


}

