
        :root {
            --green: #007a3d;
            --green-light: #009649;
            --blue: #005591;
            --navy: #0a192f;
            --gold: #c5a059;
            --grey-bg: #f4f6f5;
            --text-dark: #1a1a1a;
            --text-muted: #6b7280;
            --border: rgba(0,0,0,0.07);
            --ease: cubic-bezier(0.165, 0.84, 0.44, 1);
        }
        
        
html {
    width: 100% !important;
    overflow-x: hidden !important;
}


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

        html { scroll-behavior: smooth; }

        body {
            font-family: 'Barlow', sans-serif;
            color: var(--text-dark);
            background: #fff;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, .navbar-brand {
            font-family: 'Barlow Condensed', sans-serif;
            letter-spacing: -0.5px;
        }

        /* ── NAVBAR ── */
        .navbar {
            padding: 0;
            background: #fff;
            border-bottom: 1px solid var(--border);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .navbar-inner {
            display: flex;
            align-items: stretch;
            justify-content: space-between;
            height: 72px;
        }

        .navbar-brand {
            display: flex;
            align-items: center;
            padding: 0 30px 0 0;
            border-right: 1px solid var(--border);
        }

        .nav-center {
            display: flex;
            align-items: center;
            flex: 1;
            padding: 0 20px;
        }

        .nav-link {
            font-family: 'Barlow Condensed', sans-serif;
            font-weight: 600;
            font-size: 0.95rem;
            letter-spacing: 1px;
            color: var(--navy) !important;
            text-transform: uppercase;
            padding: 0 18px !important;
            height: 72px;
            display: flex;
            align-items: center;
            border-bottom: 3px solid transparent;
            transition: all 0.25s;
        }

        .nav-link:hover {
            color: var(--green) !important;
            border-bottom-color: var(--green);
        }

        .nav-right {
            display: flex;
            align-items: center;
            gap: 0;
            border-left: 1px solid var(--border);
        }

        .nav-contact-btn {
            height: 72px;
            display: flex;
            align-items: center;
            padding: 0 25px;
            background: transparent;
            border: none;
            border-right: 1px solid var(--border);
            font-family: 'Barlow Condensed', sans-serif;
            font-weight: 700;
            font-size: 0.9rem;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: var(--navy);
            text-decoration: none;
            transition: 0.25s;
        }

        .nav-contact-btn:hover { background: var(--grey-bg); color: var(--green); }

        .nav-portal-btn {

            display: flex;
            align-items: center;
            padding: 0 30px;
            background: var(--green);
            border: none;
            font-family: 'Barlow Condensed', sans-serif;
            font-weight: 700;
            font-size: 0.9rem;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: #fff;
            text-decoration: none;
            transition: 0.25s;
        }

        .nav-portal-btn:hover { background: var(--green-light); color: #fff; }

        .navbar-toggler {
            border: none;
            padding: 0 20px;
            height: 72px;
            border-radius: 0;
        }

        /* ── HERO ── */
        .hero {
            position: relative;
            height: 92vh;
            min-height: 600px;
            background: url('https://images.unsplash.com/photo-1516937941344-00b4e0337589?auto=format&fit=crop&q=80&w=2070') center/cover no-repeat;
            display: flex;
            align-items: flex-end;
            padding-bottom: 80px;
            overflow: hidden;
        }

        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(10,25,47,0.97) 0%, rgba(10,25,47,0.4) 60%, transparent 100%);
        }

        .hero-content { position: relative; z-index: 2; }

        .hero-label {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(255,255,255,0.08);
            border: 1px solid rgba(255,255,255,0.15);
            color: rgba(255,255,255,0.8);
            font-family: 'Barlow Condensed', sans-serif;
            font-weight: 600;
            font-size: 0.8rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            padding: 8px 18px;
            border-radius: 2px;
            margin-bottom: 28px;
        }

        .hero-label .dot {
            width: 6px;
            height: 6px;
            background: var(--green-light);
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.5; transform: scale(0.7); }
        }

        .hero h1 {
            font-size: clamp(3rem, 7vw, 6.5rem);
            font-weight: 900;
            color: #fff;
            line-height: 0.95;
            margin-bottom: 30px;
            text-transform: uppercase;
        }

        .hero h1 span { color: var(--green-light); }

        .hero-sub {
            font-size: 1.1rem;
            color: rgba(255,255,255,0.65);
            max-width: 520px;
            font-weight: 300;
            line-height: 1.7;
            margin-bottom: 40px;
        }

        .hero-divider {
            width: 50px;
            height: 3px;
            background: var(--green);
            margin-bottom: 24px;
        }

        .hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

        .btn-primary-custom {
            background: var(--green);
            color: #fff;
            font-family: 'Barlow Condensed', sans-serif;
            font-weight: 700;
            font-size: 0.9rem;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            padding: 16px 38px;
            border: 2px solid var(--green);
            border-radius: 2px;
            text-decoration: none;
            transition: all 0.3s var(--ease);
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .btn-primary-custom:hover {
            background: var(--green-light);
            border-color: var(--green-light);
            color: #fff;
            transform: translateY(-2px);
        }

        .btn-outline-custom {
            background: transparent;
            color: #fff;
            font-family: 'Barlow Condensed', sans-serif;
            font-weight: 700;
            font-size: 0.9rem;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            padding: 16px 38px;
            border: 2px solid rgba(255,255,255,0.3);
            border-radius: 2px;
            text-decoration: none;
            transition: all 0.3s var(--ease);
        }

        .btn-outline-custom:hover {
            border-color: #fff;
            color: #fff;
            transform: translateY(-2px);
        }

        /* ── STATS BAR ── */
        .stats-bar {
            background: var(--green);
            padding: 0;
        }

        .stats-bar .stat-item {
            padding: 36px 20px;
            border-right: 1px solid rgba(255,255,255,0.12);
            text-align: center;
        }

        .stats-bar .stat-item:last-child { border-right: none; }

        .stat-number {
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 2.8rem;
            font-weight: 900;
            color: #fff;
            line-height: 1;
            margin-bottom: 6px;
        }

        .stat-label {
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: rgba(255,255,255,0.65);
        }

        /* ── SECTION COMMONS ── */
        .section-pad { padding: 110px 0; }

        .section-eyebrow {
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--green);
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .section-eyebrow::before {
            content: '';
            display: block;
            width: 30px;
            height: 2px;
            background: var(--green);
        }

        .section-title {
            font-family: 'Barlow Condensed', sans-serif;
            font-size: clamp(2.2rem, 4vw, 3.5rem);
            font-weight: 900;
            color: var(--navy);
            text-transform: uppercase;
            line-height: 1.05;
            margin-bottom: 20px;
        }

        .section-sub {
            font-size: 1rem;
            color: var(--text-muted);
            line-height: 1.7;
            font-weight: 300;
            max-width: 520px;
        }

        /* ── ABOUT ── */
        .about-section { background: #fff; }

        .about-img-wrap {
            position: relative;
        }

        .about-img-wrap img {
            width: 100%;
            height: 520px;
            object-fit: cover;
            border-radius: 4px;
        }

        .about-badge {
            position: absolute;
            bottom: -30px;
            right: -20px;
            background: var(--blue);
            color: #fff;
            padding: 30px 35px;
            border-radius: 4px;
            text-align: center;
            box-shadow: 0 20px 40px rgba(0,85,145,0.25);
        }

        .about-badge .big { font-family: 'Barlow Condensed', sans-serif; font-size: 3.5rem; font-weight: 900; line-height: 1; }
        .about-badge .small { font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase; opacity: 0.75; }

        .check-list { list-style: none; padding: 0; margin-bottom: 40px; }

        .check-list li {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 10px 0;
            border-bottom: 1px solid var(--border);
            font-size: 0.95rem;
            color: var(--navy);
            font-weight: 500;
        }

        .check-list li i { color: var(--green); font-size: 0.85rem; }

        /* ── PRODUCTS GRID ── */
        .products-section { background: var(--grey-bg); }

        .product-card {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: 4px;
            padding: 40px 32px;
            position: relative;
            overflow: hidden;
            transition: all 0.4s var(--ease);
            height: 100%;
        }

        .product-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--green);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s var(--ease);
        }

        .product-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 30px 60px rgba(0,0,0,0.1);
        }

        .product-card:hover::after { transform: scaleX(1); }

        .product-icon {
            width: 64px;
            height: 64px;
            background: rgba(0,122,61,0.08);
            border-radius: 2px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.6rem;
            color: var(--green);
            margin-bottom: 28px;
        }

        .product-card h5 {
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 1.6rem;
            font-weight: 800;
            text-transform: uppercase;
            color: var(--navy);
            margin-bottom: 14px;
        }

        .product-card p {
            font-size: 0.9rem;
            color: var(--text-muted);
            line-height: 1.7;
            margin-bottom: 24px;
        }

        .product-link {
            font-family: 'Barlow Condensed', sans-serif;
            font-weight: 700;
            font-size: 0.85rem;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--green);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: gap 0.3s;
        }

        .product-card:hover .product-link { gap: 14px; }

        /* ── SUPPLY MODES ── */
        .supply-section { background: #fff; }

        .supply-card {
            border: 1px solid var(--border);
            border-radius: 4px;
            padding: 48px 40px;
            position: relative;
            overflow: hidden;
            transition: all 0.4s var(--ease);
            height: 100%;
            background: #fff;
        }

        .supply-card:hover {
            border-color: var(--green);
            transform: translateY(-6px);
            box-shadow: 0 25px 50px rgba(0,122,61,0.08);
        }

        .supply-num {
            position: absolute;
            top: 30px;
            right: 30px;
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 5rem;
            font-weight: 900;
            color: rgba(0,0,0,0.04);
            line-height: 1;
        }

        .supply-icon {
            width: 56px;
            height: 56px;
            background: rgba(0,122,61,0.08);
            border-radius: 2px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            color: var(--green);
            margin-bottom: 28px;
        }

        .supply-card h4 {
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 1.5rem;
            font-weight: 800;
            text-transform: uppercase;
            color: var(--navy);
            margin-bottom: 14px;
        }

        .supply-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }

        /* ── INDUSTRIES ── */
        .industries-section { background: var(--navy); }

        .industry-card {
            position: relative;
            overflow: hidden;
            border-radius: 4px;
            height: 320px;
            display: block;
            text-decoration: none;
        }

        .industry-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.7s var(--ease);
            filter: brightness(0.65);
        }

        .industry-card:hover img {
            transform: scale(1.08);
            filter: brightness(0.5);
        }

        .industry-overlay {
            position: absolute;
            inset: 0;
            padding: 32px;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
        }

        .industry-tag {
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--green-light);
            margin-bottom: 8px;
        }

        .industry-card h4 {
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 1.8rem;
            font-weight: 900;
            color: #fff;
            text-transform: uppercase;
            margin-bottom: 8px;
        }

        .industry-card p { font-size: 0.85rem; color: rgba(255,255,255,0.65); line-height: 1.6; }

        /* ── SAFETY ── */
        .safety-section { background: var(--navy); }

        .safety-img {
            width: 100%;
            height: 500px;
            object-fit: cover;
            border-radius: 4px;
        }

        .safety-feature {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            padding: 28px 0;
            border-bottom: 1px solid rgba(255,255,255,0.07);
        }

        .safety-feature:last-child { border-bottom: none; }

        .safety-icon {
            width: 48px;
            height: 48px;
            min-width: 48px;
            background: rgba(0,122,61,0.2);
            border-radius: 2px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--green-light);
            font-size: 1.1rem;
        }

        .safety-feature h6 {
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 1rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: #fff;
            margin-bottom: 5px;
        }

        .safety-feature p { font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.6; margin: 0; }

        /* ── SOLUTIONS ── */
        .solutions-section { background: #fff; }

        .solution-item { position: relative; overflow: hidden; border-radius: 4px; }

        .solution-item img {
            width: 100%;
            height: 420px;
            object-fit: cover;
            transition: transform 0.8s var(--ease);
            display: block;
        }

        .solution-item:hover img { transform: scale(1.06); }

        .solution-float {
            background: #fff;
            padding: 36px;
            margin: -60px 30px 0;
            position: relative;
            z-index: 5;
            border-top: 4px solid var(--green);
            border-radius: 2px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.07);
            transition: transform 0.4s var(--ease);
        }

        .solution-item:hover .solution-float { transform: translateY(-8px); }

        .solution-float h4 {
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 1.5rem;
            font-weight: 800;
            text-transform: uppercase;
            color: var(--navy);
            margin-bottom: 12px;
        }

        .solution-float p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; }

        .arrow-link {
            font-family: 'Barlow Condensed', sans-serif;
            font-weight: 700;
            font-size: 0.85rem;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--green);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: gap 0.3s;
        }

        .solution-item:hover .arrow-link { gap: 14px; }

        /* ── GAS DEEP DIVE ── */
        .gas-section { background: var(--grey-bg); padding: 110px 0; }

        .gas-row {
            display: flex;
            align-items: center;
            gap: 80px;
            padding: 70px 0;
            border-bottom: 1px solid var(--border);
        }

        .gas-row:last-child { border-bottom: none; }

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

        .gas-img-wrap {
            flex: 0 0 55%;
            position: relative;
        }

        .gas-img-wrap img {
            width: 100%;
            height: 440px;
            object-fit: cover;
            border-radius: 4px;
        }

        .gas-serial {
            position: absolute;
            top: -30px;
            left: -20px;
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 10rem;
            font-weight: 900;
            color: rgba(0,122,61,0.06);
            line-height: 1;
            pointer-events: none;
        }

        .gas-row.reverse .gas-serial { left: auto; right: -20px; }

        .gas-info { flex: 1; }

        .gas-tag {
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--green);
            margin-bottom: 16px;
            display: block;
        }

        .gas-name {
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 3.8rem;
            font-weight: 900;
            text-transform: uppercase;
            color: var(--navy);
            line-height: 0.95;
            margin-bottom: 20px;
        }

        .gas-desc {
            font-size: 1rem;
            color: var(--text-muted);
            line-height: 1.8;
            border-left: 3px solid var(--blue);
            padding-left: 18px;
            margin-bottom: 32px;
        }

        .gas-specs {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .spec-box {
            background: #fff;
            padding: 18px 20px;
            border-radius: 2px;
            border: 1px solid var(--border);
        }

        .spec-box h6 {
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 0.95rem;
            font-weight: 800;
            text-transform: uppercase;
            color: var(--navy);
            margin-bottom: 4px;
        }

        .spec-box p { font-size: 0.8rem; color: var(--text-muted); margin: 0; }

        /* ── BENTO GALLERY ── */
        .gallery-section { background: #fff; padding: 110px 0; }

        .bento {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            grid-auto-rows: 320px;
            gap: 16px;
        }

        .bento-item {
            position: relative;
            overflow: hidden;
            border-radius: 4px;
            background: var(--grey-bg);
        }

        .bento-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s var(--ease);
            filter: brightness(0.8);
        }

        .bento-item:hover img { transform: scale(1.1); filter: brightness(0.6); }

        .bento-item.tall { grid-row: span 2; }
        .bento-item.wide { grid-column: span 2; }

        .bento-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(10,25,47,0.85) 0%, transparent 60%);
            padding: 28px;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            opacity: 0;
            transition: opacity 0.4s;
        }

        .bento-item:hover .bento-overlay { opacity: 1; }

        .bento-cat {
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            background: var(--green);
            color: #fff;
            padding: 4px 12px;
            border-radius: 2px;
            display: inline-block;
            margin-bottom: 10px;
            width: fit-content;
        }

        .bento-overlay h4 {
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 1.4rem;
            font-weight: 800;
            color: #fff;
            text-transform: uppercase;
            margin: 0;
        }

        /* ── GCC ── */
        .gcc-section { background: var(--grey-bg); padding: 90px 0; }

        .gcc-inner {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: 4px;
            padding: 60px;
        }

        .country-pill {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--grey-bg);
            border: 1px solid var(--border);
            border-radius: 50px;
            padding: 14px 28px;
            margin: 8px;
            font-family: 'Barlow Condensed', sans-serif;
            font-weight: 700;
            font-size: 1rem;
            color: var(--navy);
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s var(--ease);
            cursor: default;
        }

        .country-pill:hover {
            background: var(--green);
            border-color: var(--green);
            color: #fff;
            transform: translateY(-3px);
        }

        .country-pill i { color: var(--green); font-size: 0.75rem; transition: color 0.3s; }
        .country-pill:hover i { color: rgba(255,255,255,0.7); }

        /* ── BRANCHES ── */
        .branches-section { background: #fff; padding: 110px 0; }

        .branch-card {
            border: 1px solid var(--border);
            border-radius: 4px;
            padding: 36px;
            height: 100%;
            transition: all 0.4s var(--ease);
            position: relative;
            overflow: hidden;
        }

        .branch-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 0;
            background: var(--green);
            transition: height 0.4s var(--ease);
        }

        .branch-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0,0,0,0.07); }
        .branch-card:hover::before { height: 100%; }

        .branch-country {
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--green);
            margin-bottom: 10px;
        }

        .branch-card h5 {
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 1.3rem;
            font-weight: 800;
            text-transform: uppercase;
            color: var(--navy);
            margin-bottom: 18px;
        }

        .branch-info { list-style: none; padding: 0; margin: 0; }

        .branch-info li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            font-size: 0.87rem;
            color: var(--text-muted);
            padding: 8px 0;
            border-bottom: 1px solid var(--border);
        }

        .branch-info li:last-child { border-bottom: none; }
        .branch-info li i { color: var(--green); min-width: 16px; margin-top: 3px; font-size: 0.8rem; }

        /* ── CONTACT ── */
        .contact-section { background: var(--grey-bg); padding: 110px 0; }

        .contact-form-wrap {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: 4px;
            padding: 60px;
        }

        .contact-info-wrap {
            background: var(--navy);
            border-radius: 4px;
            padding: 60px 48px;
            height: 100%;
        }

        .contact-info-item {
            padding: 24px 0;
            border-bottom: 1px solid rgba(255,255,255,0.07);
        }

        .contact-info-item:last-child { border-bottom: none; }

        .contact-info-label {
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--green-light);
            margin-bottom: 6px;
        }

        .contact-info-value {
            font-size: 0.95rem;
            color: rgba(255,255,255,0.8);
            line-height: 1.6;
        }

        .form-label {
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--navy);
            margin-bottom: 8px;
        }

        .form-control, .form-select {
            border: 1px solid var(--border);
            border-radius: 2px;
            padding: 13px 16px;
            font-size: 0.9rem;
            font-family: 'Barlow', sans-serif;
            color: var(--navy);
            transition: border-color 0.25s;
        }

        .form-control:focus, .form-select:focus {
            border-color: var(--green);
            box-shadow: 0 0 0 3px rgba(0,122,61,0.08);
        }

        /* ── CAREERS ── */
        .careers-section {
            background: linear-gradient(rgba(10,25,47,0.87), rgba(10,25,47,0.87)),
                        url('https://images.unsplash.com/photo-1521737711867-e3b97375f902?auto=format&fit=crop&q=80&w=2000') center/cover fixed;
            padding: 130px 0;
            text-align: center;
            color: #fff;
        }

        .careers-section h2 {
            font-size: clamp(2.5rem, 5vw, 5rem);
            font-weight: 900;
            text-transform: uppercase;
            margin-bottom: 20px;
        }

        .careers-section p { font-size: 1rem; color: rgba(255,255,255,0.65); max-width: 600px; margin: 0 auto 40px; line-height: 1.7; }

        /* ── FOOTER ── */
        footer {
            background: #050c16;
            color: rgba(255,255,255,0.55);
            padding: 90px 0 50px;
        }


        .footer-desc { font-size: 0.9rem; line-height: 1.8; margin-top: 20px; max-width: 280px; }

        .footer-heading {
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            color: rgba(255,255,255,0.9);
            margin-bottom: 24px;
        }

        .footer-link {
            display: block;
            color: rgba(255,255,255,0.5);
            text-decoration: none;
            font-size: 0.9rem;
            padding: 7px 0;
            transition: color 0.25s, padding-left 0.25s;
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }

        .footer-link:hover { color: #fff; padding-left: 6px; }

        .social-btn {
            width: 42px;
            height: 42px;
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 2px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: rgba(255,255,255,0.6);
            text-decoration: none;
            margin-right: 8px;
            margin-top: 4px;
            transition: all 0.3s;
        }

        .social-btn:hover { background: var(--green); border-color: var(--green); color: #fff; transform: translateY(-2px); }

        .newsletter-wrap .input-group {
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 2px;
            overflow: hidden;
        }

        .newsletter-input {
            background: rgba(255,255,255,0.05) !important;
            border: none !important;
            color: #fff !important;
            font-size: 0.9rem;
            padding: 13px 18px !important;
            border-radius: 0 !important;
        }

        .newsletter-input::placeholder { color: rgba(255,255,255,0.3); }

        .newsletter-input:focus { box-shadow: none !important; }

        .newsletter-btn {
            background: var(--green);
            border: none;
            padding: 0 20px;
            color: #fff;
            font-size: 0.9rem;
            transition: background 0.25s;
        }

        .newsletter-btn:hover { background: var(--green-light); }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.06);
            margin-top: 60px;
            padding-top: 30px;
            font-size: 0.82rem;
        }

        /* ── RESPONSIVE ── */
        @media (max-width: 992px) {
            .navbar-inner { flex-wrap: wrap; }
            .nav-center { display: none; }
            .nav-right { border-left: none; }
            .stats-bar .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.12); }
            .gas-row, .gas-row.reverse { flex-direction: column; gap: 40px; }
            .gas-img-wrap, .gas-info { flex: 0 0 100%; width: 100%; }
            .gas-name { font-size: 2.8rem; }
            .bento { grid-template-columns: repeat(2, 1fr); }
            .bento-item.tall { grid-row: span 1; }
            .gcc-inner { padding: 40px 30px; }
            .contact-form-wrap { padding: 40px 30px; }
            .contact-info-wrap { padding: 40px 30px; }
        }

        @media (max-width: 576px) {
            .hero h1 { font-size: 2.8rem; }
            .section-pad { padding: 70px 0; }
            .bento { display: flex; flex-direction: column; }
            .bento-item { height: 300px; }
            .about-badge { position: static; margin-top: 20px; display: inline-block; }
            .solution-float { margin: -30px 15px 0; padding: 24px; }
        }



        /*  */



        :root {
            --green: #007a3d;
            --green-light: #009649;
            --blue: #005591;
            --navy: #0a192f;
            --grey-bg: #f4f6f5;
            --text-dark: #1a1a1a;
            --text-muted: #6b7280;
            --border: rgba(0,0,0,0.07);
            --ease: cubic-bezier(0.165, 0.84, 0.44, 1);
        }

        body {
            font-family: 'Barlow', sans-serif;
            color: var(--text-dark);
            background: #fff;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, .section-title {
            font-family: 'Barlow Condensed', sans-serif;
            text-transform: uppercase;
        }

        .noise-overlay {
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            background: url('https://grainy-gradients.vercel.app/noise.svg');
            opacity: 0.05;
            pointer-events: none;
            z-index: 9999;
        }

        .hero-about {
            background: var(--navy);
            padding: 180px 0 120px;
            position: relative;
            color: #fff;
            overflow: hidden;
        }

        .hero-about::before {
            content: "IGAS";
            position: absolute;
            bottom: -50px;
            right: -20px;
            font-size: 20vw;
            font-weight: 900;
            color: rgba(255,255,255,0.02);
            font-family: 'Barlow Condensed', sans-serif;
        }

        .section-tag {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: var(--green-light);
            font-family: 'Barlow Condensed', sans-serif;
            font-weight: 700;
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 25px;
        }

        .section-tag::before {
            content: '';
            width: 30px;
            height: 2px;
            background: var(--green-light);
        }

        .hero-about h1 {
            font-size: clamp(3.5rem, 8vw, 6.5rem);
            font-weight: 900;
            line-height: 0.9;
            margin-bottom: 30px;
        }

        .hero-about h1 em {
            font-style: normal;
            color: var(--green-light);
        }

        .story-section { padding: 120px 0; background: #fff; }

        .story-chapter {
            padding: 40px;
            background: var(--grey-bg);
            border: 1px solid var(--border);
            border-radius: 4px;
            height: 100%;
            transition: 0.4s var(--ease);
        }

        .story-chapter:hover {
            background: #fff;
            transform: translateY(-10px);
            box-shadow: 0 30px 60px rgba(0,0,0,0.05);
            border-color: var(--green);
        }

        .chapter-year {
            font-family: 'Barlow Condensed', sans-serif;
            color: var(--green);
            font-weight: 800;
            letter-spacing: 2px;
            display: block;
            margin-bottom: 15px;
        }

        .chapter-title {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--navy);
            margin-bottom: 20px;
        }

        .chapter-milestone {
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid var(--border);
            font-family: 'Barlow Condensed', sans-serif;
            font-weight: 700;
            color: var(--blue);
            text-transform: uppercase;
        }

        .values-section { padding: 120px 0; background: var(--navy); color: #fff; }

        .value-card {
            border: 1px solid rgba(255,255,255,0.1);
            padding: 45px;
            height: 100%;
            transition: 0.4s;
        }

        .value-card:hover {
            background: rgba(255,255,255,0.03);
            border-color: var(--green-light);
        }

        .value-card-num {
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 4rem;
            font-weight: 900;
            color: rgba(255,255,255,0.05);
            line-height: 1;
            margin-bottom: 20px;
        }

        .value-name {
            font-size: 1.6rem;
            font-weight: 800;
            color: var(--green-light);
            margin-bottom: 15px;
        }

        .stats-section {
            padding: 100px 0;
            background: var(--green);
            color: #fff;
        }

        .stat-block-value {
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 4.5rem;
            font-weight: 900;
            line-height: 1;
        }

        .stat-block-label {
            font-family: 'Barlow Condensed', sans-serif;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            opacity: 0.7;
            margin-bottom: 10px;
        }

        .chairman-section { padding: 120px 0; background: var(--grey-bg); }

        .chairman-card {
            background: #fff;
            padding: 60px;
            border-radius: 4px;
            border-left: 10px solid var(--green);
            box-shadow: 0 40px 80px rgba(0,0,0,0.05);
        }

        .chairman-quote {
            font-size: 1.8rem;
            font-family: 'Barlow Condensed', sans-serif;
            font-weight: 600;
            color: var(--navy);
            line-height: 1.4;
            margin-bottom: 40px;
            position: relative;
        }

        .industry-pill {
            padding: 12px 25px;
            background: #fff;
            border: 1px solid var(--border);
            margin: 8px;
            display: inline-block;
            font-family: 'Barlow Condensed', sans-serif;
            font-weight: 700;
            color: var(--navy);
            transition: 0.3s;
        }

        .industry-pill:hover {
            background: var(--navy);
            color: #fff;
            transform: translateY(-5px);
        }

        .product-marquee {
            background: var(--navy);
            padding: 40px 0;
            overflow: hidden;
            white-space: nowrap;
        }

        .marquee-track {
            display: inline-block;
            animation: marquee 40s linear infinite;
        }

        .marquee-item {
            display: inline-block;
            color: rgba(255,255,255,0.4);
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 1.6rem;
            font-weight: 700;
            margin: 0 50px;
            text-transform: uppercase;
        }

        @keyframes marquee {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        @media (max-width: 992px) {
            .chairman-card { padding: 40px 30px; }
            .hero-about h1 { font-size: 3rem; }
        }

        /*  */