:root {
      --black: #070707;
      --dark: #111111;
      --dark-2: #1b1b1b;
      --gold: #f0b500;
      --paper: #e7e7e4;
      --paper-light: #f4f4f1;
      --text: #151923;
      --max: 1400px;
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: Inter, Arial, sans-serif;
      background: var(--paper);
      color: var(--text);
      line-height: 1.45;
    }
    a { text-decoration: none; color: inherit; }
    img { display: block; max-width: 100%; }

    .container {
         max-width: var(--max);
         margin: 0 auto;
         padding: 0 28px;
    }

    .display {
         font-family: 'Bebas Neue', Impact, sans-serif;
         letter-spacing: .025em;
         line-height: .9;
         text-transform: uppercase;
    }

    .eyebrow {
         font-family: 'Bebas Neue', Impact, sans-serif;
         color: var(--gold);
         font-size: 26px;
         letter-spacing: .05em;
         text-transform: uppercase;
    }

    .btn {
         display: inline-flex;
         align-items: center;
         gap: 14px;
         background: var(--gold);
         color: #050505;
         font-weight: 900;
         text-transform: uppercase;
         border: 0;
         padding: 12px 23px;
         font-size: 13px;
         cursor: pointer;
         transition: .2s ease;
         border-radius: 0;
    }
    .btn:hover { background: #ffc928; transform: translateY(-2px); }
    .btn-dark { background: #070707; color: var(--gold); }

    header {
         position: fixed;
         top: 0;
         left: 0;
         right: 0;
         z-index: 1000;
         background: linear-gradient(180deg, #1b1b1b, #101010);
         color: #fff;
         box-shadow: 0 3px 18px rgba(0,0,0,.38);
    }

    .topbar {
          height: 120px;
         display: flex;
         align-items: center;
         justify-content: space-between;
         gap: 20px;
    }

    .brand {
         display: flex;
         align-items: center;
         gap: 14px;
         min-width: 0;
    }

    .brand-logo {
         width: 225px;
         height: 225px;
         margin-top: 80px;
         object-fit: contain;
         filter: drop-shadow(0 11px 12px rgba(0,0,0,.45));
    }

    .brand-text strong {
         display: block;
         font-size: 40px;
         font-weight: 900;
         line-height: .85;
         letter-spacing: -.045em;
         color: #fff;
         padding-left: 3px;
    }
 
    .brand-text span {
         display: block;
         color: var(--gold);
         font-size: 20px;
         letter-spacing: .68em;
         font-weight: 900;
         margin-top: 4px;
    }

    .nav-contact {
         display: flex;
         align-items: center;
    }
 
      nav { display: flex; gap: 26px; align-items: center; }
      nav a {
         font-size: 14px;
         font-weight: 900;
         text-transform: uppercase;
         color: rgba(255,255,255,.88);
         position: relative;
    }
    
      nav a:hover,
      nav a.active { color: var(--gold); }
      nav a.active::after {
         content: '';
         position: absolute;
         left: 0;
         right: 0;
         margin: auto;
         bottom: -10px;
         width: 24px;
         height: 3px;
         background: var(--gold);
    }

    .hero-stage {
         margin-top: 120px;
         background-image: url("/images/hero/excavator-bucket-hero.jpg");
         background-position: center;
         background-size: cover;
         background-repeat: no-repeat;
    }

    .hero {
         margin-top: 0;
         min-height: 420px;
         background: linear-gradient(90deg, rgba(0,0,0,.93) 0%, rgba(0,0,0,.74) 39%, rgba(0,0,0,.14) 100%);
         color: #fff;
         display: flex;
         align-items: center;
    }

    .hero-inner {
         width: 100%;
         max-width: var(--max);
         margin: auto;
         padding: 115px 28px 75px;
         
    }

    .hero h1 {
         font-size: 64px;
         max-width: 550px;
         text-shadow: 0 5px 20px rgba(0,0,0,.5);
    }
    
    .hero h1 span { color: var(--gold); }
    .hero-line { width: 74px; height: 4px; background: var(--gold); margin: 13px 0 18px; }
    .hero p {
         font-size: 17px;
         font-weight: 600;
         color: rgba(255,255,255,.92);
         max-width: 455px;
         margin-bottom: 22px;
    }

     .principles {
         background: rgba(8,8,8,.56);
         color: #fff;
         backdrop-filter: blur(2px);
         -webkit-backdrop-filter: blur(2px);
     }
     .principles-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
     .principle {
         display: grid;
         grid-template-columns: 54px 1fr;
         gap: 10px;
         align-items: center;
         padding: 23px 20px;
         border-right: 1px solid rgba(240,181,0,.45);
    }
    
     .principle:last-child { border-right: 0; }
     .principle-icon { font-size: 48px; color: var(--gold); line-height: 1; letter-spacing: 0.3em }
     .principle h3 { font-family: 'Bebas Neue'; font-size: 28px; letter-spacing: .03em; line-height: .9; }
     .principle p { font-size: 15px; color: rgba(255,255,255,.78); font-weight: 700; line-height: 1.22; }

     .light { background: radial-gradient(circle at center, var(--paper-light) 0%, var(--paper) 74%); }
     .about { padding: 54px 0 28px; }
     .about-grid {
         display: grid;
         grid-template-columns: 1fr 1.45fr .7fr;
         gap: 44px;
         align-items: center;
    }
    
     .section-title { font-size: 37px; color: #151923; max-width: 430px; }
     .copy { font-size: 15px; color: #20242b; font-weight: 600; max-width: 430px; margin: 14px 0 20px; }
     .about-img { width: 100%; height: 350px; object-fit: cover; box-shadow: 0 17px 38px rgba(0,0,0,.24); }

     .values { display: grid; gap: 22px; }
     .value { display: grid; grid-template-columns: 44px 1fr; gap: 14px; align-items: center; }
     .value-icon { color: var(--gold); font-size: 29px; }
     .value h4 { font-size: 18px; text-transform: uppercase; font-weight: 900; }
     .value p { font-size: 15px; font-weight: 700; color: #333; }

     .industries { padding: 0 0 34px; text-align: center; }
     .industries h2 { font-size: 37px; margin: 4px 0 20px; color: #151923; }
     .industry-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
     .industry-card { height: 160px; position: relative; background: #111; overflow: hidden; box-shadow: 0 8px 20px rgba(0,0,0,.2); }
     .industry-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .88; }
     .industry-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.94), rgba(0,0,0,.05) 66%); }
     .industry-info { position: absolute; left: 8px; right: 8px; bottom: 12px; z-index: 1; color: #fff; }
     .industry-info .ico { display: none; }
     .industry-info h3 { font-family: 'Bebas Neue'; font-size: 19px; line-height: .95; letter-spacing: .035em; }

    .capability {
         position: relative;
         overflow: hidden;
         background: linear-gradient(90deg, #101010 0%, #141414 62%, rgba(20,20,20,.2) 100%);
         color: #fff;
         padding: 44px 0;
    }
    
    .capability::after {
         content: '';
         position: absolute;
         right: 0;
         top: 0;
         bottom: 0;
         width: 38%;
         background:
         linear-gradient(90deg, rgba(20,20,20,0), rgba(20,20,20,.04)),
         url("/images/services/service-hard-hat.png") center/cover no-repeat;
         opacity: .98;
    }
    
    .cap-inner {
         position: relative;
         z-index: 1;
         display: grid;
         grid-template-columns: 1fr 1.7fr;
         gap: 44px;
         align-items: center;
    }
    
    .capability h2 { font-size: 34px; margin: 4px 0 12px; }
    .capability p { font-size: 14px; color: rgba(255,255,255,.78); max-width: 405px; }
    .cap-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 35px; }
    .cap-list div { font-size: 15px; font-weight: 800; }
    .cap-list div::before {
         content: '\2713';
         display: inline-grid;
         place-items: center;
         width: 17px;
         height: 17px;
         border-radius: 50%;
         border: 1px solid var(--gold);
         color: var(--gold);
         font-size: 11px;
         margin-right: 8px;
    }

    .bottom { padding: 50px 0; background: radial-gradient(circle at center, var(--paper-light) 0%, var(--paper) 74%); }
    .bottom-grid { display: grid; grid-template-columns: .85fr .85fr 1.3fr .85fr; gap: 38px; align-items: center; }
    .bottom h2 { font-size: 34px; color: #151923; margin: 4px 0 12px; }
    .bottom p { font-size: 14px; font-weight: 600; color: #30343a; margin-bottom: 14px; }
    .career-img { height: 220px; width: 100%; object-fit: cover; box-shadow: 0 12px 30px rgba(0,0,0,.18); }
    .contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
    .contact-form textarea { grid-column: span 2; min-height: 75px; }
    .contact-form input,
    .contact-form textarea {
         border: 0;
         background: #fff;
         padding: 11px 12px;
         font: inherit;
         font-size: 12px;
         box-shadow: inset 0 0 0 1px rgba(0,0,0,.08);
    }
    
     .contact-form button { width: max-content; margin-top: 6px; }
     .contact-details { display: grid; gap: 16px; font-size: 15px; font-weight: 900; }
     .contact-details div { display: grid; grid-template-columns: 26px 1fr; gap: 8px; }
     .contact-details span { color: var(--gold); font-size: 20px; }

     footer { background: linear-gradient(180deg, #171717, #090909); color: #fff; padding: 42px 0 0; }
     .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 44px; }
     .footer-brand { display: flex; align-items: center; gap: 16px; }
     .footer-brand img { width: 195px; height: 195px; object-fit: contain; }
     .footer-brand strong { display: block; color: #ffffff; font-size: 17px; font-weight: 900; letter-spacing: .08em; line-height: 1.2; text-transform: uppercase; }
     .footer-brand span { display: block; color: var(--gold); font-size: 17px; font-weight: 900; letter-spacing: .08em; line-height: 1.2; text-transform: uppercase; }
     footer h4 { font-size: 16px; text-transform: uppercase; margin-bottom: 10px; }
     footer a,
     footer p { display: block; color: rgba(255,255,255,.65); font-size: 14px; margin: 4px 0; }
     .socials { display: flex; gap: 16px; }
     .socials a { font-size: 22px; color: #fff; }
     .copyright { margin-top: 34px; background: var(--gold); color: #050505; padding: 13px 0; font-size: 13px; font-weight: 800; }
     .copyright .container { display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; }

    .call-float {
         position: fixed;
         right: 24px;
         bottom: 58px;
         width: 70px;
         height: 70px;
         border-radius: 50%;
         background: var(--gold);
         color: #050505;
         display: grid;
         place-items: center;
         font-size: 34px;
         z-index: 1200;
         box-shadow: 0 18px 38px rgba(0,0,0,.35);
    }
    
    .call-float::after {
         content: 'Call Now';
         position: absolute;
         right: 0;
         bottom: -36px;
         background: #080808;
         color: #fff;
         border-radius: 18px;
         padding: 5px 13px;
         font-size: 12px;
         font-weight: 900;
         white-space: nowrap;
    }
    
    /* =========================================================
   ABOUT PAGE
========================================================= */

    .about-hero {
         margin-top: 120px;
         min-height: 560px;
         background-image: url("/images/about-us/about-hero.jpg");
         background-position: center;
         background-size: cover;
         background-repeat: no-repeat;
    }

    .about-hero-overlay {
         min-height: 560px;
         display: flex;
         align-items: center;
         background: linear-gradient(
         90deg,
         rgba(0, 0, 0, .94) 0%,
         rgba(0, 0, 0, .78) 43%,
         rgba(0, 0, 0, .22) 100%
        );
    }

    .about-hero-content {
         width: 100%;
         color: #fff;
         padding-top: 85px;
         padding-bottom: 85px;
    }

    .about-hero h1 {
         max-width: 760px;
         margin-top: 10px;
         font-size: 76px;
         text-shadow: 0 5px 20px rgba(0, 0, 0, .5);
    }

    .about-hero h1 span {
         display: block;
         color: var(--gold);
    }

    .about-hero p {
         max-width: 620px;
         margin-top: 20px;
         color: rgba(255, 255, 255, .88);
         font-size: 17px;
         font-weight: 600;
         line-height: 1.65;
    }
    