/* Global settings */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  
  body, html {
    background-color: #ffffff;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
  }
  
 
  
  
  .header {
    
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0; 
    padding-right: 20px; 
    
    position: sticky;
        top: 0;
        z-index: 1000; 
        width: 100%; 
        background-color: #fff; 
        box-shadow: 0 2px 5px rgba(0,0,0,0.2); 
      }
  
  
  .logo {
    max-width: 200px; 
  height: auto;
   margin-left: 20px;
   margin-top: -5px;
  }
  .green-phone-icon{
    position: absolute;
    max-width: 50px; 
  height: auto;
   margin-left: -14%;
   margin-top: -1.25%;
  }
  
  .icon-now {
    display: none;
  }
  
  .phone-number {
    position: absolute;
    font-size: 2rem; 
    color: #063f7c; 
    font-weight: bold;
    text-decoration: none;
    top: 10px; 
    left: 50%;
    transform: translateX(-50%);
    
  }

  
  .experts {
    position: absolute;
    font-size: .75rem; 
    color: rgb(223, 13, 13); 
    font-weight: bold;
    margin-left: 50%;
    margin-bottom: -40px;
    text-decoration: none;
    transform: translateX(-50%);
  }
  
  
  .navbar a {
   
    text-decoration: none;
    margin-left: 20px;
    color: #555;
    font-weight: 600;
    transition: color 0.3s;
    margin-top: 20px;
  }
  
  .navbar a:hover {
    color: #007BFF;
  }
  .whatever {
    display: flex;
    flex-direction: column;
    align-items: center; 
    justify-content: center; 
    width: 100%; 
    margin: 0; 
    
}
  .gradient-text {
  font-size: 200px; 
  font-weight: bold; 
  background: linear-gradient(to right, rgba(255,0,0,0.5), rgba(255,255,0,0.5));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent; 
  display: inline-block; 
  text-align: center; 
  margin: 20px 0; 
  margin-top: 0px;
  
  white-space: nowrap;

  
}
  
.intro {
  position: relative; 
  height: 700px; 
  text-align: center;
  background: rgba(189, 190, 190, 1); 
  color: white;
  overflow: hidden; 
  z-index: 1;
}
.slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slideshow-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; 
  z-index: 0; 
}

.slideshow-container img {
  width: 100%;
  height: 100%;
  object-fit: cover; 
}

.intro-text {
  position: relative; 
  max-width: 600px; 
  margin: auto; 
  display: flex; 
  flex-direction: column; 
  justify-content: center; 
  height: 100%; 
  z-index: 3; 
}

  
  
  
  
    
  }
  
  .intro h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
  }
  
  .intro h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
  
  .intro p {
    font-size: 1rem;
    margin-bottom: 30px;
  }
  

  
  .btn:hover {
    background: #05c526; 
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); 
    transform: translateY(-2px); 
  }
  
  .btn:active {
    transform: translateY(1px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); 
  }
  
.navbar a {
   
    text-decoration: none;
    margin-left: 20px;
    color: #555;
    font-weight: 600;
    transition: color 0.3s;
    margin-top: 20px;
  }
  
  .navbar a:hover {
    color: #007BFF;
  }
  
  
  #home {
   margin-top: 0px;
  }
  
  .btn {
    padding: 10px 30px;
    text-decoration: none;
    background: #07f32e;
    font-weight: bold;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 10px;
    transition: opacity 0.3s;
  }
  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; 
    background: rgba(189, 190, 190, 0.7); 
    z-index: 1; 
}
  
  .btn:hover {
    background: #05c526; 
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); 
    transform: translateY(-2px); 
  }
  
  .btn:active {
    transform: translateY(1px); 
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); 
  }
  
  
  .features {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 20px; 
    align-items: center; 
    justify-items: center; 
    padding: 40px 0; 
  }

  .features p {
    max-width: 300px; 
    margin: auto; 
    text-align: center; 
    padding: 5px 0; 
  }
  
  .feature h4 {
    font-size: 1.2rem;
    color: #007BFF;
    margin-bottom: 0px;
    text-align: center
  }
  
  
  .about {
    padding: 40px 0;
    background: #f7f7f7;
    text-align: center;
  }
  
  
 
  
  /* Footer */
  .footer {
    text-align: center;
    padding: 20px 0;
    background: #ffffff;
    color: white;
  }

  /*#moving-van {
    position: absolute;
    bottom: 0; 
    left: 0; 
    width: 300px; 
    height: auto; 
    animation: driveAcross 15s linear infinite;
  }


  <img src="van.png" alt="Van" id="moving-van">



  
  @keyframes driveAcross {
    0% {
      left: -100%; 
    }
    100% {
      left: 100%; 
    }*/


    .mobile-slide {
      display: none;
  } 
   
  



  