* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.navbar {
  margin: 0 auto;
  padding: 16px;
  background-color: #fff;
  align-items: center;
}
@media (min-width: 768px) {
  .navbar {
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
  }
}
@media (max-width: 767px) {
  .navbar {
    display: flex;
    flex-direction: column;
    padding: 24px;
  }
}

.container {
  margin: 0 auto;
  padding: 0 40px;
}
@media (min-width: 768px) {
  .container {
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
  }
}
@media (max-width: 767px) {
  .container {
    display: flex;
    flex-direction: column;
    padding: 24px;
  }
}

.logo {
  display: flex;
  align-items: center;
}
@media (min-width: 768px) {
  .logo {
    padding: 16px 0;
  }
}
@media (max-width: 767px) {
  .logo {
    justify-content: center;
    margin-bottom: 24px;
  }
}
.logo img {
  height: 100px;
}
@media (min-width: 768px) {
  .logo img {
    height: 80px;
  }
}

.nav-links {
  display: flex;
  align-items: center;
}
.nav-links ul {
  display: flex;
  list-style: none;
  gap: 16px;
}
@media (max-width: 767px) {
  .nav-links ul {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 0;
  }
}
@media (min-width: 768px) {
  .nav-links ul {
    flex-direction: row;
  }
}
@media (min-width: 768px) {
  .nav-links li {
    margin-left: 24px;
  }
}
.nav-links a {
  text-decoration: none;
  color: #333;
  font-size: 1.1rem;
  transition: color 0.3s, border-color 0.3s;
  border: 2px solid transparent;
  padding: 8px;
  display: inline-block;
  line-height: 1;
}
.nav-links a:hover {
  border: 2px solid #333;
  color: #333;
}

.hero {
  width: 100%;
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../images/hero.JPG");
  background-color: #333;
  /* Fallback background color */
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
@media (max-width: 479px) {
  .hero {
    height: 320px;
    padding: 24px;
  }
}
@media (min-width: 480px) and (max-width: 1439px) {
  .hero {
    height: 320px;
    padding: 24px;
  }
}
@media (min-width: 1440px) {
  .hero {
    height: 520px;
    padding: 40px;
  }
}
@media (min-width: 768px) {
  .hero .container {
    display: block;
    height: auto;
  }
}
@media (max-width: 767px) {
  .hero .container {
    display: block;
    padding: 0;
  }
}
.hero h1 {
  color: #fff;
  font-size: 24px;
  margin-bottom: 24px;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .hero h1 {
    font-size: 36px;
  }
}
.hero .cta-button {
  display: inline-block;
  text-decoration: none;
  color: #333;
  background-color: #efb440;
  font-weight: 600;
  font-size: 16px;
  padding: 16px 24px;
  border-radius: 0;
  transition: background-color 0.3s ease;
}
.hero .cta-button:hover {
  background-color: #e9a113;
}

.services {
  background-color: #f4f4f4;
  padding: 24px 0;
}
@media (min-width: 768px) {
  .services {
    padding: 40px 0;
  }
}
@media (min-width: 768px) {
  .services .container {
    display: block;
    height: auto;
  }
}
@media (max-width: 767px) {
  .services .container {
    padding: 0 24px;
  }
}
.services h2 {
  font-size: 40px;
  color: #333;
  text-align: left;
  margin-bottom: 16px;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .services h2 {
    font-size: 48px;
    margin-bottom: 40px;
  }
}
.services .services-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 768px) {
  .services .services-grid {
    flex-direction: row;
    justify-content: space-between;
    gap: 24px;
  }
}
.services .service-card {
  background-color: #fff;
  padding: 24px;
  text-align: left;
}
@media (max-width: 479px) {
  .services .service-card {
    width: 100%;
  }
}
@media (min-width: 768px) {
  .services .service-card {
    flex: 1;
  }
}
.services .service-card h3 {
  font-size: 24px;
  color: #333;
  margin-bottom: 16px;
}
.services .service-card h4 {
  font-size: 16px;
  color: #333;
  margin-bottom: 16px;
  font-weight: 500;
}
.services .service-card p {
  font-size: 14px;
  color: #333;
  line-height: 1.5;
}

.past-projects {
  background-color: white;
  padding: 24px 0;
}
@media (min-width: 768px) {
  .past-projects {
    padding: 40px 0;
  }
}
@media (min-width: 768px) {
  .past-projects .container {
    display: block;
    height: auto;
  }
}
@media (max-width: 767px) {
  .past-projects .container {
    padding: 0 24px;
  }
}
.past-projects h2 {
  font-size: 40px;
  color: #333;
  text-align: left;
  margin-bottom: 16px;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .past-projects h2 {
    font-size: 48px;
    margin-bottom: 40px;
  }
}
.past-projects .projects-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 768px) {
  .past-projects .projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
.past-projects .project-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
@media (max-width: 479px) {
  .past-projects .project-item {
    width: 100%;
  }
}
.past-projects .project-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: filter 0.3s ease;
}
@media (max-width: 479px) {
  .past-projects .project-item .project-title {
    font-size: 16px;
    color: #333;
    margin: 16px 0;
    text-align: left;
  }
}
@media (min-width: 480px) {
  .past-projects .project-item .project-title {
    display: none;
  }
}
@media (min-width: 480px) {
  .past-projects .project-item .project-description {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 16px;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
}
@media (max-width: 479px) {
  .past-projects .project-item .project-description {
    position: static;
    background: #fff;
    color: #333;
    font-size: 14px;
    padding: 16px;
    text-align: left;
    opacity: 1;
  }
}
@media (min-width: 480px) {
  .past-projects .project-item:hover img {
    filter: brightness(50%);
  }
  .past-projects .project-item:hover .project-description {
    opacity: 1;
  }
}

.why-choose-us {
  background-color: #e7e7e7;
  padding: 24px 0;
}
@media (min-width: 768px) {
  .why-choose-us {
    padding: 40px 0;
  }
}
@media (min-width: 768px) {
  .why-choose-us .container {
    display: block;
    height: auto;
  }
}
@media (max-width: 767px) {
  .why-choose-us .container {
    padding: 0 24px;
  }
}
.why-choose-us h2 {
  font-size: 40px;
  color: #333;
  text-align: left;
  margin-bottom: 16px;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .why-choose-us h2 {
    font-size: 48px;
    margin-bottom: 40px;
  }
}
.why-choose-us .why-choose-us-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 768px) {
  .why-choose-us .why-choose-us-grid {
    flex-direction: row;
    justify-content: space-between;
    gap: 24px;
  }
}
.why-choose-us .why-choose-us-card {
  background-color: #fff;
  padding: 24px;
  text-align: left;
}
@media (max-width: 479px) {
  .why-choose-us .why-choose-us-card {
    width: 100%;
  }
}
@media (min-width: 768px) {
  .why-choose-us .why-choose-us-card {
    flex: 1;
  }
}
.why-choose-us .why-choose-us-card h3 {
  font-size: 24px;
  color: #333;
  margin-bottom: 16px;
}
.why-choose-us .why-choose-us-card h4 {
  font-size: 16px;
  color: #333;
  margin-bottom: 16px;
  font-weight: 500;
}
.why-choose-us .why-choose-us-card p {
  font-size: 14px;
  color: #333;
  line-height: 1.5;
}

.contact-us {
  color: white;
  background-color: #333;
  padding: 24px 0;
}
@media (min-width: 768px) {
  .contact-us {
    padding: 40px 0;
  }
}
@media (min-width: 768px) {
  .contact-us .container {
    display: block;
    height: auto;
  }
}
@media (max-width: 767px) {
  .contact-us .container {
    padding: 0 24px;
  }
}
.contact-us h2 {
  font-size: 40px;
  text-align: left;
  margin-bottom: 16px;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .contact-us h2 {
    font-size: 48px;
    margin-bottom: 40px;
  }
}
.contact-us .contact-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 768px) {
  .contact-us .contact-grid {
    flex-direction: row;
    justify-content: space-between;
    gap: 80px;
  }
}
@media (min-width: 1440px) {
  .contact-us .contact-grid {
    flex-direction: row;
    justify-content: space-between;
    gap: 160px;
  }
}
@media (min-width: 768px) {
  .contact-us .contact-form,
  .contact-us .contact-details {
    flex: 1;
  }
}
.contact-us .contact-form form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-us .contact-form .form-group {
  display: flex;
  flex-direction: column;
}
.contact-us .contact-form .form-group label {
  color: white;
  font-size: 16px;
  margin-bottom: 16px;
  font-weight: 700;
}
.contact-us .contact-form .form-group input,
.contact-us .contact-form .form-group textarea {
  padding: 16px;
  font-size: 14px;
  border: 1px solid white;
  background: #fff;
  resize: vertical;
}
.contact-us .contact-form .form-group input:focus,
.contact-us .contact-form .form-group textarea:focus {
  border-color: #efb440;
  outline: none;
}
.contact-us .contact-form .form-group textarea {
  min-height: 100px;
}
.contact-us .contact-form .cta-button {
  align-self: flex-start;
  padding: 16px 24px;
  font-size: 16px;
  color: #333;
  background-color: #efb440;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.contact-us .contact-form .cta-button:hover {
  background-color: #e9a113;
}
.contact-us .contact-details h3 {
  font-size: 24px;
  margin-bottom: 16px;
}
.contact-us .contact-details p {
  font-size: 14px;
  margin-bottom: 16px;
}

.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}
.lightbox.active {
  display: flex;
}
.lightbox .lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  background: #fff;
  padding: 24px;
}
.lightbox .lightbox-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  color: #333;
  cursor: pointer;
  z-index: 2100;
}
.lightbox .lightbox-main {
  max-width: 100%;
  max-height: 60vh;
  display: block;
  margin: 0 auto;
}
.lightbox .lightbox-thumbnails {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
  gap: 16px;
}
.lightbox .thumbnail-container {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 16px 0;
}
.lightbox .thumbnail {
  width: 80px;
  height: 60px;
  object-fit: cover;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}
.lightbox .thumbnail.active {
  opacity: 1;
  border: 2px solid #6F9C67;
}
.lightbox .thumbnail:hover {
  opacity: 1;
}
.lightbox .lightbox-arrow {
  background: none;
  border: none;
  font-size: 24px;
  color: #333;
  cursor: pointer;
  padding: 16px;
}
.lightbox .lightbox-arrow:hover {
  color: #6F9C67;
}

footer {
  color: white;
  background-color: #333;
  text-align: center;
  padding-bottom: 16px;
}

/*# sourceMappingURL=main.css.map */
