* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body{
    scroll-behavior: smooth;
}
.hero-section {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)),
    url(../images/plumbing-hero.jpg) center/cover no-repeat fixed;
  height: 100vh;
}


.about-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)),
    url("../images/plumbing-hero.jpg");
  background-size: cover;
  background-position: center;
  padding: 100px 0;
}

.team-member img {
  height: 300px;
  object-fit: cover;
  object-position: top;
}
.service-card {
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.contact-section {
  min-height: calc(100vh - 160px);
}

.navbar {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.timeline {
  position: relative;
  padding-left: 30px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 0;
  height: 100%;
  width: 2px;
  background: #007bff;
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
}

.timeline-year {
  position: absolute;
  left: -85px;
  top: 15px;
  width: 70px;
  text-align: right;
  font-weight: bold;
  color: #007bff;
}

.timeline-content {
  position: relative;
  margin-left: 40px;
  background: #fff;
  border: 1px solid #e9ecef;
}

.timeline-content::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 24px;
  width: 12px;
  height: 12px;
  background: #007bff;
  border-radius: 50%;
  border: 2px solid white;
}

@media (max-width: 768px) {
  .about-hero {
    height: auto;
    min-height: 400px;
  }
  .timeline-year {
    position: static !important;
    text-align: left !important;
    margin-bottom: 10px;
  }
  .timeline-content {
    margin-left: 0;
  }
  .timeline::before {
    left: 5px;
  }
}
.services-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)),
    url("../images/team.jpg");
  background-size: cover;
  background-position: center;
  padding: 100px 0;
}

.service-list {
  list-style: none;
  padding-left: 0;
}

.service-list li {
  padding: 8px 0;
  border-bottom: 1px solid #eee;
}

.service-list li:last-child {
  border-bottom: none;
}

.guarantee .card {
  transition: transform 0.3s;
  min-height: 250px;
}

.guarantee .card:hover {
  transform: translateY(-10px);
  background: #1a365d !important;
}

.specialized-services .card {
  transition: all 0.3s;
  border: none;
}

.specialized-services .card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.contact-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)),
    url("../images/team.jpg");
  background-size: cover;
  background-position: center;
  padding: 100px 0;
  color: white;
}
.contact-form {
  max-width: 700px;
  margin: 0 auto;
}
.footer {
  background: #1a365d !important;
}
