.infra-section{
  margin-top:60px;
}

.infra-container{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:24px;
  margin-top:30px;
}

.infra-item{
  display:flex;
  gap:16px;
  padding:20px;
  background:white;
  border-radius:12px;
  box-shadow:0 4px 16px rgba(0,0,0,0.06);
  transition:all 0.25s ease;
}

.infra-item:hover{
  transform:translateY(-4px);
  box-shadow:0 10px 28px rgba(0,0,0,0.12);
}

.infra-icon{
  font-size:28px;
  width:42px;
}

.infra-content h3{
  font-size:18px;
  margin-bottom:6px;
}

.infra-content p{
  font-size:14px;
  color:#555;
  line-height:1.6;
  margin-bottom:8px;
}

.infra-stack{
  font-size:12px;
  color:#0f766e;
  font-weight:600;
}


/* DevOps capability section */

.infra-skill{
  margin-top:60px;
}

.infra-bars{
  margin-top:30px;
  max-width:700px;
  vertical-align: bottom;
}

.infra-row{
  display:flex;
  align-items:center;
  margin-bottom:16px;
}

.infra-label{
  width:150px;
  font-weight:600;
  font-size:15px;
}

.infra-bar{
  flex:1;
  height:10px;
  background:#e5e7eb;
  border-radius:6px;
  overflow:hidden;
}

.infra-fill{
  height:100%;
  background:linear-gradient(90deg,#3b82f6,#06b6d4);
  border-radius:6px;
  transition:width 1.2s ease;
}