body{

}
body{margin:0;font-family:Arial;background:url('images/steel.jpg') center/cover fixed;color:#fff}

.logo{width:320px}

.nav{
  position:fixed;
  top:0;
  left:0;
  width:100%;

  display:flex;
  justify-content:space-between;
  align-items:center;

  padding:20px 40px;   /* 👈 more space */
  background:rgba(0,0,0,0.95);

  z-index:1000;
  box-sizing:border-box;
}

.nav nav{
  display:flex;
  gap:25px;   /* 👈 more spacing */
  align-items:center;
}

.nav a{
  color:#fff;
  text-decoration:none;
  font-size:16px;   /* 👈 bigger */
  white-space:nowrap;
}
/* ===== NAV LINK BASE ===== */
.nav a{
  color:#fff;
  text-decoration:none;
  position:relative;
  padding-bottom:6px;
  transition:opacity 0.3s ease;
}

/* ===== HOVER EFFECT ===== */
.nav a:hover{
  opacity:0.7;
}

/* ===== UNDERLINE (HIDDEN BY DEFAULT) ===== */
.nav a::after{
  content:"";
  position:absolute;
  bottom:0;
  left:0;
  width:0%;
  height:2px;

  background:linear-gradient(
    90deg,
    #bbb,
    #fff,
    #bbb
  );

  transition:width 0.35s ease;
}

/* ===== HOVER ANIMATION ===== */
.nav a:hover::after{
  width:100%;
}

/* ===== ACTIVE LINK ===== */
.nav a.active::after{
  width:100%;
}
/* ===== NAV SHRINK ===== */
.nav{
  transition:all 0.3s ease;
}

.nav.shrink{
  padding:10px 40px;
  background:rgba(0,0,0,0.98);
}

.hero{
  min-height:100vh;   /* 🔥 KEY FIX */
  width:100%;

  display:flex;
  align-items:center;

  background-size:cover;
  background-position:center;

  position:relative;
  overflow:hidden;
}
.hero::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;

  background:rgba(0,0,0,0.3);
  z-index:0;
}

.hero > *{
  position:relative;
  z-index:1;
}

/* Individual hero images */
.hero-services{
  background:url('images/hero2.jpg') center/cover no-repeat;
}

.hero-projects{
  background:url('images/hero3.jpg') center/cover no-repeat;
}

.hero-contact{
  background:url('images/hero4.png') center/cover no-repeat;
}
.hero{
  background-color:#000;  /* fallback layer */
}
.hero-legal{
  background:url('images/hero5.jpg') center/cover no-repeat;
}
.hero-construction{
  background:url('images/hero6.jpg') center/cover no-repeat;
}

.hero-planning{
  background:url('images/hero7.jpg') center/cover no-repeat;
}
.cta{background:#ccc;color:#000;padding:14px 28px;text-decoration:none}

.intro{display:flex;gap:60px;padding:80px}
.intro img{width:450px}
.intro-text{max-width:700px;line-height:1.6}

.title{margin-top:160px;text-align:center}

.services-intro{max-width:900px;margin:auto;padding:20px 40px;line-height:1.6}

.services-grid{display:flex;flex-wrap:wrap;justify-content:center;gap:30px;padding:60px}
.card{
  position:relative;
  overflow:hidden;
  width:260px;
  padding:40px 20px;
  text-align:center;
  cursor:pointer;
  color:#e5e5e5;

  border:1px solid rgba(255,255,255,0.25);

  /* 🔥 DARK BASE */
  background:#1a1a1a;

  /* 🔥 DEPTH */
  box-shadow:
    inset 0 0 60px rgba(255,255,255,0.08),
    0 10px 30px rgba(0,0,0,0.9);

  transition: all 0.3s ease;
}

.card::before{
  content:"";
  position:absolute;
  top:-50%;
  left:-50%;
  width:200%;
  height:200%;

  background: repeating-linear-gradient(
    120deg,
    rgba(255,255,255,0.08),
    rgba(255,255,255,0.08) 2px,
    transparent 2px,
    transparent 6px
  );

  transform: rotate(10deg);
  pointer-events:none;
}
.card::after{
  content:"";
  position:absolute;
  top:0;
  left:-100%;
  width:200%;
  height:100%;

  background:linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.15),
    transparent
  );

  transform:skewX(-20deg);
}

.card:hover{
  transform:translateY(-8px);

  box-shadow:
    inset 0 0 80px rgba(255,255,255,0.1),
    0 20px 50px rgba(0,0,0,1);

  border-color: rgba(255,255,255,0.5);
}
.card h3{
  font-size:18px;
  font-weight:500;
  letter-spacing:1px;
  margin-bottom:10px;
}

.card p{
  font-size:13px;
  color:#bbb;
  line-height:1.6;
}
.card h3{
  text-shadow: 0 0 5px rgba(255,255,255,0.2);
}
.card:hover{
  transform:translateY(-6px);

  box-shadow:
    inset 0 0 50px rgba(255,255,255,0.08),
    0 12px 35px rgba(0,0,0,0.9);

  border-color: rgba(255,255,255,0.4);
}

.modal{
  display:none;
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;

  background:rgba(0,0,0,0.9);

  overflow-y:auto;       /* ✅ ONLY SCROLL HERE */
  z-index:2000;

  padding:120px 20px 40px;  /* ✅ pushes content below header */
  box-sizing:border-box;
}

.modal-content{
  background:#111;
  margin:auto;
  padding:30px;

  width:100%;
  max-width:900px;

  max-height:none;       /* ❌ REMOVE HEIGHT LIMIT */
  overflow:visible;      /* ❌ REMOVE INNER SCROLL */

  color:#fff;
  border-radius:6px;
  line-height:1.6;

  box-shadow:0 20px 60px rgba(0,0,0,0.9);
}
.close{
  cursor:pointer;
  float:right;
  font-size:18px;
  position:sticky;
  top:0;
  background:#111;
  padding:5px 10px;
}

.formwrap{
  display:flex;
  gap:60px;

  padding:180px 80px 80px;  /* 🔥 this was your original (good) */
}
.form{max-width:500px;width:100%}
.form input,.form textarea{width:100%;padding:10px;margin-bottom:10px}
.contact-form input,
.contact-form textarea{
  background:rgba(255,255,255,0.9);
  border:none;
  border-radius:4px;
}
footer{text-align:center;padding:20px;background:#111}
.contact-overlay{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;

  height:100%;
  padding:160px 80px 80px;

  gap:60px;
}

.contact-left{
  max-width:300px;
}

.contact-form{
  display:flex;
  flex-direction:column;
  gap:12px;
  width:420px;   /* 🔥 wider form */
}

.contact-right{
  max-width:300px;
  text-align:right;
}
.legal-text{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%, -50%);

  max-width:800px;
  width:90%;

  background:rgba(0,0,0,0.6);
  padding:30px;
  border-radius:6px;

  color:#fff;
}.projects-text{
  backdrop-filter:blur(6px);
}

.hero{
  min-height:100vh;   /* 🔥 KEY FIX */
  width:100%;

  display:flex;
  align-items:center;

  background-size:cover;
  background-position:center;

  position:relative;
  overflow:hidden;
}
.hero::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;

  background:rgba(0,0,0,0.3);
  z-index:0;
}

.hero > *{
  position:relative;
  z-index:1;
}

/* Individual hero images */
.hero-services{
  background:url('images/hero2.jpg') center/cover no-repeat;
}

.hero-projects{
  background:url('images/hero3.jpg') center/cover no-repeat;
}

.hero-contact{
  background:url('images/hero4.png') center/cover no-repeat;
}
.hero{
  background-color:#000;  /* fallback layer */
}
.hero-legal{
  background:url('images/hero5.jpg') center/cover no-repeat;
}
.cta{background:#ccc;color:#000;padding:14px 28px;text-decoration:none}

.intro{display:flex;gap:60px;padding:80px}
.intro img{width:450px}
.intro-text{max-width:700px;line-height:1.6}

.title{margin-top:160px;text-align:center}

.services-intro{max-width:900px;margin:auto;padding:20px 40px;line-height:1.6}

.services-grid{display:flex;flex-wrap:wrap;justify-content:center;gap:30px;padding:60px}
.card{
  position:relative;
  overflow:hidden;
  width:260px;
  padding:40px 20px;
  text-align:center;
  cursor:pointer;
  color:#e5e5e5;

  border:1px solid rgba(255,255,255,0.25);

  /* 🔥 DARK BASE */
  background:#1a1a1a;

  /* 🔥 DEPTH */
  box-shadow:
    inset 0 0 60px rgba(255,255,255,0.08),
    0 10px 30px rgba(0,0,0,0.9);

  transition: all 0.3s ease;
}

.card::before{
  content:"";
  position:absolute;
  top:-50%;
  left:-50%;
  width:200%;
  height:200%;

  background: repeating-linear-gradient(
    120deg,
    rgba(255,255,255,0.08),
    rgba(255,255,255,0.08) 2px,
    transparent 2px,
    transparent 6px
  );

  transform: rotate(10deg);
  pointer-events:none;
}
.card::after{
  content:"";
  position:absolute;
  top:0;
  left:-100%;
  width:200%;
  height:100%;

  background:linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.15),
    transparent
  );

  transform:skewX(-20deg);
}

.card:hover{
  transform:translateY(-8px);

  box-shadow:
    inset 0 0 80px rgba(255,255,255,0.1),
    0 20px 50px rgba(0,0,0,1);

  border-color: rgba(255,255,255,0.5);
}
.card h3{
  font-size:18px;
  font-weight:500;
  letter-spacing:1px;
  margin-bottom:10px;
}

.card p{
  font-size:13px;
  color:#bbb;
  line-height:1.6;
}
.card h3{
  text-shadow: 0 0 5px rgba(255,255,255,0.2);
}
.card:hover{
  transform:translateY(-6px);

  box-shadow:
    inset 0 0 50px rgba(255,255,255,0.08),
    0 12px 35px rgba(0,0,0,0.9);

  border-color: rgba(255,255,255,0.4);
}

.modal{
  display:none;
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;

  background:rgba(0,0,0,0.9);

  overflow-y:auto;       /* ✅ ONLY SCROLL HERE */
  z-index:2000;

  padding:120px 20px 40px;  /* ✅ pushes content below header */
  box-sizing:border-box;
}

.modal-content{
  background:#111;
  margin:auto;
  padding:30px;

  width:100%;
  max-width:900px;

  max-height:none;       /* ❌ REMOVE HEIGHT LIMIT */
  overflow:visible;      /* ❌ REMOVE INNER SCROLL */

  color:#fff;
  border-radius:6px;
  line-height:1.6;

  box-shadow:0 20px 60px rgba(0,0,0,0.9);
}
.close{
  cursor:pointer;
  float:right;
  font-size:18px;
  position:sticky;
  top:0;
  background:#111;
  padding:5px 10px;
}

.formwrap{
  display:flex;
  gap:60px;

  padding:180px 80px 80px;  /* 🔥 this was your original (good) */
}
.form{max-width:500px;width:100%}
.form input,.form textarea{width:100%;padding:10px;margin-bottom:10px}
.contact-form input,
.contact-form textarea{
  background:rgba(255,255,255,0.9);
  border:none;
  border-radius:4px;
}
footer{text-align:center;padding:20px;background:#111}
.contact-overlay{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;

  height:100%;
  padding:160px 80px 80px;

  gap:60px;
}

.contact-left{
  max-width:300px;
}

.contact-form{
  display:flex;
  flex-direction:column;
  gap:12px;
  width:420px;   /* 🔥 wider form */
}

.contact-right{
  max-width:300px;
  text-align:right;
}
.legal-text{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%, -50%);

  max-width:800px;
  width:90%;

  background:rgba(0,0,0,0.6);
  padding:30px;
  border-radius:6px;

  color:#fff;
}
.projects-text{
  backdrop-filter:blur(6px);
}
/* ===== INTRO PAGE CLEAN ===== */

.intro-page{
  margin:0;
  height:100vh;
  background:#000;
}

.intro-wrapper{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;   /* 👈 FIX */
  gap:40px;                 /* 👈 controls spacing */
  height:100vh;
}

.intro-logo{
  max-width:90%;
  max-height:70vh;
  margin-top:80px;
}

.enter-btn{
  margin-bottom:80px;
  padding:18px 50px;
  display:inline-block;

  color:#eee;
  text-decoration:none;

  border:1px solid rgba(255,255,255,0.3);
  background:#1a1a1a;
}
/* ===== HOME HERO DESKTOP ===== */
.hero-home{
  background-image: url('/images/hero.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
/* ===== METALLIC DIVIDER ===== */
.divider{
  height:4px;
  width:100%;
  background:linear-gradient(
    90deg,
    #444,
    #bbb,
    #fff,
    #bbb,
    #444
  );
  box-shadow:
    0 0 8px rgba(255,255,255,0.3),
    0 2px 6px rgba(0,0,0,0.8);
}

/* ===== SPLIT SECTIONS ===== */
.split-section{
  padding:80px 60px;
  background:rgba(0,0,0,0.85);
}

.split-text{
  max-width:800px;
}

.split-text h2{
  font-size:34px;
  margin-bottom:15px;
}

.split-text p{
  font-size:16px;
  color:#ccc;
  margin-bottom:25px;
  line-height:1.6;
}

/* ===== BUTTON VARIANT ===== */
.cta.alt{
  background:#cfcfcf;
  color:#000;
  padding:14px 30px;
  text-decoration:none;
  display:inline-block;
}
/* ===== HERO WRAPPER (MAIN BACKGROUND) ===== */
.hero-wrapper{
  background: url('images/hero.jpg') center/cover no-repeat;
  min-height:100vh;
  width:100%;
}

/* ===== SPLIT SECTION (UPDATED) ===== */
.split-section{
  padding:60px 80px;
  background:rgba(0,0,0,0.45);   /* lighter overlay */
  backdrop-filter: none;         /* REMOVE blur */
}


/* SPACING TIGHTER */
.split-text{
  max-width:900px;
}

.hero-wrapper{
  padding-top:120px;   /* pushes content below header */
}
/* ===== ACTIVE NAV LINK ===== */
.nav a.active{
  color:#fff;
  position:relative;
}

/* underline effect */
.nav a.active::after{
  content:"";
  position:absolute;
  bottom:-6px;
  left:0;
  width:100%;
  height:2px;

  background:linear-gradient(
    90deg,
    #bbb,
    #fff,
    #bbb
  );
}
.content-block{
  padding:80px 60px;
  background:rgba(0,0,0,0.85);
}

.content-inner{
  max-width:900px;
}

.content-inner h2{
  font-size:32px;
  margin-bottom:20px;
}

.content-inner h3{
  margin-top:40px;
  margin-bottom:15px;
}

.content-inner p{
  line-height:1.7;
  color:#ccc;
  margin-bottom:20px;
}

.content-inner ul{
  margin:20px 0;
  padding-left:20px;
}

.content-inner li{
  margin-bottom:10px;
}
/* ===== 3 STEP STRIP ===== */
.steps{
  padding:80px 60px;
  background:#111;
}

.steps-inner{
  display:flex;
  justify-content:space-between;
  gap:40px;
  flex-wrap:wrap;
}

.step{
  flex:1;
  min-width:250px;
  border:1px solid rgba(255,255,255,0.2);
  padding:30px;
  background:#1a1a1a;
}

.step-number{
  font-size:28px;
  margin-bottom:15px;
  color:#aaa;
}

.step h3{
  margin-bottom:10px;
}

.step p{
  color:#bbb;
  line-height:1.6;
}

/* ===== PROJECT ROW FIX ===== */
.project-row{
  display:flex !important;
  align-items:center;
  gap:60px;
  padding:80px 60px;
  background:rgba(0,0,0,0.85);
}

.project-img{
  width:45%;
  max-width:500px;
}

.project-text{
  max-width:600px;
}

.project-text h2{
  margin-bottom:15px;
}

.project-text p{
  color:#ccc;
  line-height:1.6;
}
.hero,
.title,
.formwrap{
  margin-top:80px;
}

/* ===== MOBILE HOME HERO ===== */
@media (max-width: 768px){
  .hero-home{
    background-image: url('/images/hero-mobile.jpg');
  }
}
/* ===== MOBILE HERO FIX ===== */
@media (max-width: 768px){

.hero{
  display:block;   /* 🔥 THIS IS THE FIX */
  padding:110px 20px 40px;
}

  .hero h1{
    position:absolute;
    top:160px;
    left:20px;
    z-index:2;
    font-size:22px;
  }

  .projects-text{
    position:absolute;
    top:160px;
    left:20px;
    z-index:2;
  }

  .hero-projects{
    background-image: url('/images/hero-mobile.jpg') !important;
  }

}
@media (max-width: 768px){

  .nav{
    flex-direction:column;
    align-items:flex-start;
    padding:10px 15px;
  }

  .logo{
    width:160px;
  }

  .nav nav{
    width:100%;
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    margin-top:10px;
  }

  .nav a{
    width:48%;
    font-size:14px;
  }

}@media (max-width: 768px){

  .intro{
    flex-direction:column;     /* 👈 stack instead of side-by-side */
    padding:40px 20px;
    gap:20px;
  }

  .intro img{
    width:100%;                /* 👈 full screen width */
    max-width:100%;
  }

  .intro-text{
    width:100%;
  }


}
@media (max-width: 768px){

  .enter-btn{
    font-size:18px;
    padding:22px 60px;
    letter-spacing:2px;   /* 👈 cleaner look */
  }

}
@media (max-width: 768px){

  .contact-overlay{
    flex-direction:column;     /* 👈 stack everything */
    padding:120px 20px 40px;
    gap:30px;
  }

  .contact-form{
    width:100%;                /* 👈 full width */
    max-width:100%;
  }

  .contact-left,
  .contact-right{
    max-width:100%;
    text-align:left;
  }

}
@media (max-width: 768px){

  .legal-text{
    position:relative;        /* 👈 REMOVE absolute */
    top:auto;
    left:auto;
    transform:none;

    width:100%;
    max-width:100%;

    margin-top:120px;         /* 👈 pushes below nav */
    padding:20px;
  }

}
@media (max-width: 768px){

  .steps-inner{
    flex-direction:column;
  }
}  
@media (max-width: 768px){

  .project-row{
    flex-direction:column;
    padding:40px 20px;
  }

  .project-img{
    width:100%;
  }
}
  /* ===== MOBILE HERO FIX (PROJECTS) ===== */
@media (max-width: 768px){
  .hero-projects{
    background-image: url('/images/hero-mobile.jpg') !important;
  }

}
/* ===== MOBILE FIX – PROJECT TITLE POSITION ===== */
@media (max-width: 768px){

  .projects-text{
    position:absolute !important;   /* 🔥 FORCE override */
    top:160px;
    left:20px;
    z-index:2;
  }

}
/* ===== FORCE HERO TEXT POSITION (FINAL FIX) ===== */
@media (max-width: 768px){

  .hero > *{
    position:static;   /* 🔥 cancels the global rule */
  }

  .projects-text{
    position:absolute;
    top:160px;
    left:20px;
    z-index:2;
  }

  .hero h1{
    position:absolute;
    top:160px;
    left:20px;
    z-index:2;
  }

}