
/* ===== GLOBAL ===== */
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: url('blue_concrete_website.png') no-repeat center center;
  background-size: cover;
  color: #1f2937;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
}

.section {
  padding: 60px 0;
  background: url('blue_concrete_website.png') no-repeat center center;
  background-size: cover;
}

h1, h2, h3 {
  margin-bottom: 15px;
  color: #F1F5F9;
}

p {
  color: #F1F5F9;
  line-height: 1.6;
}

/* ===== HEADER ===== */
.site-header {
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo {
  height: 95px;
  width: auto;
}

.nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #374151;
  font-size: 15px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}

.primary {
  background: #1f3fbf;
  color: white;
}

/* ===== HERO ===== */
.hero {
  padding: 70px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero img {
  width: 100%;
  border-radius: 10px;
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: url('blue_concrete_website.png') no-repeat center center;
  background-size: cover;
}

.trust-items {
  display: flex;
  justify-content: space-around;
  padding: 20px 0;
  font-size: 25px;
  color: #F1F5F9;
}

/* ===== CARDS ===== */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.card {
  background: grey;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
}

/* ===== CTA ===== */
.cta {
  background: #111827;
  color: #F1F5F9;
  text-align: center;
  padding: 50px 20px;
}

/* ===== GALLERY ===== */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px;
}

.gallery img {
  width: 100%;
  border-radius: 10px;
}

/* ===== FOOTER ===== */
footer {
  background: #0B1F3A;
  color: #9ca3af;
  text-align: center;
  padding: 20px 0;
  margin-top: auto;
}
/* Full-screen modal overlay */
.model {
  display: none; /* hidden by default */
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
  flex-direction: column; /* no display:flex here initially */
}

/* Model image */
.model-content {
  max-width: 90%;
  max-height: 90%;
  border-radius: 4px;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
  transition: transform 0.3s ease;
}

/* Caption text */
#caption {
  margin-top: 15px;
  color: #fff;
  text-align: center;
  font-size: 1.2em;
}

/* Close button */
.close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 50px;
  font-weight: bold;
  cursor: pointer;
  -webkit-user-select: none; /* Safari 3+, iOS 3+ */
  user-select: none;
}

/* Gallery images */
.gallery img {
  cursor: pointer;
  max-width: 200px;
  margin: 5px;
  border-radius: 4px;
  transition: transform 0.2s;
}

.gallery img:hover {
  transform: scale(1.05);
}
.facebook {
  color: #F1F5F9;
  text-decoration: none;
}
.facebook:hover,
.pastWorkLink:hover {
  color: #1877f2;
}
/* Form style */
.quote form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.quote {
  max-width: auto;
  margin: 30px auto;
  background: #0F172A;
  border-radius: 4px;
  padding: 10px;
  box-shadow: 0 0 10px rgba(24,119,242,0.5);
  height: auto;
}
.quote input,
.quote textarea,
.quote select {
  padding: 10px;
  border: none;
  border-radius: 4px;
  font-size: 16px;
}
.quote label {
  font-weight: 600;
  color: #F1F5F9;
}
.quote button {
  background: #0F172A;
  color: #F1F5F9;
  border: none;
  padding: 12px;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  border: 5px solid #083877;
}
.quote button:hover {
  background: #1a35a0;
}