:root{
  --bg:#0b1220;
  --card:#0f1a2f;
  --alt:#0d1628;
  --text:#e8eefc;
  --muted:#b8c4e6;
  --accent:#25d5a6;
  --stroke: rgba(255,255,255,.10);
  --shadow: 0 18px 50px rgba(0,0,0,.35);
}
* { box-sizing: border-box; }
html, body { overflow-x: hidden; }
img { max-width: 100%; height: auto; }

html, body {
  width: 100%;
  overflow-x: hidden;
}

*{box-sizing:border-box}
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(1200px 700px at 20% -10%, rgba(37,213,166,.18), transparent 55%),
              radial-gradient(900px 600px at 80% 0%, rgba(90,120,255,.18), transparent 50%),
              var(--bg);
  color:var(--text);
}
a{color:inherit}
.container{width:min(1100px, 92%); margin:0 auto}

.header{
  position:sticky; top:0; z-index:10;
  background: rgba(11,18,32,.75);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--stroke);
}
/* header layout */
.container.nav{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}


@media (max-width: 768px){
  .container.nav{
    flex-wrap: wrap;           
    justify-content: center;
    padding-left: 12px;
    padding-right: 12px;
  }

  
  .brand, .logo-wrap, .header-left{
    min-width: 0;
  }

  
  .actions, .header-actions{
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }

  
  .quote-btn, .call-btn, .btn{
    max-width: 100%;
    white-space: normal;       
  }
}

.nav{display:flex; align-items:center; justify-content:space-between; padding:14px 0; gap:12px}
.brand{display:flex; align-items:center; gap:10px}
.logo {
  width: 100px;
  height: 100px;
  border-radius: 25px;               
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.95); 
  border: 1px solid var(--stroke);
  box-shadow: 0 12px 30px rgba(0,0,0,0.35);
  padding: 6px;
}

.logo img {
  max-width: 120%;
  max-height: 120%;
  object-fit: contain;
   border-radius: 25px; 
}


.brand-name {
  font-weight: 1000;
  letter-spacing: .4px;
  font-size: clamp(22px, 2.2vw, 30px);
}

.brand-tag{font-size:12px; color:var(--muted)}

.menu{display:flex; gap:18px}
.menu a{font-size:14px; color:var(--muted); text-decoration:none}
.menu a:hover{color:var(--text)}
.actions{display:flex; align-items:center; gap:10px}

.hamburger{display:none; background:transparent; border:1px solid var(--stroke); color:var(--text); border-radius:12px; padding:10px 12px}

.btn{
  background: linear-gradient(135deg, rgba(37,213,166,.95), rgba(37,213,166,.75));
  border:none; color:#06101a; font-weight:800;
  padding:11px 14px; border-radius:14px; text-decoration:none;
  box-shadow: var(--shadow);
}
.btn-ghost{
  background: transparent;
  border: 1px solid var(--stroke);
  color: var(--text);
  box-shadow:none;
}
.w100{width:100%}

.hero{padding:48px 0 22px}
.hero-grid{display:grid; gap:18px; grid-template-columns: 1.3fr .9fr; align-items:start}
.hero h1 {
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  line-height: 1.1;
  margin-bottom: 1.4rem;
}

.accent{color:var(--accent)}
.hero .lead {
  font-size: 1.15rem;
  line-height: 1.7;
  max-width: 720px;
  margin-bottom: 2rem;
}

.hero-cta{display:flex; gap:10px; flex-wrap:wrap; margin:16px 0}
.trust{display:flex; gap:8px; flex-wrap:wrap; margin-top:10px}
.pill{
  border:1px solid var(--stroke);
  background: rgba(255,255,255,.04);
  color:var(--muted);
  padding:8px 10px; border-radius:999px; font-size:12px;
}

.hero-card{
  background: rgba(255,255,255,.04);
  border:1px solid var(--stroke);
  border-radius:18px;
  padding:16px;
  box-shadow: var(--shadow);
}
.hero-card h3{margin:0 0 6px}
.small{color:var(--muted); margin:0 0 12px; font-size:13px}
label{display:grid; gap:6px; font-size:12px; color:var(--muted); margin:10px 0}
input, select, textarea{
  width:100%;
  padding:11px 12px;
  border-radius:14px;
  border:1px solid var(--stroke);
  background: rgba(11,18,32,.65);
  color:var(--text);
  outline:none;
}
textarea{resize:vertical}
.tiny{color:var(--muted); font-size:12px}

.section{padding:44px 0}
.section.alt{background: rgba(255,255,255,.03); border-top:1px solid var(--stroke); border-bottom:1px solid var(--stroke)}
h2{margin:0 0 6px; font-size:28px}
.sub{margin:0 0 18px; color:var(--muted)}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 26px;
  margin-top: 20px;
}

.project-card {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--stroke);
  border-radius: 20px;
  padding: 14px;
}

.project-image {
  width: 100%;
  height: 300px;                 
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--stroke);
  margin-bottom: 14px;
  box-shadow: 0 14px 35px rgba(0,0,0,.35);
}


.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


.project-card h3 {
  margin: 10px 0 6px;
  font-size: 18px;
}

.project-card ul {
  padding-left: 18px;
  margin: 0;
  color: var(--muted);
}

.project-card li {
  margin-bottom: 6px;
  line-height: 1.4;
}

.cards{grid-template-columns: repeat(3, 1fr)}
@media (max-width: 900px){
  .cards {
    grid-template-columns: 1fr;
  }
}
.card{
  background: rgba(255,255,255,.04);
  border:1px solid var(--stroke);
  border-radius:18px;
  padding:16px;
}
.card h3{margin:0 0 8px}
.card p{margin:0; color:var(--muted); line-height:1.5}

.gallery{grid-template-columns: repeat(4, 1fr)}
.ph{
  height:120px;
  border-radius:18px;
  border:1px dashed rgba(255,255,255,.18);
  display:grid; place-items:center;
  color:rgba(255,255,255,.35);
}

.steps{grid-template-columns: repeat(3, 1fr)}
.step{
  background: rgba(255,255,255,.04);
  border:1px solid var(--stroke);
  border-radius:18px;
  padding:16px;
}
.step span{
  width:34px; height:34px; border-radius:12px;
  display:grid; place-items:center;
  background: rgba(37,213,166,.18);
  border:1px solid rgba(37,213,166,.35);
  margin-bottom:10px;
}
.step p{color:var(--muted); margin:0}

.faq details{
  background: rgba(255,255,255,.04);
  border:1px solid var(--stroke);
  border-radius:18px;
  padding:14px 16px;
  margin:10px 0;
}
.faq summary{cursor:pointer; font-weight:700}
.faq p{color:var(--muted); line-height:1.5}

.quote-form{margin-top:10px}
.form-grid{grid-template-columns: repeat(2, 1fr)}
.form-grid label:nth-child(6){grid-column: 1 / -1}

.footer{
  padding:22px 0;
  border-top:1px solid var(--stroke);
  background: rgba(11,18,32,.75);
}
.footer-grid{display:flex; justify-content:space-between; align-items:center; gap:14px}
.footer-links{display:flex; gap:14px; color:var(--muted)}
.footer-links a{text-decoration:none}
.footer-links a:hover{color:var(--text)}

@media (max-width: 900px){
  .hero-grid{grid-template-columns:1fr}
  .cards{grid-template-columns:1fr}
  .gallery{grid-template-columns: repeat(2,1fr)}
  .steps{grid-template-columns:1fr}
  .form-grid{grid-template-columns:1fr}
  .hamburger{display:inline-block}
  .menu{
    display:none;
    position:absolute;
    right:4%;
    top:64px;
    flex-direction:column;
    background: rgba(11,18,32,.95);
    border:1px solid var(--stroke);
    border-radius:18px;
    padding:12px;
    width:min(320px, 92%);
  }
  .menu.open{display:flex}
}
.image-break img {
  width: 50%;
  max-height: 550px;   
  object-fit: cover;
  border-radius: 22px;
  border: 1px solid var(--stroke);
  box-shadow: 0 18px 40px rgba(0,0,0,.4);

}
/* Force Services to be a multi-column grid */
#services .cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

@media (max-width: 900px) {
  #services .cards {
    grid-template-columns: 1fr;
  }
}
/* FORCE How it works into columns */
#process .steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

@media (max-width: 900px) {
  #process .steps {
    grid-template-columns: 1fr;
  }
}
.social-icons {
  display: flex;
  gap: 16px;
  align-items: center;
}

.social-icons a {
  color: #00e6a8; /* your brand green */
  font-size: 20px;
  transition: 0.3s ease;
}

.social-icons a:hover {
  color: white;
  transform: scale(1.15);
}

/* Footer */
.site-footer {
  margin-top: 80px;
  padding: 40px 20px 25px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.1);
  background: #050b1a;
}

.bottom-socials {
  justify-content: center;
  margin-bottom: 15px;
}

.copyright {
  font-size: 14px;
  opacity: 0.7;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-socials {
  margin-left: 8px;
}

.header-socials a {
  font-size: 18px;
}
.section-title {
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 10px;
  color: #ffffff;
  letter-spacing: 1px;
}

.section-subtitle {
  text-align: center;
  margin-bottom: 40px;
  color: #b8c2cc;
  font-size: 1.05rem;
}

/* Hamburger shows on desktop + mobile */
.hamburger{
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 10px;
  display: inline-flex;
  flex-direction: column;
  gap: 6px;
  border-radius: 10px;
}

.hamburger span{
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}


/* Fullscreen overlay */
.overlay-menu {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(5, 10, 20, 0.80);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.overlay-menu.open {
  opacity: 1;
  pointer-events: auto;
}

/* Menu card centered */
.overlay-card {
  width: min(560px, 100%);
  border-radius: 18px;
  background: rgba(15, 22, 35, 0.92);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 18px;
}

.overlay-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.overlay-title {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
}

.overlay-close {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.overlay-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.overlay-links a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  padding: 12px 12px;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
}

.overlay-actions {
  margin-top: 16px;
  display: grid;
  gap: 12px;
}

.overlay-btn {
  text-align: center;
  padding: 14px 14px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 800;
}

.overlay-btn.ghost {
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  background: rgba(255,255,255,0.04);
}

.overlay-btn.primary {
  color: #031014;
  background: #28d6a4;
}

/* Lock scroll when overlay open */
body.menu-open {
  overflow: hidden;
}

/* HERO video background */
.hero.hero-video{
  position: relative;
  overflow: hidden;
}

/* Make video fill the whole hero */
.hero-bg-video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 190%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
  image-rendering: auto;
  filter: none;
}


/* Dark overlay so text is readable */
.hero-overlay{
  position: absolute;
  inset: 0;
  background: rgba(8, 12, 24, 0.65);
  z-index: 1;
}

/* Ensure your existing hero content sits above */
.hero-content{
  position: relative;
  z-index: 2;
}

/* Keeps your grid layout spacing (right side) */
.hero-right-spacer{
  min-height: 1px;
}

/* On smaller screens, make it full width nicely */
@media (max-width: 900px){
  .hero-right-spacer{
    display: none;
  }
}
.hero .container{
  max-width: 1600px;
  position: relative; z-index: 2; 
}
.hero{
  position: relative;
  width: 100%;
  min-height: 92vh;
  overflow: hidden;
   display: flex;
  align-items: center;
  padding: 6rem 0;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
   rgba(6,12,25,0.10),
    rgba(6,12,25,0.18)

  );
  z-index: 1;
}

