/* Azure Hero Section */
.hero.azure-hero {
  background: url('images/azure.jpg') center center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 120px 30px 100px;
  height: 80vh;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 25px;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 25px;
}

/* Azure Buttons */
.azure-btn {
  padding: 12px 25px;
  background: #0078D4;
  color: white;
  border-radius: 25px;
  font-weight: bold;
  font-size: 16px;
  transition: background 0.3s;
}

.azure-btn:hover {
  background: #005A9E;
}

/* Tech Details Shared */
.tech-details {
  padding: 60px 30px;
  background: #f5f7fa;
}

.tech-details h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 2rem;
  color: #001F3F;
}

.tech-details p {
  max-width: 850px;
  margin: 0 auto 40px;
  text-align: center;
  line-height: 1.6;
  font-size: 1rem;
}

/* Card Grid */
.tech-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.card {
  background: white;
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
}

.card h3 {
  color: #0078D4;
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.card p {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* CTA Section */
.cta-section {
  text-align: center;
  padding: 60px 20px;
}

.cta-section h2 {
  font-size: 2rem;
  margin-bottom: 12px;
  color: #001F3F;
}

.cta-section p {
  font-size: 1.1rem;
  margin-bottom: 25px;
  color: #333;
}



/* Responsive */
@media (max-width: 768px) {
    .hero.azure-hero {
        height: 25vh;
    }
  .hero-content h1 {
    font-size: 1.5rem;
    margin-bottom: 25px;
   
  }
  .azure-btn {
  background: #005A9E;
  margin-top: 20px;
}

  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav a {
    margin: 6px 0;
  }

  .azure-btn {
    font-size: 14px;
    padding: 10px 20px;
  }

  .card {
    padding: 20px;
  }

  .tech-details h2,
  .cta-section h2 {
    font-size: 1rem;
  }

  .cta-section p {
    font-size: 1rem;
  }
}
