
html {
  scroll-padding-top: 80px; /* sticky header height + a bit */
}

body {
  margin: 0;
  font-family: system-ui, sans-serif;
  color: #222;
  background: #fff;
  min-width: 500px;
}

.hero {
  background: #111;
  color: white;
  padding: 70px 20px 80px;
  text-align: center;
}

.hero h1 {
  font-size: 2.5rem;
}

.cta .btn {
  margin: 10px;
}

.btn {
  padding: 14px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}

.primary {
  background: #0a7cff;
  color: white;
}

.secondary {
  border: 1px solid white;
  color: white;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  padding: 60px 20px;
  gap: 30px;
}

.gallery, .reviews, .quote {
  padding: 60px 20px;
  text-align: center;
}

.contactus {
  padding: 60px 20px;
  text-align: left;
  background: rgba(255, 255, 255, 0.06);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.review {
  max-width: 600px;
  margin: 20px auto;
  font-style: italic;
  text-align: left;
}

form {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

input, select, textarea {
  padding: 12px;
  font-size: 1rem;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: white;
  border-bottom: 1px solid #eee;
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

.brand-logo {
  height: 60px;
  width: auto;
  display: block;
}

.brand-name {
  font-weight: 700;
  letter-spacing: 0.2px;
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.toplink {
  text-decoration: none;
  color: #222;
  font-weight: 600;
}

.btn.small {
  padding: 10px 14px;
  border-radius: 6px;
}
.section-head {
  margin-bottom: 18px;
}

.section-head p {
  margin: 8px 0 0;
  opacity: 0.8;
}

/* Carousel */
.carousel {
  position: relative;
  margin-top: 18px;
  overflow: visible; 
}

.carousel-viewport {
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid #eee;
  background: #fafafa;
}

.carousel-track {
  display: flex;
  transition: transform 300ms ease;
  will-change: transform;
}

.carousel-slide {
  min-width: 100%;
  position: relative;
  aspect-ratio: 16 / 9;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.carousel-caption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 8px 10px;
  border-radius: 10px;
  background: rgba(0,0,0,0.55);
  color: white;
  font-size: 0.95rem;
}

.carousel-viewport {
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid #eee;
  background: #fafafa;
  position: relative;
  z-index: 1;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.12);
  background: rgba(255,255,255,0.92);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  user-select: none;
  display: grid;
  place-items: center;
  z-index: 10;      
}


.carousel-btn:hover {
  background: white;
}

.carousel-btn.prev { left: 10px; }
.carousel-btn.next { right: 10px; }

.carousel-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 12px;
}

.carousel-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  background: #cfcfcf;
}

.carousel-dot[aria-current="true"] {
  background: #333;
  width: 22px;
}

.carousel-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


.one-stop {
  padding: 70px 20px;
  background: #fafafa;
}

.one-stop h2 {
  margin-bottom: 10px;
}

.one-stop .lead {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.one-stop p {
  max-width: 780px;
  margin: 0 auto 14px;
  line-height: 1.6;
}

.one-stop-list {
  max-width: 780px;
  margin: 20px auto;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 10px;
}

.one-stop-list li {
  background: white;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #eee;
  font-weight: 500;
}

.one-stop .closing {
  margin-top: 18px;
  font-weight: 600;
}

.materials {
  padding: 70px 20px;
  background: white;
}

.materials h2 {
  margin-bottom: 10px;
}

.materials .lead {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.materials p {
  max-width: 820px;
  margin: 0 auto 14px;
  line-height: 1.6;
}

.materials-benefits {
  max-width: 820px;
  margin: 26px auto;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
}

.materials-benefits li {
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 16px;
  background: #fafafa;
}

.materials-benefits strong {
  display: block;
  margin-bottom: 4px;
}

.materials .closing {
  margin-top: 18px;
  font-weight: 600;
}

.transparency {
  padding: 70px 20px;
  background: #f7f7f7;
  color: #222;
  text-align: center;
}

.transparency h2 {
  margin-bottom: 10px;
}

.transparency .lead {
  max-width: 820px;
  margin: 0 auto 24px;
  font-size: 1.15rem;
  opacity: 0.9;
  line-height: 1.6;
}

.transparency-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin: 22px auto 28px;
  max-width: 980px;
  text-align: left;
}

/* Contact + upload form: stack on narrow viewports, side-by-side when wide */
.contact-quote-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 22px auto 28px;
  max-width: 980px;
  text-align: left;
}

@media (min-width: 768px) {
  .contact-quote-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.trans-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  padding: 18px;
}

.trans-card h3 {
  margin: 0 0 8px;
}

.trans-card p {
  margin: 0;
  opacity: 0.9;
  line-height: 1.6;
}

.promise {
  max-width: 980px;
  margin: 0 auto 18px;
  text-align: left;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  padding: 18px;
}

.promise h3 {
  margin: 0 0 10px;
}

.promise ul {
  margin: 0;
  padding-left: 18px;
}

.promise li {
  margin: 8px 0;
  opacity: 0.95;
  line-height: 1.5;
}

.cta-row {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: center;
}

.cta-note {
  opacity: 0.85;
}

.visual-quote-process {
  padding: 70px 20px;
  background: #fafafa;
  text-align: center;
}

.visual-quote-process h2 {
  margin-bottom: 10px;
}

.visual-quote-process .lead {
  max-width: 760px;
  margin: 0 auto 36px;
  font-size: 1.15rem;
  color: #444;
}

.process-diagram {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 14px;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.process-step {
  background: white;
  border: 1px solid #e6e6e6;
  border-radius: 14px;
  padding: 24px 18px 22px;
  width: 280px;
  text-align: center;
}

.step-circle {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: #0a7cff;
  color: white;
  font-weight: 700;
  font-size: 1.2rem;
  display: grid;
  place-items: center;
  margin: 0 auto 12px;
}

.process-step h3 {
  margin: 0 0 10px;
}

.process-step p {
  margin: 0;
  color: #444;
  line-height: 1.5;
}

.process-arrow {
  font-size: 2rem;
  color: #bbb;
  display: flex;
  align-items: center;
}

/* Mobile */
@media (max-width: 900px) {
  .process-diagram {
    flex-direction: column;
  }

  .process-arrow {
    transform: rotate(90deg);
    justify-content: center;
  }
}


.process-images-grid img {
  width: 100%;
  max-width: 320px;   /* 👈 control the visual width here */
  height: auto;
  margin: 0 auto;    /* center each image */
  display: block;

  border-radius: 12px;
  border: 1px solid #e6e6e6;
  background: white;
}

.process-img {
  display: flex;
  justify-content: center;
}

.process-img img {
  width: 100%;
  max-width: 300px;
  /* width:140px;max-width:100%; */
}


.process-images {
  padding: 70px 20px;
  background: #fafafa;
  text-align: center;
}

.process-images .lead {
  max-width: 760px;
  margin: 0 auto 28px;
  color: #444;
  line-height: 1.6;
}

.process-images-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: start;
}

.process-images-grid img {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 12px;
  border: 1px solid #e6e6e6;
  background: white;
}

/* Responsive */
@media (max-width: 900px) {
  .process-images-grid {
    grid-template-columns: 1fr;
  }
}

.team-hero {
  position: relative;
  min-height: 450px;
  display: flex;
  align-items: center;

  background-image: url("../images/hero/work_banner.png");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  background-blend-mode: darken;
}

.team-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.team-hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  color: white;
  text-align: left;
}

.callto {
  color: white;
  text-decoration: none;
  border-color: grey; 
}

.team-hero-content h2 {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.team-hero-content p {
  font-size: 1.15rem;
  line-height: 1.6;
  margin-bottom: 22px;
  opacity: 0.95;
}

/* Mobile tweaks */
@media (max-width: 768px) {
  .team-hero {
    min-height: 360px;
  }

  .team-hero-content h2 {
    font-size: 1.8rem;
  }
}



