/* AWS Hero */
.hero.aws-hero {
  background: url('images/aws.jpg') center center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 100px 30px;
  height: 70vh;
}

/* Common styles (reuse) */
.tech-details {
  padding: 60px 30px;
  background: #f5f7fa;
}

.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;
}

.tech-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.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 h3 {
  color: #FF9900;
  margin-bottom: 10px;
}

/* CTA */
.cta-section {
  text-align: center;
  padding: 50px 0;
}

.btn {
  padding: 12px 25px;
  background: #FF9900;
  color: white;
  border-radius: 25px;
  font-weight: bold;
  transition: background 0.3s;
}

.btn:hover {
  background: #cc7a00;
}



/* Responsive */
@media (max-width: 768px) {
  .hero.aws-hero {
    height: 25vh;
  }
  .hero-content h1 {
        font-size: 20px;
      }
      .btn {
        font-size: 10px;
      }

}
