body {
  font-family: Arial, sans-serif;
  margin: 0;
  background: #f5f5f5;
  color: #333;
}
.navbar {
  background: #0c0c0c;
  padding: 15px;
  display: flex;
  gap: 20px;
}
.navbar a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}
.navbar a:hover {
  text-decoration: underline;
}
.hero-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;   /* Space between logo and text */
  flex-wrap: wrap; /* Makes it responsive on small screens */
}
.hero {
  text-align: center;
  padding: 80px 20px;
  background:grey;
  color: whitesmoke
}
.hero-logo {
  height: 150px;   /* Adjust logo size */
}
.hero h1 {
  font-size: 5rem; /* Slightly smaller to match logo */
  margin: 0;
  color: white; /* makes text black */
  text-shadow: 0 0 2px black; /* thin white glow around text */
}
.hero p {
  margin: 5px 0;
  color: white; /* makes text black */
  text-shadow: 0 0 2px black; /* thin white glow around text */
}
.hero .btn {
  display: inline-block;
  margin-top: 20px;
  background: #0c0c0c;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
}
.content {
  padding: 40px;
  max-width: 800px;
  margin: auto;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 10px;
  color: white; /* makes text black */
  text-shadow: 0 0 2px black; /* thin white glow around text */
}
ul {
  list-style: none;
  padding: 0;
}
ul li {
  padding: 10px 0;
  font-size: 1.2rem;
}
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  transition: transform 0.3s ease;
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.card:hover {
  transform: scale(1.05);
}

.overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(0,0,0,0.6);
  color: #fff;
  padding: 10px;
  font-weight: bold;
  text-align: center;
}

/* Lightbox styles */
.lightbox {
  display: none;
  position: fixed;
  z-index: 999;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.8);
  text-align: center;
  padding-top: 60px;
}

.lightbox img {
  max-width: 80%;
  max-height: 70vh;
  border-radius: 10px;
}

.lightbox p {
  color: #fff;
  margin-top: 15px;
  font-size: 1.1rem;
}

.lightbox .close {
  position: absolute;
  top: 20px; right: 30px;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
}
.projects-section {
  background: url("paving-texture.jpg") repeat center center;
  background-size: cover;
  position: relative;
  padding: 100px 20px;
  color: black;
  text-align: center;
}

/* Grey wash overlay for readability */
.projects-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.6); /* dark overlay */
  z-index: 0;
}

.projects-section .content {
  position: relative;
  z-index: 1;
  background-color: black
}

/* Project gallery grid */
.projects-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

/* Project cards */
.project-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 12px;
  color: #f1f1f1;
  font-weight: bold;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, background 0.3s ease;
}

.project-card:hover {
  transform: scale(1.05);
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.projects-section {
  background:url("Projects%2520Gallery/diamond-upholstery.jpg") repeat center center;
  background-size: auto; /* or cover for zoomed look */
  position: relative;
  padding: 100px 20px;
  color: #fff;
  text-align: center;
}

.projects-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 0;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: black; /* or grey */
  padding: 10px 20px; /* adjust height here */
}

.navbar .logo img {
  height: 40px; /* shrink the logo height */
  width: auto;  /* keeps proportions */
}

.nav-links a {
  color: white;
  text-decoration: none;
  margin-left: 20px;
  font-size: 16px;
}

.nav-links a:hover {
  color: grey;
}

body {
  background-color: rgba(0, 0, 0, 0.6); /* full page background */
  margin: 0;
  font-family: Arial, sans-serif;
}

.about-box {
  max-width: 800px;
  margin: 80px auto;
  padding: 40px;
  background: #fff; /* white text box */
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(255,255,255,0.1); /* softer shadow for dark bg */
}


.about-logo {
  height: 100px;   /* small logo size */
  width: auto;
  margin-bottom: 20px; /* space below logo */
  display: block;
  margin-left: auto;
  margin-right: auto; /* ensures logo is centered */
}

.about-box h1 {
  color: black;
  margin-bottom: 20px;
}

.about-box p {
  color: black;
  line-height: 1.6;
}

.services-box {
  max-width: 800px;
  margin: 80px auto;
  padding: 40px;
  background: #fff; /* white box */
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(255,255,255,0.1);
}

.services-logo {
  height: 100px;   /* small logo */
  width: auto;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.services-box h1 {
  color: black;
  margin-bottom: 20px;
}

.services-box ul {
  list-style: none;
  padding: 0;
}

.services-box li {
  margin: 10px 0;
  font-size: 18px;
  color: black;
}

body {
  background-color: black;
  margin: 0;
  font-family: Arial, sans-serif;
}

.contact-box {
  max-width: 600px;
  margin: 80px auto;
  padding: 40px;
  background: #fff;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(255,255,255,0.1);
}

.contact-logo {
  height: 100px;
  width: auto;
  margin-bottom: 20px;
}

.contact-box h1 {
  color: black;
  margin-bottom: 20px;
}

.form input,
.form textarea {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
}

.form button {
  width: 100%;
  padding: 14px;
  background: #333; /* dark button */
  color: white;
  font-size: 18px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.form button:hover {
  background: #555; /* lighter grey on hover */
}

.form input[type="tel"] {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
}