
/* Hero Section */
.hero.react-hero {
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
              url('https://reactjs.org/logo-og.png') no-repeat center center/cover;
  color: white;
  text-align: center;
  padding: 100px 30px;
  height: 75vh;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}


.btn {
  padding: 12px 25px;
  background: #00BFFF;
  color: white;
  border-radius: 25px;
  font-weight: bold;
  transition: background 0.3s;
}

.btn:hover {
  background: #007ACC;
}

/* Tech Details Section */
.tech-details {
  padding: 60px 30px;
  background: #f9f9f9;
  text-align: left;
}

.tech-details h2 {
  text-align: center;
  margin-bottom: 20px;
  color:blue;
}

.tech-details p {
  max-width: 800px;
  margin: 0 auto 40px;
  text-align: center;
  line-height: 1.6;
  text-align: center;
}

/* Benefits Cards */
.react-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.card {
  background: white;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card h3 {
  color: #007ACC;
  margin-bottom: 10px;
}

/* CTA Section */
.cta-section {
  text-align: center;
  padding: 50px 0;
}

.cta-section h2 {
  margin-bottom: 10px;
}

  @media (max-width: 768px) {
      .hero.react-hero {
       height: 30vh;
      }

      .hero-content h1 {
        font-size: 20px;
      }

    
    }