  /* Promo Banner */
  .promo-banner {
    position: absolute;
    top: 10%;
    width: 100%;
    height: 7%;
    background-color: #4a6473;
    color: #fff;
    padding: 10px;
    font-size: 16px;
    text-align: center;
    overflow: hidden; /* Ensures no scrollbar */
}

.promo-banner h2 {
    display: inline-block;
    white-space: nowrap;
    animation: scroll-left 15s linear infinite;
    margin: 0; /* Remove any default margin to avoid shifting */
}

/* Scroll Left Animation */
@keyframes scroll-left {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}



  
  
  /* about Section */
  .about-section {
    background: url('../images/colse-up-solar-panels-sunset.jpg') no-repeat center center/cover;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
  }
  
  .about-section h1 {
    font-size: 3rem;
    color: white;
    font-weight: bold;
    margin-top: 15%;
    margin-bottom: 5%;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  }


  .price img{
    margin-top: 5%;
    margin-left: 5%;
    width: 90%;
    height: auto;
  }