.elementor-5847 .elementor-element.elementor-element-420201f{--display:flex;}.elementor-5847 .elementor-element.elementor-element-49e1007.tp-has-beaf > .elementor-widget-container:before{width:100%;height:100%;top:2%;bottom:2%;left:2%;right:2%;}.elementor-5847 .elementor-element.elementor-element-49e1007.tp-has-beaf > .elementor-widget-container:after{left:2%;transform:rotate(0deg);}#featured-title{display:block;}#site-logo #site-logo-inner{max-width:140px !important;}#footer{display:block;}/* Start custom CSS for container, class: .elementor-element-420201f */:root {
  --primary-blue: #0056b3;
  --emergency-red: #d9534f;
  --white: #ffffff;
}

.hero {
  position: relative;
  height: 80vh; /* Takes up 80% of the screen height */
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('plumbing-bg.jpg') no-repeat center center/cover;
  color: var(--white);
  text-align: center;
  padding: 0 20px;
}

/* Darkens the background image for text readability */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem); /* Responsive font sizing */
  margin-bottom: 1rem;
}

.highlight {
  color: #3498db;
  display: block;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* Button Styling */
.cta-group {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap; /* Stacks buttons on small screens */
}

.btn {
  padding: 12px 30px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: transform 0.2s;
}

.btn-primary {
  background-color: var(--emergency-red);
  color: white;
}

.btn-secondary {
  background-color: var(--white);
  color: #333;
}

.btn:hover {
  transform: translateY(-3px);
}

/* Media Query for Mobile adjustments */
@media (max-width: 600px) {
  .hero {
    height: auto;
    padding: 100px 20px;
  }
}/* End custom CSS */