.testing-banner {
  background-image: url('images/futuristic-scene-with-high-tech-robot-used-construction-industry.jpg'); /* 🔄 Replace with your actual image path */
  background-size: cover;
  background-position: center;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.testing-banner-content {
  color: #fff;
  padding: 20px;
}

.testing-banner h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.6); /* Optional: add depth */
}

.testing-banner button {
  background-color: #007bff;
  color: white;
  padding: 12px 28px;
  border: none;
  border-radius: 6px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.testing-banner button:hover {
  background-color: #0056b3;
}


.testing-section {
      padding: 6px 20px;
      max-width: 1200px;
      margin: auto;
    }

    .testing-section h2 {
      font-size: 32px;
      color: blue;
      margin-bottom: 20px;
    }

    .testing-section p {
      font-size: 18px;
      color: #555;
      margin-bottom: 25px;
    }

    .testing-section ul {
      margin-left: 20px;
      color: #001f3f;
      font-size: 18px;
    }

 @media (max-width: 768px) {
      .testing-banner {
        height: 30vh;
        background-position: center;
        
      }

      .testing-banner h1 {
  font-size: 1.5rem;
    }
    .testing-section {
      
        font-size: 18px;
        
      }

      .testing-section p, .testing-section ul {
        font-size: 16px;
        padding: 2px;
      }

      .testing-section ul {
        margin-left: 0;
        list-style-position: inside;
      }
    }
  
