/* Docker & Kubernetes Hero Banner */
.docker-kubernetes-hero {
  background: url('images/devops.jpg') no-repeat center center/cover;
  height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  color: #fff;
  padding: 20px;
}

.docker-kubernetes-hero h1{
    font-size: 2.5rem;
}

.button{
    color: white;
}
/* Heading */
.containerization-section h2 {
  font-size: 3rem;
  margin-bottom: 20px;
  text-align: center;
  color: blue;
}

/* Paragraph */
.containerization-section p {
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

/* Mobile View Adjustments */
@media (max-width: 768px) {
  .containerization-section {
    padding: 60px 20px;
  }

  .containerization-section h2 {
    font-size: 1.8rem;
    
  }

  .containerization-section p {
    font-size: 1rem;
  }
}


/* Card Grid for Docker/Kubernetes Details */
.card-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.card {
  flex: 1 1 30px;
  padding: 20px;
  background-color: #f8f9fa;
  border-left: 6px solid blue;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  border-radius: 10px;
  transition: 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

/* CTA Section */
.cta-section {
  margin-top: 50px;
  text-align: center;
}



@media (max-width: 768px) {
  .docker-kubernetes-hero h1 {
    font-size: 2rem;
  }
.docker-kubernetes-hero {
    height: 25vh;
}
  .card-grid {
    flex-direction: column;
   
}
}

