/* Hero Testing Section */
.hero-testing {
  background: url('images/software-testing.jpg') no-repeat center center/cover;
  height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: blue;
}

.hero-testing .hero-content {
  
  padding: 40px;
  border-radius: 12px;
}

.hero-testing h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.hero-testing p {
  font-size: 1.2rem;
}

/* Testing Tools Section */
.testing-tools {
  padding: 60px 20px;
  background: #f5f7fa;
  text-align: center;
}

.testing-tools h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
}

.tool-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.tool-card {
  background: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.tool-card img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 15px;
}

.tool-card h3 {
  font-size: 1.4rem;
  color: #007acc;
  margin-bottom: 10px;
}

.tool-card p {
  font-size: 1rem;
  color: #555;
}

.tool-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}




/* Responsive Text */
@media (max-width: 768px) {
  .hero-testing h1 {
    font-size: 0.5rem;
  }
 
  .hero-testing{
    height: 25vh;
  }
  .testing-tools{
    font-size: 0.5rem
  }
}
