.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    background-image: url('/assets/hero-images/construction-hero.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
  }
  
  .hero-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(57, 42, 118, 0.5); /* Match brand overlay */
    z-index: 1;
  }
  
  .hero-title {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
  }
  
  .hero-title h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
  }
  
  .hero-title p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .action-button button {
    background-color: #392a76;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border-radius: 0.3rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .action-button button:hover {
    background-color: #2d2261;
  }
  
  .service-description {
    padding: 4rem 2rem;
    text-align: center;
    background-color: #f9f9f9;
    color: #332c78;
  }
  
  .service-description h2 {
    font-size: 2.5rem;
    line-height: 1.4;
    margin-bottom: 1.5rem;
    font-weight: 700;
  }
  
  .service-description p {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.125rem;
    line-height: 1.8;
    color: #444;
  }

/*........................
CONSTRUCTION SERVICES
...........................*/

.construction-company-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 4rem 2rem;
    text-align: center;
    background-color: #f5f5f5;
  }
  
  .company-service {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
  }
  
  .company-service:hover {
    transform: translateY(-5px);
  }
  
  .company-service img {
    width: 80px;
    margin-bottom: 1rem;
  }
  
  .company-service h2 {
    font-size: 1.2rem;
    color: #332c78;
  }
  
  #view-all-services {
    grid-column: span 3;
    text-align: center;
    margin-top: 2rem;
  }
  
  #view-all-services button {
    background-color: #332c78;
    color: white;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
  }
  


