/* Hero Section */
.hero.tech-hero {
  background: url('images/java.jpg') no-repeat center center/cover;
  color: white;
  text-align: center;
  padding: 100px 30px;
  height: 75vh;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}




/* Tech Section */
.tech-details {
  padding: 60px 30px;
  background: #f9f9f9;
}

.tech-details h2 {
  text-align: center;
  margin-bottom: 20px;
}

.tech-details p {
  max-width: 800px;
  margin: 0 auto 40px;
  text-align: center;
  line-height: 1.6;
  text-align: left;
}

.tech-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 40px;
  text-align: left;
}

.card {
  background: white;
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  max-width: 80px;
  margin-bottom: 15px;
}

.card h3 {
  color: #007ACC;
  margin-bottom: 10px;
}

.card ul {
  list-style: none;
  padding: 0;
  line-height: 1.6;
}

/* CTA */
.cta-section {
  text-align: center;
  padding: 50px 0;
}

 @media (max-width: 768px) {
      .hero.tech-hero {
       height: 25vh;
      }

      .hero-content h1 {
        font-size: 20px;
      }

    
    }